单特征标记文件的读取

Posted flipped415

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单特征标记文件的读取相关的知识,希望对你有一定的参考价值。

#神经网络l#chap2_linear_regression

从txt中读取数据,train_set:300 by 2, testset:200

函数:

string.split: 返回一个list,list内存分开的元素

map:   返回迭代器,该迭代器(map)也是可以迭代的;传参为一个函数和iterable,对iterable内的所有元素进行映射

zip: 返回迭代器,指向tuples;传参为多个argument sequence或者iterables, *与list结合可以Unpack这个list

单个参数时对每个元素生成一个tuple

1 d=zip(p)
2 list(d)
3 [([1, 2, 3],), ([4, 5, 6],)]

多参数时,对每个参数内的第 i 个元素生成一个tuple

1 d = zip(*p)
2 list(d)
3 [(1, 4), (2, 5), (3, 6)]

asarray: numpy的方法,参数为lists, lists of tuples, tuples, tuples of tuples, tuples of lists and ndarray,可以用于更改一下ndarray的dtype

>>> a = np.array([1, 2], dtype=np.float32)
>>> np.asarray(a, dtype=np.float32) is a
True
>>> np.asarray(a, dtype=np.float64) is a
False

 

读数据的代码:关键部分相当于 map(float, list), zip(map1, map2, ..., map300), map是iterable(也是iterator,指向一系列的),并unpack zipped,xs和ys都是tuple

1 def load_data(filename):
2     """载入数据。"""
3     xys = []
4     with open(filename, r) as f:
5         for line in f:
6             xys.append(map(float, line.strip().split()))
7         xs, ys = zip(*xys)
8         return np.asarray(xs), np.asarray(ys)

 

以上是关于单特征标记文件的读取的主要内容,如果未能解决你的问题,请参考以下文章

字节顺序标记搞砸了 Java 中的文件读取

在java中读取二进制文件,直到特定的“%% EOF”标记?

C#读取并写入XML文件

当两个线程读取文件并标记CSV文件时,c ++ Boost多线程运行缓慢

Python图像特征的音乐序列生成如何标记照片的特征

《集成学习》