Environnement d'exploitation
GeForce GTX 1070 (8GB)
ASRock Z170M Pro4S [Intel Z170chipset]
Ubuntu 14.04 LTS desktop amd64
TensorFlow v0.11
cuDNN v5.1 for Linux
CUDA v8.0
Python 2.7.6
IPython 5.1.0 -- An enhanced Interactive Python.
Apprendre le framework Deep Learning TensorFlow.
https://ischlag.github.io/2016/06/19/tensorflow-input-pipeline-example/
En ce qui concerne la liste Python ci-dessus, il y avait un exemple de conversion d'un chemin de fichier relatif en un chemin de fichier absolu, je vais donc l'écrire sous forme d'article pour référence future.
python_001.py
dataset_path = "/AAA/BBB/CCC/"
train_filepaths = [ "test.dat", "test.csv", "test.exe" ]
all_filepaths = [ dataset_path + fp for fp in train_filepaths ]
print(all_filepaths)
résultat
$ python python_001.py
['/AAA/BBB/CCC/test.dat', '/AAA/BBB/CCC/test.csv', '/AAA/BBB/CCC/test.exe']
Recommended Posts