├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── pip_pkg.sh ├── setup.py ├── tests_release.sh └── tf_slim ├── PRINCIPLES.md ├── __init__.py ├── data ├── README.md ├── __init__.py ├── data_decoder.py ├── data_provider.py ├── dataset.py ├── dataset_data_provider.py ├── dataset_data_provider_test.py ├── parallel_reader.py ├── parallel_reader_test.py ├── prefetch_queue.py ├── prefetch_queue_test.py ├── test_utils.py ├── tfexample_decoder.py └── tfexample_decoder_test.py ├── evaluation.py ├── evaluation_test.py ├── layers ├── __init__.py ├── bucketization_op.py ├── initializers.py ├── initializers_test.py ├── layers.py ├── layers_test.py ├── normalization.py ├── normalization_test.py ├── optimizers.py ├── optimizers_test.py ├── regularizers.py ├── regularizers_test.py ├── rev_block_lib.py ├── rev_block_lib_test.py ├── sparse_ops.py ├── sparse_ops_test.py ├── summaries.py ├── summaries_test.py ├── utils.py └── utils_test.py ├── learning.py ├── learning_test.py ├── losses ├── __init__.py ├── loss_ops.py ├── loss_ops_test.py ├── metric_learning.py └── metric_learning_test.py ├── metrics ├── __init__.py ├── classification.py ├── classification_test.py ├── histogram_ops.py ├── histogram_ops_test.py ├── metric_ops.py ├── metric_ops_large_test.py └── metric_ops_test.py ├── model_analyzer.py ├── nets ├── __init__.py ├── alexnet.py ├── alexnet_test.py ├── inception.py ├── inception_v1.py ├── inception_v1_test.py ├── inception_v2.py ├── inception_v2_test.py ├── inception_v3.py ├── inception_v3_test.py ├── overfeat.py ├── overfeat_test.py ├── resnet_utils.py ├── resnet_v1.py ├── resnet_v1_test.py ├── resnet_v2.py ├── resnet_v2_test.py ├── vgg.py └── vgg_test.py ├── ops ├── __init__.py ├── arg_scope.py ├── arg_scope_test.py ├── framework_ops.py ├── framework_ops_test.py ├── variables.py └── variables_test.py ├── queues.py ├── summaries.py ├── summaries_test.py └── training ├── __init__.py ├── evaluation.py ├── evaluation_test.py ├── training.py └── training_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/README.md -------------------------------------------------------------------------------- /pip_pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/pip_pkg.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/setup.py -------------------------------------------------------------------------------- /tests_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tests_release.sh -------------------------------------------------------------------------------- /tf_slim/PRINCIPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/PRINCIPLES.md -------------------------------------------------------------------------------- /tf_slim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/__init__.py -------------------------------------------------------------------------------- /tf_slim/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/README.md -------------------------------------------------------------------------------- /tf_slim/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/__init__.py -------------------------------------------------------------------------------- /tf_slim/data/data_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/data_decoder.py -------------------------------------------------------------------------------- /tf_slim/data/data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/data_provider.py -------------------------------------------------------------------------------- /tf_slim/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/dataset.py -------------------------------------------------------------------------------- /tf_slim/data/dataset_data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/dataset_data_provider.py -------------------------------------------------------------------------------- /tf_slim/data/dataset_data_provider_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/dataset_data_provider_test.py -------------------------------------------------------------------------------- /tf_slim/data/parallel_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/parallel_reader.py -------------------------------------------------------------------------------- /tf_slim/data/parallel_reader_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/parallel_reader_test.py -------------------------------------------------------------------------------- /tf_slim/data/prefetch_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/prefetch_queue.py -------------------------------------------------------------------------------- /tf_slim/data/prefetch_queue_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/prefetch_queue_test.py -------------------------------------------------------------------------------- /tf_slim/data/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/test_utils.py -------------------------------------------------------------------------------- /tf_slim/data/tfexample_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/tfexample_decoder.py -------------------------------------------------------------------------------- /tf_slim/data/tfexample_decoder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/data/tfexample_decoder_test.py -------------------------------------------------------------------------------- /tf_slim/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/evaluation.py -------------------------------------------------------------------------------- /tf_slim/evaluation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/evaluation_test.py -------------------------------------------------------------------------------- /tf_slim/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/__init__.py -------------------------------------------------------------------------------- /tf_slim/layers/bucketization_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/bucketization_op.py -------------------------------------------------------------------------------- /tf_slim/layers/initializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/initializers.py -------------------------------------------------------------------------------- /tf_slim/layers/initializers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/initializers_test.py -------------------------------------------------------------------------------- /tf_slim/layers/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/layers.py -------------------------------------------------------------------------------- /tf_slim/layers/layers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/layers_test.py -------------------------------------------------------------------------------- /tf_slim/layers/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/normalization.py -------------------------------------------------------------------------------- /tf_slim/layers/normalization_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/normalization_test.py -------------------------------------------------------------------------------- /tf_slim/layers/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/optimizers.py -------------------------------------------------------------------------------- /tf_slim/layers/optimizers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/optimizers_test.py -------------------------------------------------------------------------------- /tf_slim/layers/regularizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/regularizers.py -------------------------------------------------------------------------------- /tf_slim/layers/regularizers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/regularizers_test.py -------------------------------------------------------------------------------- /tf_slim/layers/rev_block_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/rev_block_lib.py -------------------------------------------------------------------------------- /tf_slim/layers/rev_block_lib_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/rev_block_lib_test.py -------------------------------------------------------------------------------- /tf_slim/layers/sparse_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/sparse_ops.py -------------------------------------------------------------------------------- /tf_slim/layers/sparse_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/sparse_ops_test.py -------------------------------------------------------------------------------- /tf_slim/layers/summaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/summaries.py -------------------------------------------------------------------------------- /tf_slim/layers/summaries_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/summaries_test.py -------------------------------------------------------------------------------- /tf_slim/layers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/utils.py -------------------------------------------------------------------------------- /tf_slim/layers/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/layers/utils_test.py -------------------------------------------------------------------------------- /tf_slim/learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/learning.py -------------------------------------------------------------------------------- /tf_slim/learning_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/learning_test.py -------------------------------------------------------------------------------- /tf_slim/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/losses/__init__.py -------------------------------------------------------------------------------- /tf_slim/losses/loss_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/losses/loss_ops.py -------------------------------------------------------------------------------- /tf_slim/losses/loss_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/losses/loss_ops_test.py -------------------------------------------------------------------------------- /tf_slim/losses/metric_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/losses/metric_learning.py -------------------------------------------------------------------------------- /tf_slim/losses/metric_learning_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/losses/metric_learning_test.py -------------------------------------------------------------------------------- /tf_slim/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/metrics/__init__.py -------------------------------------------------------------------------------- /tf_slim/metrics/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/metrics/classification.py -------------------------------------------------------------------------------- /tf_slim/metrics/classification_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/metrics/classification_test.py -------------------------------------------------------------------------------- /tf_slim/metrics/histogram_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/metrics/histogram_ops.py -------------------------------------------------------------------------------- /tf_slim/metrics/histogram_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/metrics/histogram_ops_test.py -------------------------------------------------------------------------------- /tf_slim/metrics/metric_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/metrics/metric_ops.py -------------------------------------------------------------------------------- /tf_slim/metrics/metric_ops_large_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/metrics/metric_ops_large_test.py -------------------------------------------------------------------------------- /tf_slim/metrics/metric_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/metrics/metric_ops_test.py -------------------------------------------------------------------------------- /tf_slim/model_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/model_analyzer.py -------------------------------------------------------------------------------- /tf_slim/nets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/__init__.py -------------------------------------------------------------------------------- /tf_slim/nets/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/alexnet.py -------------------------------------------------------------------------------- /tf_slim/nets/alexnet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/alexnet_test.py -------------------------------------------------------------------------------- /tf_slim/nets/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/inception.py -------------------------------------------------------------------------------- /tf_slim/nets/inception_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/inception_v1.py -------------------------------------------------------------------------------- /tf_slim/nets/inception_v1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/inception_v1_test.py -------------------------------------------------------------------------------- /tf_slim/nets/inception_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/inception_v2.py -------------------------------------------------------------------------------- /tf_slim/nets/inception_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/inception_v2_test.py -------------------------------------------------------------------------------- /tf_slim/nets/inception_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/inception_v3.py -------------------------------------------------------------------------------- /tf_slim/nets/inception_v3_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/inception_v3_test.py -------------------------------------------------------------------------------- /tf_slim/nets/overfeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/overfeat.py -------------------------------------------------------------------------------- /tf_slim/nets/overfeat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/overfeat_test.py -------------------------------------------------------------------------------- /tf_slim/nets/resnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/resnet_utils.py -------------------------------------------------------------------------------- /tf_slim/nets/resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/resnet_v1.py -------------------------------------------------------------------------------- /tf_slim/nets/resnet_v1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/resnet_v1_test.py -------------------------------------------------------------------------------- /tf_slim/nets/resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/resnet_v2.py -------------------------------------------------------------------------------- /tf_slim/nets/resnet_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/resnet_v2_test.py -------------------------------------------------------------------------------- /tf_slim/nets/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/vgg.py -------------------------------------------------------------------------------- /tf_slim/nets/vgg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/nets/vgg_test.py -------------------------------------------------------------------------------- /tf_slim/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/ops/__init__.py -------------------------------------------------------------------------------- /tf_slim/ops/arg_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/ops/arg_scope.py -------------------------------------------------------------------------------- /tf_slim/ops/arg_scope_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/ops/arg_scope_test.py -------------------------------------------------------------------------------- /tf_slim/ops/framework_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/ops/framework_ops.py -------------------------------------------------------------------------------- /tf_slim/ops/framework_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/ops/framework_ops_test.py -------------------------------------------------------------------------------- /tf_slim/ops/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/ops/variables.py -------------------------------------------------------------------------------- /tf_slim/ops/variables_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/ops/variables_test.py -------------------------------------------------------------------------------- /tf_slim/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/queues.py -------------------------------------------------------------------------------- /tf_slim/summaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/summaries.py -------------------------------------------------------------------------------- /tf_slim/summaries_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/summaries_test.py -------------------------------------------------------------------------------- /tf_slim/training/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/training/__init__.py -------------------------------------------------------------------------------- /tf_slim/training/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/training/evaluation.py -------------------------------------------------------------------------------- /tf_slim/training/evaluation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/training/evaluation_test.py -------------------------------------------------------------------------------- /tf_slim/training/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/training/training.py -------------------------------------------------------------------------------- /tf_slim/training/training_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/tf-slim/HEAD/tf_slim/training/training_test.py --------------------------------------------------------------------------------