├── .gitmodules ├── Readme.md ├── lib ├── __init__.py ├── comprehension_experiments.py ├── experiment_settings.py ├── hdf5_sequence_generator.py ├── language_model.py ├── process_dataset.py └── shared_utils.py └── proto_files ├── google_refexp ├── google_refexp.baseline.deploy.prototxt ├── google_refexp.baseline.prototxt ├── google_refexp.baseline.solver.prototxt ├── google_refexp.max_margin.deploy.prototxt ├── google_refexp.max_margin.prototxt ├── google_refexp.max_margin.solver.prototxt ├── google_refexp.mil_context_withNegMargin.deploy.prototxt ├── google_refexp.mil_context_withNegMargin.prototxt ├── google_refexp.mil_context_withNegMargin.solver.prototxt ├── google_refexp.mil_context_withPosNegMargin.deploy.prototxt ├── google_refexp.mil_context_withPosNegMargin.prototxt ├── google_refexp.mil_context_withPosNegMargin.solver.prototxt └── google_refexp.train.sh └── unc_refexp ├── unc_refexp.baseline.deploy.prototxt ├── unc_refexp.baseline.prototxt ├── unc_refexp.baseline.solver.prototxt ├── unc_refexp.max_margin.deploy.prototxt ├── unc_refexp.max_margin.prototxt ├── unc_refexp.max_margin.solver.prototxt ├── unc_refexp.mil_context_withNegMargin.deploy.prototxt ├── unc_refexp.mil_context_withNegMargin.prototxt ├── unc_refexp.mil_context_withNegMargin.solver.prototxt ├── unc_refexp.mil_context_withPosNegMargin.deploy.prototxt ├── unc_refexp.mil_context_withPosNegMargin.prototxt ├── unc_refexp.mil_context_withPosNegMargin.solver.prototxt └── unc_refexp.train.sh /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/.gitmodules -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/Readme.md -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/comprehension_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/lib/comprehension_experiments.py -------------------------------------------------------------------------------- /lib/experiment_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/lib/experiment_settings.py -------------------------------------------------------------------------------- /lib/hdf5_sequence_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/lib/hdf5_sequence_generator.py -------------------------------------------------------------------------------- /lib/language_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/lib/language_model.py -------------------------------------------------------------------------------- /lib/process_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/lib/process_dataset.py -------------------------------------------------------------------------------- /lib/shared_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/lib/shared_utils.py -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.baseline.deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.baseline.deploy.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.baseline.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.baseline.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.baseline.solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.baseline.solver.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.max_margin.deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.max_margin.deploy.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.max_margin.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.max_margin.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.max_margin.solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.max_margin.solver.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.mil_context_withNegMargin.deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.mil_context_withNegMargin.deploy.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.mil_context_withNegMargin.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.mil_context_withNegMargin.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.mil_context_withNegMargin.solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.mil_context_withNegMargin.solver.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.mil_context_withPosNegMargin.deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.mil_context_withPosNegMargin.deploy.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.mil_context_withPosNegMargin.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.mil_context_withPosNegMargin.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.mil_context_withPosNegMargin.solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.mil_context_withPosNegMargin.solver.prototxt -------------------------------------------------------------------------------- /proto_files/google_refexp/google_refexp.train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/google_refexp/google_refexp.train.sh -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.baseline.deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.baseline.deploy.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.baseline.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.baseline.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.baseline.solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.baseline.solver.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.max_margin.deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.max_margin.deploy.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.max_margin.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.max_margin.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.max_margin.solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.max_margin.solver.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.mil_context_withNegMargin.deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.mil_context_withNegMargin.deploy.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.mil_context_withNegMargin.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.mil_context_withNegMargin.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.mil_context_withNegMargin.solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.mil_context_withNegMargin.solver.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.mil_context_withPosNegMargin.deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.mil_context_withPosNegMargin.deploy.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.mil_context_withPosNegMargin.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.mil_context_withPosNegMargin.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.mil_context_withPosNegMargin.solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.mil_context_withPosNegMargin.solver.prototxt -------------------------------------------------------------------------------- /proto_files/unc_refexp/unc_refexp.train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-nagaraja/referring-expressions/HEAD/proto_files/unc_refexp/unc_refexp.train.sh --------------------------------------------------------------------------------