We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2705df commit c2ccfc9Copy full SHA for c2ccfc9
docker/download_pretrained_weights.py
@@ -32,10 +32,6 @@ def download_all() -> None:
32
msg = f"Skip {config_path} since it is not a PyTorch config."
33
logger.warning(msg)
34
continue
35
- if "anomaly_" in str(config_path) or "dino_v2" in str(config_path) or "h_label_cls" in str(config_path):
36
- msg = f"Skip {config_path} since those models show errors on instantiation."
37
- logger.warning(msg)
38
- continue
39
40
config = OmegaConf.load(config_path)
41
init_model = next(iter(partial_instantiate_class(config.model)))
0 commit comments