| |
| |
| |
| |
| |
|
|
|
|
| from fvcore.common.registry import Registry |
| from tabulate import tabulate |
|
|
|
|
| def reformat_registry_output(self: Registry): |
| table_headers = ["Names", "Objects"] |
| table = tabulate( |
| self._obj_map.items(), headers=table_headers, tablefmt="psql" |
| ) |
| return "Registry of {}:\n".format(self._name) + table |
|
|
|
|
| def main(): |
| from cocap.config.base import CUSTOM_CONFIG_REGISTRY, CUSTOM_CONFIG_CHECK_REGISTRY |
| from cocap.data.build import DATASET_REGISTRY, COLLATE_FN_REGISTER |
| from cocap.modeling.model import MODEL_REGISTRY |
| from cocap.modeling.optimizer import OPTIMIZER_REGISTRY |
| from cocap.modeling.loss import LOSS_REGISTRY |
| from cocap.modeling.meter import METER_REGISTRY |
|
|
| for reg in (CUSTOM_CONFIG_REGISTRY, CUSTOM_CONFIG_CHECK_REGISTRY, DATASET_REGISTRY, COLLATE_FN_REGISTER, |
| MODEL_REGISTRY, OPTIMIZER_REGISTRY, LOSS_REGISTRY, METER_REGISTRY): |
| print(reformat_registry_output(reg)) |
|
|
|
|
| if __name__ == '__main__': |
| main() |
|
|