Betriebsumgebung
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.
Lernen des Deep Learning Frameworks TensorFlow.
https://ischlag.github.io/2016/06/19/tensorflow-input-pipeline-example/
In Bezug auf die obige Python-Liste gab es ein Beispiel für die Konvertierung von einem relativen Dateipfad in einen absoluten Dateipfad, daher werde ich ihn als Artikel zur späteren Bezugnahme schreiben.
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)
Ergebnis
$ python python_001.py
['/AAA/BBB/CCC/test.dat', '/AAA/BBB/CCC/test.csv', '/AAA/BBB/CCC/test.exe']
Recommended Posts