-
转换任何格式文件为十六进制编码的代码(C++)
前段时间找到的一个代码,输入文件可以是任何格式,输出文件里的数据是十六进制格式,以逗号间隔开,16个字节一行。也可能是你正需要的。
- 2022-08-20 18:40:28下载
- 积分:1
-
原始数据划分为train.dat和test.dat
应用背景开始是做movielense的数据,可以把原始数据任意划分为train.dat和test.dat,主要是为了做验证实验。非常简单明了,适合初学者看看,如果不喜欢,请轻喷。关键技术# -*- coding: cp936 -*-
from sklearn import cross_validation
c = []
filename = r"Raw.data" #原始数据
out_train = open(r"train.txt","w") #训练集
out_test = open(r"test.txt","w") #测试集
for line in open(filename):
items = line.strip().split(",")
c.append(items)
c_train,c_test = cross_validation.train_test_split(c,test_size=0.1)#size =你需要的比例
for i in c_train:
out_train.write(",".join(i)+"
")
for i in c_test:
out_test.write(",".join(i)+"
")
- 2022-01-25 21:21:56下载
- 积分:1
-
实现图像的读入,本程序采用Visual C++实现的是我读到的…
实现读取图像,本程序用Visual C++实现的是读取本人学校的校徽,北京交通大学和图像。可以直接运行,是读取图像的很好的例子。-Realize read images, this procedure using Visual C++ Realize is that I read the school badge School, Beijing Jiaotong University, and images. Can be directly run, is to read images very good example.
- 2022-01-29 04:31:00下载
- 积分:1
-
如何开发自己的CHM格式文件解析器.rar,保证挺好用的
如何开发自己的CHM格式文件解析器.rar,保证挺好用的-how to develop the CHM format parser. Rar, the guarantee is very good
- 2022-03-20 20:20:19下载
- 积分:1
-
查看C++文件中的函数的工具,计算各个函数的实际代码行数,注释行数等等....
查看C++文件中的函数的工具,计算各个函数的实际代码行数,注释行数等等.-View C document, the function of the tool to calculate the actual function of each source line number, a few notes, and so on.
- 2022-01-26 07:27:26下载
- 积分:1
-
一个D++编辑器,听说是一个14岁的老外写的,代码还不错,有兴趣的朋友可以拿去研究一下。...
一个D++编辑器,听说是一个14岁的老外写的,代码还不错,有兴趣的朋友可以拿去研究一下。-A D++ Editor, heard of a 14-year-old foreigner written code is also good friends who are interested can look away.
- 2022-10-13 15:10:03下载
- 积分:1
-
该代码可以通过编程生成图文并茂的Word文档
该代码可以通过编程生成图文并茂的Word文档-The code can be generated through the program illustrated the Word document
- 2022-07-07 14:15:50下载
- 积分:1
-
VC prepared with this source, and its function to achieve a view disk informatio...
此源码用VC编写,其功能实现了查看磁盘信息,可以浏览文件系统.-VC prepared with this source, and its function to achieve a view disk information, you can browse the file system.
- 2023-02-05 08:25:03下载
- 积分:1
-
能够演示操作excel的功能,并且已经封装了大量使用函数。
能够演示操作excel的功能,并且已经封装了大量使用函数。-to demonstrate the functional operation excel, and the package has been widely used function.
- 2022-01-26 00:38:10下载
- 积分:1
-
python 文件读写目录浏览功能类
python 文件读写目录浏览功能类,包括目录浏览,文本文件读写,文本文件计数,编码读写等文本文件功能。还包括的编码的转换。
- 2022-09-15 12:50:03下载
- 积分:1