Skip to content

Commit

Permalink
Put links to the original code
Browse files Browse the repository at this point in the history
  • Loading branch information
mfigurnov committed Mar 22, 2017
1 parent a33deeb commit f302ac5
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
5 changes: 4 additions & 1 deletion cifar_model.py
Expand Up @@ -13,7 +13,10 @@
# limitations under the License.
# ==============================================================================

"""Adaptive computation time residual network for CIFAR-10."""
""" Adaptive computation time residual network for CIFAR-10.
The code is based on https://github.com/tensorflow/models/blob/master/resnet/resnet_model.py
"""

from __future__ import absolute_import
from __future__ import division
Expand Down
5 changes: 4 additions & 1 deletion external/dataset_utils.py
Expand Up @@ -12,7 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Contains utilities for downloading and converting datasets."""
"""Contains utilities for downloading and converting datasets.
Copied from https://github.com/tensorflow/models/blob/master/slim/datasets/dataset_utils.py
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
Expand Down
2 changes: 2 additions & 0 deletions external/datasets_cifar10.py
Expand Up @@ -16,6 +16,8 @@
The dataset scripts used to create the dataset can be found at:
tensorflow/models/slim/datasets/download_and_convert_cifar10.py
Copied from https://github.com/tensorflow/models/blob/master/slim/datasets/cifar10.py
"""

from __future__ import absolute_import
Expand Down
2 changes: 2 additions & 0 deletions external/datasets_imagenet.py
Expand Up @@ -27,6 +27,8 @@
WARNING: Don't use for object detection, in this case all the bounding boxes
of the image belong to just one class.
Copied from https://github.com/tensorflow/models/blob/master/slim/datasets/imagenet.py
"""
from __future__ import absolute_import
from __future__ import division
Expand Down
1 change: 1 addition & 0 deletions external/download_and_convert_cifar10.py
Expand Up @@ -21,6 +21,7 @@
The script should take several minutes to run.
Copied from https://github.com/tensorflow/models/blob/master/slim/datasets/download_and_convert_cifar10.py
"""
from __future__ import absolute_import
from __future__ import division
Expand Down
5 changes: 4 additions & 1 deletion external/inception_preprocessing.py
Expand Up @@ -12,7 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Provides utilities to preprocess images for the Inception networks."""
"""Provides utilities to preprocess images for the Inception networks.
Copied from https://github.com/tensorflow/models/blob/master/slim/preprocessing/inception_preprocessing.py
"""

from __future__ import absolute_import
from __future__ import division
Expand Down

0 comments on commit f302ac5

Please sign in to comment.