gitextract_atvvsebl/ ├── Images_for_readme/ │ └── README.md ├── LICENSE ├── README.md ├── average_scores.py ├── dataset.py ├── main.py ├── model_zoo/ │ ├── LICENSE │ ├── README.md │ ├── __init__.py │ ├── bninception/ │ │ ├── __init__.py │ │ ├── bn_inception.yaml │ │ ├── caffe_pb2.py │ │ ├── inceptionv3.yaml │ │ ├── layer_factory.py │ │ ├── parse_caffe.py │ │ └── pytorch_load.py │ ├── inceptionresnetv2/ │ │ ├── __init__.py │ │ ├── pytorch_load.py │ │ ├── tensorflow_dump.py │ │ └── torch_load.lua │ ├── inceptionv4/ │ │ ├── __init__.py │ │ ├── pytorch_load.py │ │ ├── tensorflow_dump.py │ │ └── torch_load.lua │ └── models/ │ ├── ._.DS_Store │ ├── .github/ │ │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .gitmodules │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── WORKSPACE │ ├── autoencoder/ │ │ ├── AdditiveGaussianNoiseAutoencoderRunner.py │ │ ├── AutoencoderRunner.py │ │ ├── MaskingNoiseAutoencoderRunner.py │ │ ├── Utils.py │ │ ├── VariationalAutoencoderRunner.py │ │ ├── __init__.py │ │ └── autoencoder_models/ │ │ ├── Autoencoder.py │ │ ├── DenoisingAutoencoder.py │ │ ├── VariationalAutoencoder.py │ │ └── __init__.py │ ├── compression/ │ │ ├── README.md │ │ ├── decoder.py │ │ ├── encoder.py │ │ └── msssim.py │ ├── differential_privacy/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── dp_sgd/ │ │ │ ├── README.md │ │ │ ├── dp_mnist/ │ │ │ │ ├── BUILD │ │ │ │ └── dp_mnist.py │ │ │ ├── dp_optimizer/ │ │ │ │ ├── BUILD │ │ │ │ ├── dp_optimizer.py │ │ │ │ ├── dp_pca.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── utils.py │ │ │ └── per_example_gradients/ │ │ │ ├── BUILD │ │ │ └── per_example_gradients.py │ │ ├── multiple_teachers/ │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── aggregation.py │ │ │ ├── analysis.py │ │ │ ├── deep_cnn.py │ │ │ ├── input.py │ │ │ ├── metrics.py │ │ │ ├── train_student.py │ │ │ ├── train_student_mnist_250_lap_20_count_50_epochs_600.sh │ │ │ ├── train_teachers.py │ │ │ └── utils.py │ │ └── privacy_accountant/ │ │ ├── python/ │ │ │ ├── BUILD │ │ │ └── gaussian_moments.py │ │ └── tf/ │ │ ├── BUILD │ │ └── accountant.py │ ├── im2txt/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── WORKSPACE │ │ └── im2txt/ │ │ ├── BUILD │ │ ├── configuration.py │ │ ├── data/ │ │ │ ├── build_mscoco_data.py │ │ │ └── download_and_preprocess_mscoco.sh │ │ ├── evaluate.py │ │ ├── inference_utils/ │ │ │ ├── BUILD │ │ │ ├── caption_generator.py │ │ │ ├── caption_generator_test.py │ │ │ ├── inference_wrapper_base.py │ │ │ └── vocabulary.py │ │ ├── inference_wrapper.py │ │ ├── ops/ │ │ │ ├── BUILD │ │ │ ├── image_embedding.py │ │ │ ├── image_embedding_test.py │ │ │ ├── image_processing.py │ │ │ └── inputs.py │ │ ├── run_inference.py │ │ ├── show_and_tell_model.py │ │ ├── show_and_tell_model_test.py │ │ └── train.py │ ├── inception/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── WORKSPACE │ │ └── inception/ │ │ ├── BUILD │ │ ├── data/ │ │ │ ├── build_image_data.py │ │ │ ├── build_imagenet_data.py │ │ │ ├── download_and_preprocess_flowers.sh │ │ │ ├── download_and_preprocess_flowers_mac.sh │ │ │ ├── download_and_preprocess_imagenet.sh │ │ │ ├── download_imagenet.sh │ │ │ ├── imagenet_2012_validation_synset_labels.txt │ │ │ ├── imagenet_lsvrc_2015_synsets.txt │ │ │ ├── imagenet_metadata.txt │ │ │ ├── preprocess_imagenet_validation_data.py │ │ │ └── process_bounding_boxes.py │ │ ├── dataset.py │ │ ├── flowers_data.py │ │ ├── flowers_eval.py │ │ ├── flowers_train.py │ │ ├── image_processing.py │ │ ├── imagenet_data.py │ │ ├── imagenet_distributed_train.py │ │ ├── imagenet_eval.py │ │ ├── imagenet_train.py │ │ ├── inception_distributed_train.py │ │ ├── inception_eval.py │ │ ├── inception_model.py │ │ ├── inception_train.py │ │ └── slim/ │ │ ├── BUILD │ │ ├── README.md │ │ ├── collections_test.py │ │ ├── inception_model.py │ │ ├── inception_test.py │ │ ├── losses.py │ │ ├── losses_test.py │ │ ├── ops.py │ │ ├── ops_test.py │ │ ├── scopes.py │ │ ├── scopes_test.py │ │ ├── slim.py │ │ ├── variables.py │ │ └── variables_test.py │ ├── lm_1b/ │ │ ├── BUILD │ │ ├── README.md │ │ ├── data_utils.py │ │ └── lm_1b_eval.py │ ├── namignizer/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── data_utils.py │ │ ├── model.py │ │ └── names.py │ ├── neural_gpu/ │ │ ├── README.md │ │ ├── data_utils.py │ │ ├── neural_gpu.py │ │ └── neural_gpu_trainer.py │ ├── neural_programmer/ │ │ ├── README.md │ │ ├── data_utils.py │ │ ├── model.py │ │ ├── neural_programmer.py │ │ ├── nn_utils.py │ │ ├── parameters.py │ │ └── wiki_data.py │ ├── resnet/ │ │ ├── BUILD │ │ ├── README.md │ │ ├── cifar_input.py │ │ ├── resnet_main.py │ │ └── resnet_model.py │ ├── slim/ │ │ ├── ._.DS_Store │ │ ├── BUILD │ │ ├── README.md │ │ ├── datasets/ │ │ │ ├── __init__.py │ │ │ ├── cifar10.py │ │ │ ├── dataset_factory.py │ │ │ ├── dataset_utils.py │ │ │ ├── download_and_convert_cifar10.py │ │ │ ├── download_and_convert_flowers.py │ │ │ ├── download_and_convert_mnist.py │ │ │ ├── flowers.py │ │ │ ├── imagenet.py │ │ │ └── mnist.py │ │ ├── deployment/ │ │ │ ├── __init__.py │ │ │ ├── model_deploy.py │ │ │ └── model_deploy_test.py │ │ ├── download_and_convert_data.py │ │ ├── eval_image_classifier.py │ │ ├── nets/ │ │ │ ├── __init__.py │ │ │ ├── alexnet.py │ │ │ ├── alexnet_test.py │ │ │ ├── cifarnet.py │ │ │ ├── inception.py │ │ │ ├── inception_resnet_v2.py │ │ │ ├── inception_resnet_v2_test.py │ │ │ ├── inception_utils.py │ │ │ ├── inception_v1.py │ │ │ ├── inception_v1_test.py │ │ │ ├── inception_v2.py │ │ │ ├── inception_v2_test.py │ │ │ ├── inception_v3.py │ │ │ ├── inception_v3_test.py │ │ │ ├── inception_v4.py │ │ │ ├── inception_v4_test.py │ │ │ ├── lenet.py │ │ │ ├── nets_factory.py │ │ │ ├── nets_factory_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 │ │ ├── preprocessing/ │ │ │ ├── __init__.py │ │ │ ├── cifarnet_preprocessing.py │ │ │ ├── inception_preprocessing.py │ │ │ ├── lenet_preprocessing.py │ │ │ ├── preprocessing_factory.py │ │ │ └── vgg_preprocessing.py │ │ ├── scripts/ │ │ │ ├── finetune_inception_v1_on_flowers.sh │ │ │ ├── finetune_inception_v3_on_flowers.sh │ │ │ ├── train_cifarnet_on_cifar10.sh │ │ │ └── train_lenet_on_mnist.sh │ │ ├── slim_walkthough.ipynb │ │ └── train_image_classifier.py │ ├── street/ │ │ ├── README.md │ │ ├── cc/ │ │ │ └── rnn_ops.cc │ │ ├── g3doc/ │ │ │ └── vgslspecs.md │ │ ├── python/ │ │ │ ├── decoder.py │ │ │ ├── decoder_test.py │ │ │ ├── errorcounter.py │ │ │ ├── errorcounter_test.py │ │ │ ├── nn_ops.py │ │ │ ├── shapes.py │ │ │ ├── shapes_test.py │ │ │ ├── vgsl_eval.py │ │ │ ├── vgsl_input.py │ │ │ ├── vgsl_model.py │ │ │ ├── vgsl_model_test.py │ │ │ ├── vgsl_train.py │ │ │ ├── vgslspecs.py │ │ │ └── vgslspecs_test.py │ │ └── testdata/ │ │ ├── arial-32-tiny │ │ ├── arial.charset_size=105.txt │ │ ├── charset_size=134.txt │ │ ├── charset_size_10.txt │ │ ├── mnist-tiny │ │ ├── numbers-16-tiny │ │ └── numbers.charset_size=12.txt │ ├── swivel/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analogy.cc │ │ ├── eval.mk │ │ ├── fastprep.cc │ │ ├── fastprep.mk │ │ ├── glove_to_shards.py │ │ ├── nearest.py │ │ ├── prep.py │ │ ├── swivel.py │ │ ├── text2bin.py │ │ ├── vecs.py │ │ └── wordsim.py │ ├── syntaxnet/ │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── syntaxnet/ │ │ │ ├── BUILD │ │ │ ├── affix.cc │ │ │ ├── affix.h │ │ │ ├── arc_standard_transitions.cc │ │ │ ├── arc_standard_transitions_test.cc │ │ │ ├── base.h │ │ │ ├── beam_reader_ops.cc │ │ │ ├── beam_reader_ops_test.py │ │ │ ├── binary_segment_state.cc │ │ │ ├── binary_segment_state.h │ │ │ ├── binary_segment_state_test.cc │ │ │ ├── binary_segment_transitions.cc │ │ │ ├── binary_segment_transitions_test.cc │ │ │ ├── char_properties.cc │ │ │ ├── char_properties.h │ │ │ ├── char_properties_test.cc │ │ │ ├── conll2tree.py │ │ │ ├── context.pbtxt │ │ │ ├── demo.sh │ │ │ ├── dictionary.proto │ │ │ ├── document_filters.cc │ │ │ ├── document_format.cc │ │ │ ├── document_format.h │ │ │ ├── embedding_feature_extractor.cc │ │ │ ├── embedding_feature_extractor.h │ │ │ ├── feature_extractor.cc │ │ │ ├── feature_extractor.h │ │ │ ├── feature_extractor.proto │ │ │ ├── feature_types.h │ │ │ ├── fml_parser.cc │ │ │ ├── fml_parser.h │ │ │ ├── graph_builder.py │ │ │ ├── graph_builder_test.py │ │ │ ├── kbest_syntax.proto │ │ │ ├── lexicon_builder.cc │ │ │ ├── lexicon_builder_test.py │ │ │ ├── load_parser_ops.py │ │ │ ├── models/ │ │ │ │ ├── parsey_mcparseface/ │ │ │ │ │ ├── context.pbtxt │ │ │ │ │ ├── label-map │ │ │ │ │ ├── parser-params │ │ │ │ │ ├── prefix-table │ │ │ │ │ ├── suffix-table │ │ │ │ │ ├── tag-map │ │ │ │ │ ├── tagger-params │ │ │ │ │ └── word-map │ │ │ │ └── parsey_universal/ │ │ │ │ ├── context-tokenize-zh.pbtxt │ │ │ │ ├── context.pbtxt │ │ │ │ ├── parse.sh │ │ │ │ ├── tokenize.sh │ │ │ │ └── tokenize_zh.sh │ │ │ ├── morpher_transitions.cc │ │ │ ├── morphology_label_set.cc │ │ │ ├── morphology_label_set.h │ │ │ ├── morphology_label_set_test.cc │ │ │ ├── ops/ │ │ │ │ └── parser_ops.cc │ │ │ ├── parser_eval.py │ │ │ ├── parser_features.cc │ │ │ ├── parser_features.h │ │ │ ├── parser_features_test.cc │ │ │ ├── parser_state.cc │ │ │ ├── parser_state.h │ │ │ ├── parser_trainer.py │ │ │ ├── parser_trainer_test.sh │ │ │ ├── parser_transitions.cc │ │ │ ├── parser_transitions.h │ │ │ ├── populate_test_inputs.cc │ │ │ ├── populate_test_inputs.h │ │ │ ├── proto_io.h │ │ │ ├── reader_ops.cc │ │ │ ├── reader_ops_test.py │ │ │ ├── registry.cc │ │ │ ├── registry.h │ │ │ ├── segmenter_utils.cc │ │ │ ├── segmenter_utils.h │ │ │ ├── segmenter_utils_test.cc │ │ │ ├── sentence.proto │ │ │ ├── sentence_batch.cc │ │ │ ├── sentence_batch.h │ │ │ ├── sentence_features.cc │ │ │ ├── sentence_features.h │ │ │ ├── sentence_features_test.cc │ │ │ ├── shared_store.cc │ │ │ ├── shared_store.h │ │ │ ├── shared_store_test.cc │ │ │ ├── sparse.proto │ │ │ ├── structured_graph_builder.py │ │ │ ├── syntaxnet.bzl │ │ │ ├── tagger_transitions.cc │ │ │ ├── tagger_transitions_test.cc │ │ │ ├── task_context.cc │ │ │ ├── task_context.h │ │ │ ├── task_spec.proto │ │ │ ├── term_frequency_map.cc │ │ │ ├── term_frequency_map.h │ │ │ ├── test_main.cc │ │ │ ├── testdata/ │ │ │ │ ├── context.pbtxt │ │ │ │ ├── document │ │ │ │ └── mini-training-set │ │ │ ├── text_formats.cc │ │ │ ├── text_formats_test.py │ │ │ ├── unpack_sparse_features.cc │ │ │ ├── utils.cc │ │ │ ├── utils.h │ │ │ ├── workspace.cc │ │ │ └── workspace.h │ │ ├── third_party/ │ │ │ └── utf/ │ │ │ ├── BUILD │ │ │ ├── README │ │ │ ├── rune.c │ │ │ ├── runestrcat.c │ │ │ ├── runestrchr.c │ │ │ ├── runestrcmp.c │ │ │ ├── runestrcpy.c │ │ │ ├── runestrdup.c │ │ │ ├── runestrecpy.c │ │ │ ├── runestrlen.c │ │ │ ├── runestrncat.c │ │ │ ├── runestrncmp.c │ │ │ ├── runestrncpy.c │ │ │ ├── runestrrchr.c │ │ │ ├── runestrstr.c │ │ │ ├── runetype.c │ │ │ ├── runetypebody.c │ │ │ ├── utf.h │ │ │ ├── utfdef.h │ │ │ ├── utfecpy.c │ │ │ ├── utflen.c │ │ │ ├── utfnlen.c │ │ │ ├── utfrrune.c │ │ │ ├── utfrune.c │ │ │ └── utfutf.c │ │ ├── tools/ │ │ │ └── bazel.rc │ │ ├── universal.md │ │ └── util/ │ │ └── utf8/ │ │ ├── BUILD │ │ ├── gtest_main.cc │ │ ├── unicodetext.cc │ │ ├── unicodetext.h │ │ ├── unicodetext_main.cc │ │ ├── unicodetext_unittest.cc │ │ ├── unilib.cc │ │ ├── unilib.h │ │ └── unilib_utf8_utils.h │ ├── textsum/ │ │ ├── BUILD │ │ ├── README.md │ │ ├── batch_reader.py │ │ ├── beam_search.py │ │ ├── data/ │ │ │ ├── data │ │ │ └── vocab │ │ ├── data.py │ │ ├── data_convert_example.py │ │ ├── seq2seq_attention.py │ │ ├── seq2seq_attention_decode.py │ │ ├── seq2seq_attention_model.py │ │ └── seq2seq_lib.py │ ├── transformer/ │ │ ├── README.md │ │ ├── cluttered_mnist.py │ │ ├── data/ │ │ │ └── README.md │ │ ├── example.py │ │ ├── spatial_transformer.py │ │ └── tf_utils.py │ └── video_prediction/ │ ├── README.md │ ├── download_data.sh │ ├── lstm_ops.py │ ├── prediction_input.py │ ├── prediction_model.py │ ├── prediction_train.py │ └── push_datafiles.txt ├── models.py ├── optical_flow/ │ ├── gpu_main.cpp │ ├── gpu_makefile │ ├── main.cpp │ └── makefile ├── opts.py ├── process_dataset.py ├── test_models.py └── transforms.py