このコードについて詳しく知りたいのですが、自分のコンピューターにインポートすることはできません。このファイルをgitでクローンするにはどうすればよいですか?ファイルは単純です:
https://github.com/tensorflow/tensorflow/blob/r1.1/tensorflow/examples/tutorials/mnist/mnist_softmax.py.
ありがとう!
wget
を使用してそのファイルを取得できます:
ディレクトリを作成します。
mkdir mypycode
そのディレクトリに移動します。
cd mypycode
wget
を使用してダウンロードします。
wget https://raw.githubusercontent.com/tensorflow/tensorflow/r1.1/tensorflow/examples/tutorials/mnist/mnist_softmax.py
次のコマンドをお勧めします。
git archive [email protected]:foo/bar.git HEAD | tar xvf - path/to