├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE.txt ├── README.md ├── config ├── metric.yaml ├── predictor.yaml └── taskmet.yaml ├── dfl_experiments.py ├── metric.py ├── omd_experiments.py ├── requirements.py ├── task.py ├── taskmet.py └── utils.py /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/taskmet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/taskmet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/taskmet/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/taskmet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/taskmet/HEAD/README.md -------------------------------------------------------------------------------- /config/metric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/taskmet/HEAD/config/metric.yaml -------------------------------------------------------------------------------- /config/predictor.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/taskmet.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dfl_experiments.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Meta Platforms, Inc. and affiliates 2 | -------------------------------------------------------------------------------- /metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/taskmet/HEAD/metric.py -------------------------------------------------------------------------------- /omd_experiments.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Meta Platforms, Inc. and affiliates 2 | -------------------------------------------------------------------------------- /requirements.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Meta Platforms, Inc. and affiliates 2 | -------------------------------------------------------------------------------- /task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/taskmet/HEAD/task.py -------------------------------------------------------------------------------- /taskmet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/taskmet/HEAD/taskmet.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/taskmet/HEAD/utils.py --------------------------------------------------------------------------------