├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── __init__.py ├── allentune ├── .DS_Store ├── __init__.py ├── __main__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── __main__.cpython-37.pyc ├── commands │ ├── __init__.py │ ├── merge.py │ ├── plot.py │ ├── report.py │ ├── search.py │ └── subcommand.py ├── modules │ ├── __init__.py │ ├── allennlp_runner.py │ └── ray_executor.py ├── runners │ ├── __init__.py │ ├── __init__.pyc │ └── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── allennlp_runner.cpython-37.pyc │ │ └── runner.cpython-37.pyc └── util │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── random_search.cpython-37.pyc │ └── random_search.py ├── classifier_performance.pdf ├── examples ├── classifier.jsonnet └── search_space.json ├── figs └── classifier_performance.png ├── pytest.ini ├── requirements.txt ├── setup.py └── tests ├── fixtures ├── classifier.jsonnet ├── imdb │ ├── dev.jsonl │ ├── test.jsonl │ └── train.jsonl └── search_space.json ├── test_example_run.py └── test_random_search.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | global-include * -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.1a" 2 | -------------------------------------------------------------------------------- /allentune/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/.DS_Store -------------------------------------------------------------------------------- /allentune/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allentune/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/__main__.py -------------------------------------------------------------------------------- /allentune/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /allentune/__pycache__/__main__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /allentune/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/commands/__init__.py -------------------------------------------------------------------------------- /allentune/commands/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/commands/merge.py -------------------------------------------------------------------------------- /allentune/commands/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/commands/plot.py -------------------------------------------------------------------------------- /allentune/commands/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/commands/report.py -------------------------------------------------------------------------------- /allentune/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/commands/search.py -------------------------------------------------------------------------------- /allentune/commands/subcommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/commands/subcommand.py -------------------------------------------------------------------------------- /allentune/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/modules/__init__.py -------------------------------------------------------------------------------- /allentune/modules/allennlp_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/modules/allennlp_runner.py -------------------------------------------------------------------------------- /allentune/modules/ray_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/modules/ray_executor.py -------------------------------------------------------------------------------- /allentune/runners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/runners/__init__.py -------------------------------------------------------------------------------- /allentune/runners/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/runners/__init__.pyc -------------------------------------------------------------------------------- /allentune/runners/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/runners/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /allentune/runners/__pycache__/allennlp_runner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/runners/__pycache__/allennlp_runner.cpython-37.pyc -------------------------------------------------------------------------------- /allentune/runners/__pycache__/runner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/runners/__pycache__/runner.cpython-37.pyc -------------------------------------------------------------------------------- /allentune/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allentune/util/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/util/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /allentune/util/__pycache__/random_search.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/util/__pycache__/random_search.cpython-37.pyc -------------------------------------------------------------------------------- /allentune/util/random_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/allentune/util/random_search.py -------------------------------------------------------------------------------- /classifier_performance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/classifier_performance.pdf -------------------------------------------------------------------------------- /examples/classifier.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/examples/classifier.jsonnet -------------------------------------------------------------------------------- /examples/search_space.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/examples/search_space.json -------------------------------------------------------------------------------- /figs/classifier_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/figs/classifier_performance.png -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/setup.py -------------------------------------------------------------------------------- /tests/fixtures/classifier.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/tests/fixtures/classifier.jsonnet -------------------------------------------------------------------------------- /tests/fixtures/imdb/dev.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/tests/fixtures/imdb/dev.jsonl -------------------------------------------------------------------------------- /tests/fixtures/imdb/test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/tests/fixtures/imdb/test.jsonl -------------------------------------------------------------------------------- /tests/fixtures/imdb/train.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/tests/fixtures/imdb/train.jsonl -------------------------------------------------------------------------------- /tests/fixtures/search_space.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/tests/fixtures/search_space.json -------------------------------------------------------------------------------- /tests/test_example_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/tests/test_example_run.py -------------------------------------------------------------------------------- /tests/test_random_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/allentune/HEAD/tests/test_random_search.py --------------------------------------------------------------------------------