├── Readme.md ├── cv └── Readme.md ├── data └── README.md ├── driver.py ├── eval └── multi-bleu.perl ├── eval_sentence_predictions.py ├── extract.py ├── font.ttf ├── monitorcv.html ├── predict_on_images.py ├── python_features ├── README.md ├── VGG_ILSVRC_16_layers_deploy.prototxt.txt ├── deploy_features.prototxt ├── deploy_features.prototxt.txt ├── extract_features.py └── vgg_train_val.prototxt.txt ├── requirements.txt ├── status └── Readme.md ├── vis_resources ├── d3.min.js ├── d3utils.css ├── d3utils.js ├── imagernn │ ├── Readme.md │ ├── __init__.py │ ├── __init__.pyc │ ├── data_provider.py │ ├── generic_batch_generator.py │ ├── generic_batch_generator.pyc │ ├── imagernn_utils.py │ ├── imagernn_utils.pyc │ ├── lstm_generator.py │ ├── lstm_generator.pyc │ ├── rnn_generator.py │ ├── rnn_generator.pyc │ ├── solver.py │ ├── solver.pyc │ ├── utils.py │ └── utils.pyc ├── jquery-1.8.3.min.js ├── jsutils.js ├── matlab_features_reference │ ├── README.md │ ├── VGG_ILSVRC_16_layers_deploy.prototxt.txt │ ├── deploy_features.prototxt │ ├── extract_features.m │ └── prepare_images_batch.m ├── py_caffe_feat_extract.py ├── underscore-min.js └── underscore-min.map └── visualize_result_struct.html /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/Readme.md -------------------------------------------------------------------------------- /cv/Readme.md: -------------------------------------------------------------------------------- 1 | Checkpoints get written to this folder 2 | -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/data/README.md -------------------------------------------------------------------------------- /driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/driver.py -------------------------------------------------------------------------------- /eval/multi-bleu.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/eval/multi-bleu.perl -------------------------------------------------------------------------------- /eval_sentence_predictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/eval_sentence_predictions.py -------------------------------------------------------------------------------- /extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/extract.py -------------------------------------------------------------------------------- /font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/font.ttf -------------------------------------------------------------------------------- /monitorcv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/monitorcv.html -------------------------------------------------------------------------------- /predict_on_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/predict_on_images.py -------------------------------------------------------------------------------- /python_features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/python_features/README.md -------------------------------------------------------------------------------- /python_features/VGG_ILSVRC_16_layers_deploy.prototxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/python_features/VGG_ILSVRC_16_layers_deploy.prototxt.txt -------------------------------------------------------------------------------- /python_features/deploy_features.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/python_features/deploy_features.prototxt -------------------------------------------------------------------------------- /python_features/deploy_features.prototxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/python_features/deploy_features.prototxt.txt -------------------------------------------------------------------------------- /python_features/extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/python_features/extract_features.py -------------------------------------------------------------------------------- /python_features/vgg_train_val.prototxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/python_features/vgg_train_val.prototxt.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | argparse 4 | -------------------------------------------------------------------------------- /status/Readme.md: -------------------------------------------------------------------------------- 1 | This contains status JSON files of running optimizations 2 | -------------------------------------------------------------------------------- /vis_resources/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/d3.min.js -------------------------------------------------------------------------------- /vis_resources/d3utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/d3utils.css -------------------------------------------------------------------------------- /vis_resources/d3utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/d3utils.js -------------------------------------------------------------------------------- /vis_resources/imagernn/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/Readme.md -------------------------------------------------------------------------------- /vis_resources/imagernn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vis_resources/imagernn/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/__init__.pyc -------------------------------------------------------------------------------- /vis_resources/imagernn/data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/data_provider.py -------------------------------------------------------------------------------- /vis_resources/imagernn/generic_batch_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/generic_batch_generator.py -------------------------------------------------------------------------------- /vis_resources/imagernn/generic_batch_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/generic_batch_generator.pyc -------------------------------------------------------------------------------- /vis_resources/imagernn/imagernn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/imagernn_utils.py -------------------------------------------------------------------------------- /vis_resources/imagernn/imagernn_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/imagernn_utils.pyc -------------------------------------------------------------------------------- /vis_resources/imagernn/lstm_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/lstm_generator.py -------------------------------------------------------------------------------- /vis_resources/imagernn/lstm_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/lstm_generator.pyc -------------------------------------------------------------------------------- /vis_resources/imagernn/rnn_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/rnn_generator.py -------------------------------------------------------------------------------- /vis_resources/imagernn/rnn_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/rnn_generator.pyc -------------------------------------------------------------------------------- /vis_resources/imagernn/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/solver.py -------------------------------------------------------------------------------- /vis_resources/imagernn/solver.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/solver.pyc -------------------------------------------------------------------------------- /vis_resources/imagernn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/utils.py -------------------------------------------------------------------------------- /vis_resources/imagernn/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/imagernn/utils.pyc -------------------------------------------------------------------------------- /vis_resources/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /vis_resources/jsutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/jsutils.js -------------------------------------------------------------------------------- /vis_resources/matlab_features_reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/matlab_features_reference/README.md -------------------------------------------------------------------------------- /vis_resources/matlab_features_reference/VGG_ILSVRC_16_layers_deploy.prototxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/matlab_features_reference/VGG_ILSVRC_16_layers_deploy.prototxt.txt -------------------------------------------------------------------------------- /vis_resources/matlab_features_reference/deploy_features.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/matlab_features_reference/deploy_features.prototxt -------------------------------------------------------------------------------- /vis_resources/matlab_features_reference/extract_features.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/matlab_features_reference/extract_features.m -------------------------------------------------------------------------------- /vis_resources/matlab_features_reference/prepare_images_batch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/matlab_features_reference/prepare_images_batch.m -------------------------------------------------------------------------------- /vis_resources/py_caffe_feat_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/py_caffe_feat_extract.py -------------------------------------------------------------------------------- /vis_resources/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/underscore-min.js -------------------------------------------------------------------------------- /vis_resources/underscore-min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/vis_resources/underscore-min.map -------------------------------------------------------------------------------- /visualize_result_struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samim23/NeuralTalkAnimator/HEAD/visualize_result_struct.html --------------------------------------------------------------------------------