mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 12:20:11 +01:00
Revert links change (#9990)
* Revert "fixing broken code repository links" This reverts commit84c11cef24. * Revert "[Docs] Fixing old model link (#9886)" This reverts commit524a890980.
This commit is contained in:
parent
1d287f9097
commit
8ddd727a4a
|
|
@ -83,15 +83,16 @@ for details. It consists of 1,068,298 learnable parameters and requires about
|
||||||
## Code Organization
|
## Code Organization
|
||||||
|
|
||||||
The code for this tutorial resides in
|
The code for this tutorial resides in
|
||||||
[`models/tutorials/image/cifar10/`](https://github.com/tensorflow/models/tree/master/tutorials/image/cifar10/).
|
[`tensorflow_models/tutorials/image/cifar10/`](https://www.tensorflow.org/code/tensorflow_models/tutorials/image/cifar10/).
|
||||||
|
|
||||||
File | Purpose
|
File | Purpose
|
||||||
--- | ---
|
--- | ---
|
||||||
[`cifar10_input.py`](https://github.com/tensorflow/models/tree/master/tutorials/image/cifar10/cifar10_input.py) | Reads the native CIFAR-10 binary file format.
|
[`cifar10_input.py`](https://www.tensorflow.org/code/tensorflow_models/tutorials/image/cifar10/cifar10_input.py) | Reads the native CIFAR-10 binary file format.
|
||||||
[`cifar10.py`](https://github.com/tensorflow/models/tree/master/tutorials/image/cifar10/cifar10.py) | Builds the CIFAR-10 model.
|
[`cifar10.py`](https://www.tensorflow.org/code/tensorflow_models/tutorials/image/cifar10/cifar10.py) | Builds the CIFAR-10 model.
|
||||||
[`cifar10_train.py`](https://github.com/tensorflow/models/tree/master/tutorials/image/cifar10/cifar10_train.py) | Trains a CIFAR-10 model on a CPU or GPU.
|
[`cifar10_train.py`](https://www.tensorflow.org/code/tensorflow_models/tutorials/image/cifar10/cifar10_train.py) | Trains a CIFAR-10 model on a CPU or GPU.
|
||||||
[`cifar10_multi_gpu_train.py`](https://github.com/tensorflow/models/tree/master/tutorials/image/cifar10/cifar10_multi_gpu_train.py) | Trains a CIFAR-10 model on multiple GPUs.
|
[`cifar10_multi_gpu_train.py`](https://www.tensorflow.org/code/tensorflow_models/tutorials/image/cifar10/cifar10_multi_gpu_train.py) | Trains a CIFAR-10 model on multiple GPUs.
|
||||||
[`cifar10_eval.py`](https://github.com/tensorflow/models/tree/master/tutorials/image/cifar10/cifar10_eval.py) | Evaluates the predictive performance of a CIFAR-10 model.
|
[`cifar10_eval.py`](https://www.tensorflow.org/code/tensorflow_models/tutorials/image/cifar10/cifar10_eval.py) | Evaluates the predictive performance of a CIFAR-10 model.
|
||||||
|
|
||||||
|
|
||||||
## CIFAR-10 Model
|
## CIFAR-10 Model
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ straight in, feel free to look at the minimalistic implementation in
|
||||||
This basic example contains the code needed to download some data, train on it a
|
This basic example contains the code needed to download some data, train on it a
|
||||||
bit and visualize the result. Once you get comfortable with reading and running
|
bit and visualize the result. Once you get comfortable with reading and running
|
||||||
the basic version, you can graduate to
|
the basic version, you can graduate to
|
||||||
[models/tutorials/embedding/word2vec.py](https://github.com/tensorflow/models/blob/master/tutorials/embedding/word2vec.py)
|
[tensorflow_models/tutorials/embedding/word2vec.py](https://www.tensorflow.org/code/tensorflow_models/tutorials/embedding/word2vec.py)
|
||||||
which is a more serious implementation that showcases some more advanced
|
which is a more serious implementation that showcases some more advanced
|
||||||
TensorFlow principles about how to efficiently use threads to move data into a
|
TensorFlow principles about how to efficiently use threads to move data into a
|
||||||
text model, how to checkpoint during training, etc.
|
text model, how to checkpoint during training, etc.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user