-
直接解码即可,程序内有比较完整的注释和说明。程序完成的功能是对一个文件进行md5编码,结果存在一个新建的.txt文件里。...
直接解码即可,程序内有比较完整的注释和说明。程序完成的功能是对一个文件进行md5编码,结果存在一个新建的.txt文件里。-can directly decode, procedures are in the integrity of the Notes and annotations. Completion of the functions of a document md5 coding, a new existence. Txt file.
- 2022-01-23 11:23:06下载
- 积分:1
-
本下载演示应用程序只能下载一个目录内的文件。我..
This download demo application can only download the files within a directory. If you have more than one directory that needs to be downloaded, you need to modify the source code to download files from sub-directories. You can also run multiple instances of this application to get files from sub-directories as well.
History
- 2022-10-16 05:35:03下载
- 积分:1
-
用VC操作文件的一些代码,包括存入,读取数据到文件中
用VC操作文件的一些代码,包括存入,读取数据到文件中-some code which operate file in VC
- 2022-07-02 14:25:32下载
- 积分:1
-
此程序实现文件管理,模拟os中的文件管理,可实现文件的创建,访问,删除等功能!...
此程序实现文件管理,模拟os中的文件管理,可实现文件的创建,访问,删除等功能!-this program document management, simulation os of document management, document can be realized in the creation, access, and delete functions!
- 2022-03-31 18:35:41下载
- 积分:1
-
using the VB one operation INI file class, achieving a number of operations, the...
采用VB开发的一个操作INI文件类,实现了多项操作,对文件操作的一个类-using the VB one operation INI file class, achieving a number of operations, the operation of a document type
- 2022-02-07 06:16:20下载
- 积分:1
-
Word phrase statistics, can be found in txt file all the repeated words and phra...
单词词组统计,可以找出txt文件中的所有的重复的词和词组。-Word phrase statistics, can be found in txt file all the repeated words and phrases.
- 2023-02-05 11:20:04下载
- 积分:1
-
Latex essay template
资源描述用于LaTeX的论文撰写,使用Tex语言编写的,内部带有说明,在Latex中进行编译即可通过,生成pdf可供修改和查看。但是不包含中文字符包,如需使用中文字符包,需要在开头添加
- 2023-02-26 12:00:03下载
- 积分:1
-
java控制本机文件及文件夹,可心进行添加,修改,删除等操作...
java控制本机文件及文件夹,可心进行添加,修改,删除等操作-java control of the aircraft files and folders, Kexin to add, modify, or delete operation
- 2022-05-08 09:04:37下载
- 积分:1
-
自己开发的可任意大小文件切割工具,适用于文本文件切割,应用于手机类只能读取特定大小文件的设备应用。...
自己开发的可任意大小文件切割工具,适用于文本文件切割,应用于手机类只能读取特定大小文件的设备应用。-its own development of any size paper cutting tools, applicable to text files cutting, used in cell phone read only specific types of paper the size of equipment applications.
- 2022-11-11 11:20:03下载
- 积分: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