https://github.com/pjreddie/mnist-csv-png
ここの一式をDLして実行すると、mnistデータ作成できるみたいなんですが、実行方法が分かりません、Win10です。
Shell Scriptであるprocessファイルを見ると、
shell
1#!/bin/bash 2 3mkdir -p train 4mkdir -p test 5 6wget https://pjreddie.com/media/files/train-images-idx3-ubyte.gz 7wget https://pjreddie.com/media/files/train-labels-idx1-ubyte.gz 8wget https://pjreddie.com/media/files/t10k-images-idx3-ubyte.gz 9wget https://pjreddie.com/media/files/t10k-labels-idx1-ubyte.gz 10 11gunzip train-images-idx3-ubyte.gz 12gunzip train-labels-idx1-ubyte.gz 13gunzip t10k-images-idx3-ubyte.gz 14gunzip t10k-labels-idx1-ubyte.gz 15 16python process_mnist.py
とあったので、
wget https://pjreddie.com/media/files/train-images-idx3-ubyte.gz
wget https://pjreddie.com/media/files/train-labels-idx1-ubyte.gz
wget https://pjreddie.com/media/files/t10k-images-idx3-ubyte.gz
wget https://pjreddie.com/media/files/t10k-labels-idx1-ubyte.gz
とあるように、これらファイルをDLして、展開し、process_mnistと同じディレクトリに入れました。しかし、
C:\Users\user\Desktop\mnist-csv-png-master\mnist-csv-png-master>pip install scipy
Collecting scipy
Downloading scipy-1.6.1-cp39-cp39-win_amd64.whl (32.7 MB)
|████████████████████████████████| 32.7 MB 7.5 kB/s
Requirement already satisfied: numpy>=1.16.5 in c:\users\user\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages (from scipy) (1.20.1)
Installing collected packages: scipy
Successfully installed scipy-1.6.1
WARNING: You are using pip version 20.2.3; however, version 21.0.1 is available.
You should consider upgrading via the 'C:\Users\user\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe -m pip install --upgrade pip' command.
ここまでは良いのですが、この後、
C:\Users\user\Desktop\mnist-csv-png-master\mnist-csv-png-master>
C:\Users\user\Desktop\mnist-csv-png-master\mnist-csv-png-master>python process_mnist.py
Traceback (most recent call last):
File "C:\Users\user\Desktop\mnist-csv-png-master\mnist-csv-png-master\process_mnist.py", line 42, in <module>
csv_and_png("train-images-idx3-ubyte", "train-labels-idx1-ubyte", "train", 60000)
File "C:\Users\user\Desktop\mnist-csv-png-master\mnist-csv-png-master\process_mnist.py", line 37, in csv_and_png
images = get_images(imgf, n)
File "C:\Users\user\Desktop\mnist-csv-png-master\mnist-csv-png-master\process_mnist.py", line 6, in get_images
f = open(imgf, "rb")
FileNotFoundError: [Errno 2] No such file or directory: 'train-images-idx3-ubyte'
となりエラーが出ます、どうすれば良いんでしょうか。
C:\Users\user\Desktop\mnist-csv-png-master\mnist-csv-png-master>dir
ドライブ C のボリューム ラベルは Windows です
ボリューム シリアル番号は 028F-A0C6 です
C:\Users\user\Desktop\mnist-csv-png-master\mnist-csv-png-master のディレクトリ
2021/03/22 04:49 <DIR> .
2021/03/22 04:49 <DIR> ..
2018/05/05 23:00 1,307 .gitignore
2018/05/05 23:00 462 process.sh
2018/05/05 23:00 1,217 process_mnist.py
2018/05/05 23:00 562 README.md
1998/01/27 00:07 7,840,016 t10k-images.idx3-ubyte
1998/01/27 00:07 10,008 t10k-labels.idx1-ubyte
1996/11/19 00:36 47,040,016 train-images.idx3-ubyte
1996/11/19 00:36 60,008 train-labels.idx1-ubyte
8 個のファイル 54,953,596 バイト
2 個のディレクトリ 26,395,987,968 バイトの空き領域
C:\Users\user\Desktop\mnist-csv-png-master\mnist-csv-png-master>
回答1件
あなたの回答
tips
プレビュー