-
Castalia的安装文件。这是进行扩展程序。
File of Castalia Installation . This is OMnet extended program.-File of Castalia Installation . This is OMnet extended program.
- 2022-02-03 22:49:16下载
- 积分:1
-
降压变换器
此模型给出了降压变换器。 这 里降压变换器仿真了高电压到低电压一步步下降的情况。
- 2022-02-07 19:48:37下载
- 积分:1
-
朋友有一些mp3学习资料,需要刻到光盘上,可是没有目录,
我临时作了这个小程序,功能是把目录下的所有文件生成
一个txt文件,写入磁盘,然后你再打印出来...
朋友有一些mp3学习资料,需要刻到光盘上,可是没有目录,
我临时作了这个小程序,功能是把目录下的所有文件生成
一个txt文件,写入磁盘,然后你再打印出来就OK;-Friend mp3 has some learning materials, the need for inscription to the disc, but there is no directory, I made this little temporary procedure, function is to catalog all files to generate a txt file, write to the disk, and then you print them out on the OK
- 2022-03-02 03:42:33下载
- 积分:1
-
能够操作excel, 代码短小清晰, 作用学习操作excel 的学习实例.
能够操作excel, 代码短小清晰, 作用学习操作excel 的学习实例.-Can handle excel, the code short and clear, the role of learning how to operate the learning instances of excel.
- 2022-02-20 16:41:25下载
- 积分:1
-
File owner determining example.
File owner determining example.
- 2022-04-17 17:42:16下载
- 积分:1
-
lg com 端口 unlok
舒适性 LG 手机打开源它只是在这里以支持此软件的开发。免费版本是在购买之前对你有好处,那就试着在前。没有退款。
- 2022-02-25 01:17:48下载
- 积分:1
-
一个vc+matlab混合编程的例程
一个vc+matlab混合编程的例程-a mixed vc+ Matlab programming routines
- 2022-02-28 18:32:46下载
- 积分:1
-
C语言读取txt文件,非常好用,很简单,
c语言读txt文件,非常好用,非常简单,-c language read txt file, very easy to use, very simple,
- 2022-11-26 11:25:03下载
- 积分:1
-
文件操作的代码示例
文件操作的代码示例-Sample code file operations
- 2022-05-16 15:41:21下载
- 积分: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