-
一个小脂肪文件系统的源代码
一个小型的FAT文件系统源码-a small FAT file system source code
- 2022-02-21 08:08:04下载
- 积分:1
-
一个文本编辑器,在网上下的。为了充足我们网站的代码,传一下...
一个文本编辑器,在网上下的。为了充足我们网站的代码,传一下-a text editor, the on-line. To our website adequate code, communicating what
- 2023-01-27 20:25:03下载
- 积分:1
-
enumerate files of the specified directory
枚举指定目录下的文件
按特定格式的时间format-enumerate files of the specified directory
- 2022-03-07 13:05:09下载
- 积分:1
-
演示了将用","分隔的文件转换到Excel文件的转换。包括组件调用,Excel单元格的字体、颜色、属性设置等操作。...
演示了将用","分隔的文件转换到Excel文件的转换。包括组件调用,Excel单元格的字体、颜色、属性设置等操作。-Will be used to demonstrate " ," delimited file conversion to Excel file conversion. Including the components to call, Excel cell fonts, colors, and other property operation.
- 2022-05-26 10:33:09下载
- 积分:1
-
一个小的makefile程序简单,但反映的makefile编写的世界。
一个MAKEFILE的小程序,很简单,但是体现了MAKEFILE编写的方式-A small Makefile procedure is simple, but reflects the Makefile to prepare the way
- 2022-01-21 00:23:52下载
- 积分:1
-
vc make the Notepad, a simple, string processing, input input
vc做的记事本,简单,字符串处理,输入输入-vc make the Notepad, a simple, string processing, input input
- 2023-02-08 16:50:04下载
- 积分:1
-
Ini文件的读取类
支持读取windows ini配置文件的读取和写入
Ini文件的读取类
支持读取windows ini配置文件的读取和写入-Ini document reader category of support read windows ini configuration file read and write
- 2022-02-12 22:55:54下载
- 积分:1
-
基于vc对visio文件进行二次开发
基于vc对visio文件进行二次开发。比如,用visio 2013存储的 vsd格式文件,需要对文件内容进行提取,这时候就用到了这个代码。可以方便提取每个模块的信息。下载下来方便学习
- 2022-01-25 16:28:56下载
- 积分: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
-
文件行数统计程序代码
该文件行数统计程序实现了UNIX/LINUX下的wc相似的功能...
文件行数统计程序代码
该文件行数统计程序实现了UNIX/LINUX下的wc相似的功能-Document the number of rows and Statistics program code of the document the number of rows to achieve a statistical procedure UNIX/LINUX under similar functional wc
- 2022-05-16 11:33:33下载
- 积分:1