├── C7_ShowAndTell_TF ├── .spyproject │ ├── codestyle.ini │ ├── encoding.ini │ ├── vcs.ini │ └── workspace.ini ├── __pycache__ │ ├── configuration.cpython-35.pyc │ ├── inference_wrapper.cpython-35.pyc │ └── show_and_tell_model.cpython-35.pyc ├── configuration.py ├── data │ ├── build_mscoco_data.py │ ├── inception_v3 │ │ └── download.txt │ ├── install_nltk_data.py │ └── mscoco │ │ ├── download.txt │ │ ├── eval │ │ └── no_use.txt │ │ ├── raw-data │ │ ├── annotations │ │ │ └── download.txt │ │ ├── train2014 │ │ │ └── COCO_train2014_000000000009.jpg │ │ └── val2014 │ │ │ └── COCO_val2014_000000000042.jpg │ │ ├── tfrecord-data │ │ └── no_use.txt │ │ └── train │ │ └── no_use.txt ├── evaluate.py ├── inference_utils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── caption_generator.cpython-35.pyc │ │ ├── inference_wrapper_base.cpython-35.pyc │ │ └── vocabulary.cpython-35.pyc │ ├── caption_generator.py │ ├── caption_generator_test.py │ ├── inference_wrapper_base.py │ └── vocabulary.py ├── inference_wrapper.py ├── ops │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── image_embedding.cpython-35.pyc │ │ ├── image_processing.cpython-35.pyc │ │ └── inputs.cpython-35.pyc │ ├── image_embedding.py │ ├── image_processing.py │ └── inputs.py ├── run_inference.py ├── show_and_tell_model.py └── train.py └── 运行文档.docx /C7_ShowAndTell_TF/.spyproject/codestyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/.spyproject/codestyle.ini -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/.spyproject/encoding.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/.spyproject/encoding.ini -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/.spyproject/vcs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/.spyproject/vcs.ini -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/.spyproject/workspace.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/.spyproject/workspace.ini -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/__pycache__/configuration.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/__pycache__/configuration.cpython-35.pyc -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/__pycache__/inference_wrapper.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/__pycache__/inference_wrapper.cpython-35.pyc -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/__pycache__/show_and_tell_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/__pycache__/show_and_tell_model.cpython-35.pyc -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/configuration.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/data/build_mscoco_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/data/build_mscoco_data.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/data/inception_v3/download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/data/inception_v3/download.txt -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/data/install_nltk_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/data/install_nltk_data.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/data/mscoco/download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/data/mscoco/download.txt -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/data/mscoco/eval/no_use.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/data/mscoco/raw-data/annotations/download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/data/mscoco/raw-data/annotations/download.txt -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/data/mscoco/raw-data/train2014/COCO_train2014_000000000009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/data/mscoco/raw-data/train2014/COCO_train2014_000000000009.jpg -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/data/mscoco/raw-data/val2014/COCO_val2014_000000000042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/data/mscoco/raw-data/val2014/COCO_val2014_000000000042.jpg -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/data/mscoco/tfrecord-data/no_use.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/data/mscoco/train/no_use.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/evaluate.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/inference_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/inference_utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/inference_utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/inference_utils/__pycache__/caption_generator.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/inference_utils/__pycache__/caption_generator.cpython-35.pyc -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/inference_utils/__pycache__/inference_wrapper_base.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/inference_utils/__pycache__/inference_wrapper_base.cpython-35.pyc -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/inference_utils/__pycache__/vocabulary.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/inference_utils/__pycache__/vocabulary.cpython-35.pyc -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/inference_utils/caption_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/inference_utils/caption_generator.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/inference_utils/caption_generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/inference_utils/caption_generator_test.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/inference_utils/inference_wrapper_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/inference_utils/inference_wrapper_base.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/inference_utils/vocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/inference_utils/vocabulary.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/inference_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/inference_wrapper.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/ops/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/ops/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/ops/__pycache__/image_embedding.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/ops/__pycache__/image_embedding.cpython-35.pyc -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/ops/__pycache__/image_processing.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/ops/__pycache__/image_processing.cpython-35.pyc -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/ops/__pycache__/inputs.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/ops/__pycache__/inputs.cpython-35.pyc -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/ops/image_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/ops/image_embedding.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/ops/image_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/ops/image_processing.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/ops/inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/ops/inputs.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/run_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/run_inference.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/show_and_tell_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/show_and_tell_model.py -------------------------------------------------------------------------------- /C7_ShowAndTell_TF/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/C7_ShowAndTell_TF/train.py -------------------------------------------------------------------------------- /运行文档.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/349zzjau/ChinaHadoop_C7/HEAD/运行文档.docx --------------------------------------------------------------------------------