├── .gitignore ├── README.md ├── evaluation ├── AMT_csv │ └── sample_generation_val1000.csv ├── AMT_interface │ └── AMT_template_generated_vs_GT.html ├── format_comprehension_eval.md ├── format_generation_eval.md └── sample_results │ ├── sample_results_comprehension.json │ └── sample_results_generation.json ├── external └── README.md ├── google_refexp_eval_demo.ipynb ├── google_refexp_py_lib ├── common_utils.py ├── refexp.py └── refexp_eval.py ├── google_refexp_visualization_demo.ipynb └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/README.md -------------------------------------------------------------------------------- /evaluation/AMT_csv/sample_generation_val1000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/evaluation/AMT_csv/sample_generation_val1000.csv -------------------------------------------------------------------------------- /evaluation/AMT_interface/AMT_template_generated_vs_GT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/evaluation/AMT_interface/AMT_template_generated_vs_GT.html -------------------------------------------------------------------------------- /evaluation/format_comprehension_eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/evaluation/format_comprehension_eval.md -------------------------------------------------------------------------------- /evaluation/format_generation_eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/evaluation/format_generation_eval.md -------------------------------------------------------------------------------- /evaluation/sample_results/sample_results_comprehension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/evaluation/sample_results/sample_results_comprehension.json -------------------------------------------------------------------------------- /evaluation/sample_results/sample_results_generation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/evaluation/sample_results/sample_results_generation.json -------------------------------------------------------------------------------- /external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/external/README.md -------------------------------------------------------------------------------- /google_refexp_eval_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/google_refexp_eval_demo.ipynb -------------------------------------------------------------------------------- /google_refexp_py_lib/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/google_refexp_py_lib/common_utils.py -------------------------------------------------------------------------------- /google_refexp_py_lib/refexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/google_refexp_py_lib/refexp.py -------------------------------------------------------------------------------- /google_refexp_py_lib/refexp_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/google_refexp_py_lib/refexp_eval.py -------------------------------------------------------------------------------- /google_refexp_visualization_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/google_refexp_visualization_demo.ipynb -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhucla/Google_Refexp_toolbox/HEAD/setup.py --------------------------------------------------------------------------------