├── .gitignore ├── Readme.md ├── cv └── Readme.md ├── data └── README.md ├── driver.py ├── eval └── multi-bleu.perl ├── eval_sentence_predictions.py ├── example_images ├── 7EGRMwN.jpg ├── 89pUfSc.jpg ├── QmG3nS6.jpg ├── Readme.md ├── UbVIl1e.jpg ├── animals.jpg ├── cat.jpg ├── cobra.jpg ├── diving.jpg ├── dogdinner.jpg ├── frog.jpg ├── gWEHGwf.jpg ├── hole.jpg ├── japanese.jpg ├── jump.jpg ├── koala.jpg ├── mic.jpg ├── pope.jpg ├── pose.jpg ├── qjujW6d.png ├── result.html ├── result_struct.json ├── seal.jpg ├── tasks.txt ├── vgg_feats.mat └── work.jpg ├── imagernn ├── Readme.md ├── __init__.py ├── data_provider.py ├── generic_batch_generator.py ├── imagernn_utils.py ├── lstm_generator.py ├── rnn_generator.py ├── solver.py └── utils.py ├── matlab_features_reference ├── README.md ├── deploy_features.prototxt ├── extract_features.m └── prepare_images_batch.m ├── monitorcv.html ├── predict_on_images.py ├── py_caffe_feat_extract.py ├── python_features ├── README.md ├── deploy_features.prototxt └── extract_features.py ├── requirements.txt ├── status └── Readme.md ├── vis_resources ├── d3.min.js ├── d3utils.css ├── d3utils.js ├── jquery-1.8.3.min.js ├── jsutils.js ├── underscore-min.js └── underscore-min.map └── visualize_result_struct.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | cv/*.p 3 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/Readme.md -------------------------------------------------------------------------------- /cv/Readme.md: -------------------------------------------------------------------------------- 1 | Checkpoints get written to this folder 2 | -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/data/README.md -------------------------------------------------------------------------------- /driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/driver.py -------------------------------------------------------------------------------- /eval/multi-bleu.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/eval/multi-bleu.perl -------------------------------------------------------------------------------- /eval_sentence_predictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/eval_sentence_predictions.py -------------------------------------------------------------------------------- /example_images/7EGRMwN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/7EGRMwN.jpg -------------------------------------------------------------------------------- /example_images/89pUfSc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/89pUfSc.jpg -------------------------------------------------------------------------------- /example_images/QmG3nS6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/QmG3nS6.jpg -------------------------------------------------------------------------------- /example_images/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/Readme.md -------------------------------------------------------------------------------- /example_images/UbVIl1e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/UbVIl1e.jpg -------------------------------------------------------------------------------- /example_images/animals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/animals.jpg -------------------------------------------------------------------------------- /example_images/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/cat.jpg -------------------------------------------------------------------------------- /example_images/cobra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/cobra.jpg -------------------------------------------------------------------------------- /example_images/diving.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/diving.jpg -------------------------------------------------------------------------------- /example_images/dogdinner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/dogdinner.jpg -------------------------------------------------------------------------------- /example_images/frog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/frog.jpg -------------------------------------------------------------------------------- /example_images/gWEHGwf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/gWEHGwf.jpg -------------------------------------------------------------------------------- /example_images/hole.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/hole.jpg -------------------------------------------------------------------------------- /example_images/japanese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/japanese.jpg -------------------------------------------------------------------------------- /example_images/jump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/jump.jpg -------------------------------------------------------------------------------- /example_images/koala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/koala.jpg -------------------------------------------------------------------------------- /example_images/mic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/mic.jpg -------------------------------------------------------------------------------- /example_images/pope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/pope.jpg -------------------------------------------------------------------------------- /example_images/pose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/pose.jpg -------------------------------------------------------------------------------- /example_images/qjujW6d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/qjujW6d.png -------------------------------------------------------------------------------- /example_images/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/result.html -------------------------------------------------------------------------------- /example_images/result_struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/result_struct.json -------------------------------------------------------------------------------- /example_images/seal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/seal.jpg -------------------------------------------------------------------------------- /example_images/tasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/tasks.txt -------------------------------------------------------------------------------- /example_images/vgg_feats.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/vgg_feats.mat -------------------------------------------------------------------------------- /example_images/work.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/example_images/work.jpg -------------------------------------------------------------------------------- /imagernn/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/imagernn/Readme.md -------------------------------------------------------------------------------- /imagernn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imagernn/data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/imagernn/data_provider.py -------------------------------------------------------------------------------- /imagernn/generic_batch_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/imagernn/generic_batch_generator.py -------------------------------------------------------------------------------- /imagernn/imagernn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/imagernn/imagernn_utils.py -------------------------------------------------------------------------------- /imagernn/lstm_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/imagernn/lstm_generator.py -------------------------------------------------------------------------------- /imagernn/rnn_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/imagernn/rnn_generator.py -------------------------------------------------------------------------------- /imagernn/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/imagernn/solver.py -------------------------------------------------------------------------------- /imagernn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/imagernn/utils.py -------------------------------------------------------------------------------- /matlab_features_reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/matlab_features_reference/README.md -------------------------------------------------------------------------------- /matlab_features_reference/deploy_features.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/matlab_features_reference/deploy_features.prototxt -------------------------------------------------------------------------------- /matlab_features_reference/extract_features.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/matlab_features_reference/extract_features.m -------------------------------------------------------------------------------- /matlab_features_reference/prepare_images_batch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/matlab_features_reference/prepare_images_batch.m -------------------------------------------------------------------------------- /monitorcv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/monitorcv.html -------------------------------------------------------------------------------- /predict_on_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/predict_on_images.py -------------------------------------------------------------------------------- /py_caffe_feat_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/py_caffe_feat_extract.py -------------------------------------------------------------------------------- /python_features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/python_features/README.md -------------------------------------------------------------------------------- /python_features/deploy_features.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/python_features/deploy_features.prototxt -------------------------------------------------------------------------------- /python_features/extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/python_features/extract_features.py -------------------------------------------------------------------------------- /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/karpathy/neuraltalk/HEAD/vis_resources/d3.min.js -------------------------------------------------------------------------------- /vis_resources/d3utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/vis_resources/d3utils.css -------------------------------------------------------------------------------- /vis_resources/d3utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/vis_resources/d3utils.js -------------------------------------------------------------------------------- /vis_resources/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/vis_resources/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /vis_resources/jsutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/vis_resources/jsutils.js -------------------------------------------------------------------------------- /vis_resources/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/vis_resources/underscore-min.js -------------------------------------------------------------------------------- /vis_resources/underscore-min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/vis_resources/underscore-min.map -------------------------------------------------------------------------------- /visualize_result_struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/neuraltalk/HEAD/visualize_result_struct.html --------------------------------------------------------------------------------