forked from facebookresearch/vissl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add moco models to the model zoo (facebookresearch#145)
Summary: Pull Request resolved: facebookresearch#145 adding the moco model to the model zoo Reviewed By: min-xu-ai Differential Revision: D26101234 fbshipit-source-id: 5216738a39507fa5138e8bc16b9e1fdf7f61788e
- Loading branch information
1 parent
f378fc2
commit 9be21a2
Showing
4 changed files
with
31 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"params": { | ||
"benchmarks": [ | ||
{ | ||
"config_files": [ | ||
"config=benchmark/linear_image_classification/imagenet1k/other_styles/eval_resnet_moco_8gpu_transfer_in1k_linear", | ||
"config.MODEL.TRUNK.TRUNK_PARAMS.RESNETS.DEPTH=50", | ||
"config.MODEL.WEIGHTS_INIT.STATE_DICT_KEY_NAME=classy_state_dict", | ||
"config.MODEL.WEIGHTS_INIT.PARAMS_FILE=https://dl.fbaipublicfiles.com/vissl/model_zoo/moco_v2_1node_lr.03_step_b32_zero_init/model_final_checkpoint_phase199.torch" | ||
], | ||
"workflow_type": "engine", | ||
"expt_name": "rn50_moco_in1k_moco_style", | ||
"machine_config": { | ||
"num_gpus": 8, | ||
"memory": "110g", | ||
"num_cpus": 48, | ||
"num_nodes": 1, | ||
"gpu_type": "" | ||
}, | ||
"cmdline_args": [] | ||
} | ||
] | ||
} | ||
} |