学习笔记
我要学习学习学习
学生一个
展开
-
用python自动将文件名写入txt文件中
```python - import os img_path = ‘./data./test./p’ img_list = os.listdir(img_path) f = open(‘test_p.txt’,‘w’) for img in img_list: img = img[:]+’\n’ f.write(img) f.close()原创 2021-04-28 09:23:56 · 435 阅读 · 0 评论 -
Tensorflow2.0学习笔记(一)
神经网络六步搭建法 import train , test model = tf.keras.models.Sequential( ) model = compile( ) model = fit ( ) summary 笔记 第三步:神经网络结构. eg. model = tf.keras.models.Sequential([ tf.keras.layers.Flatten(), tf.keras.layers.Dense(128, activation='relu'), t原创 2020-09-28 15:21:16 · 196 阅读 · 0 评论