├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── clutrr ├── __init__.py ├── actors │ ├── __init__.py │ ├── actor.py │ └── ancestry.py ├── args.py ├── generator.py ├── main.py ├── relations │ ├── __init__.py │ ├── builder.py │ ├── puzzle.py │ └── templator.py ├── run.sh ├── store │ ├── __init__.py │ ├── attribute_store.json │ ├── question_store.yaml │ ├── relations_store.yaml │ ├── rules_store.yaml │ └── store.py ├── template_mturk.py └── utils │ ├── __init__.py │ ├── data_backend.py │ ├── test_splitter.py │ ├── utils.py │ └── web.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/README.md -------------------------------------------------------------------------------- /clutrr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clutrr/actors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clutrr/actors/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/actors/actor.py -------------------------------------------------------------------------------- /clutrr/actors/ancestry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/actors/ancestry.py -------------------------------------------------------------------------------- /clutrr/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/args.py -------------------------------------------------------------------------------- /clutrr/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/generator.py -------------------------------------------------------------------------------- /clutrr/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/main.py -------------------------------------------------------------------------------- /clutrr/relations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clutrr/relations/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/relations/builder.py -------------------------------------------------------------------------------- /clutrr/relations/puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/relations/puzzle.py -------------------------------------------------------------------------------- /clutrr/relations/templator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/relations/templator.py -------------------------------------------------------------------------------- /clutrr/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/run.sh -------------------------------------------------------------------------------- /clutrr/store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clutrr/store/attribute_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/store/attribute_store.json -------------------------------------------------------------------------------- /clutrr/store/question_store.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/store/question_store.yaml -------------------------------------------------------------------------------- /clutrr/store/relations_store.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/store/relations_store.yaml -------------------------------------------------------------------------------- /clutrr/store/rules_store.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/store/rules_store.yaml -------------------------------------------------------------------------------- /clutrr/store/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/store/store.py -------------------------------------------------------------------------------- /clutrr/template_mturk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/template_mturk.py -------------------------------------------------------------------------------- /clutrr/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clutrr/utils/data_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/utils/data_backend.py -------------------------------------------------------------------------------- /clutrr/utils/test_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/utils/test_splitter.py -------------------------------------------------------------------------------- /clutrr/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/utils/utils.py -------------------------------------------------------------------------------- /clutrr/utils/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/clutrr/utils/web.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/clutrr/HEAD/setup.py --------------------------------------------------------------------------------