From 5f13786776317f260f23d902f375e757124f774b Mon Sep 17 00:00:00 2001 From: zongha Date: Fri, 31 Jul 2020 09:22:20 +0800 Subject: [PATCH] switch 1st --- model_zoo/{ => official/cv}/resnet_thor/README.md | 0 model_zoo/{ => official/cv}/resnet_thor/eval.py | 0 .../{ => official/cv}/resnet_thor/scripts/run_distribute_train.sh | 0 model_zoo/{ => official/cv}/resnet_thor/scripts/run_eval.sh | 0 model_zoo/{ => official/cv}/resnet_thor/src/config.py | 0 model_zoo/{ => official/cv}/resnet_thor/src/crossentropy.py | 0 model_zoo/{ => official/cv}/resnet_thor/src/dataset_helper.py | 0 model_zoo/{ => official/cv}/resnet_thor/src/dataset_imagenet.py | 0 model_zoo/{ => official/cv}/resnet_thor/src/grad_reducer_thor.py | 0 model_zoo/{ => official/cv}/resnet_thor/src/model_thor.py | 0 model_zoo/{ => official/cv}/resnet_thor/src/resnet50.py | 0 model_zoo/{ => official/cv}/resnet_thor/src/resnet_thor.py | 0 model_zoo/{ => official/cv}/resnet_thor/src/thor.py | 0 model_zoo/{ => official/cv}/resnet_thor/src/thor_layer.py | 0 model_zoo/{ => official/cv}/resnet_thor/train.py | 0 model_zoo/{ => official/nlp}/bert_thor/README.md | 0 model_zoo/{ => official/nlp}/bert_thor/pretrain_eval.py | 0 model_zoo/{ => official/nlp}/bert_thor/run_pretrain.py | 0 .../nlp}/bert_thor/scripts/run_distribute_pretrain.sh | 0 .../nlp}/bert_thor/scripts/run_standalone_pretrain.sh | 0 model_zoo/{ => official/nlp}/bert_thor/src/__init__.py | 0 .../{ => official/nlp}/bert_thor/src/bert_for_pre_training.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/bert_model.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/bert_net_config.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/config.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/dataset.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/dataset_helper.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/evaluation_config.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/fused_layer_norm.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/grad_reducer_thor1.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/lr_generator.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/model_thor.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/thor_for_bert.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/thor_for_bert_arg.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/thor_layer.py | 0 model_zoo/{ => official/nlp}/bert_thor/src/utils.py | 0 36 files changed, 0 insertions(+), 0 deletions(-) rename model_zoo/{ => official/cv}/resnet_thor/README.md (100%) rename model_zoo/{ => official/cv}/resnet_thor/eval.py (100%) rename model_zoo/{ => official/cv}/resnet_thor/scripts/run_distribute_train.sh (100%) rename model_zoo/{ => official/cv}/resnet_thor/scripts/run_eval.sh (100%) rename model_zoo/{ => official/cv}/resnet_thor/src/config.py (100%) rename model_zoo/{ => official/cv}/resnet_thor/src/crossentropy.py (100%) rename model_zoo/{ => official/cv}/resnet_thor/src/dataset_helper.py (100%) rename model_zoo/{ => official/cv}/resnet_thor/src/dataset_imagenet.py (100%) rename model_zoo/{ => official/cv}/resnet_thor/src/grad_reducer_thor.py (100%) rename model_zoo/{ => official/cv}/resnet_thor/src/model_thor.py (100%) rename model_zoo/{ => official/cv}/resnet_thor/src/resnet50.py (100%) rename model_zoo/{ => official/cv}/resnet_thor/src/resnet_thor.py (100%) rename model_zoo/{ => official/cv}/resnet_thor/src/thor.py (100%) rename model_zoo/{ => official/cv}/resnet_thor/src/thor_layer.py (100%) rename model_zoo/{ => official/cv}/resnet_thor/train.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/README.md (100%) rename model_zoo/{ => official/nlp}/bert_thor/pretrain_eval.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/run_pretrain.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/scripts/run_distribute_pretrain.sh (100%) rename model_zoo/{ => official/nlp}/bert_thor/scripts/run_standalone_pretrain.sh (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/__init__.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/bert_for_pre_training.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/bert_model.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/bert_net_config.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/config.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/dataset.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/dataset_helper.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/evaluation_config.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/fused_layer_norm.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/grad_reducer_thor1.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/lr_generator.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/model_thor.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/thor_for_bert.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/thor_for_bert_arg.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/thor_layer.py (100%) rename model_zoo/{ => official/nlp}/bert_thor/src/utils.py (100%) diff --git a/model_zoo/resnet_thor/README.md b/model_zoo/official/cv/resnet_thor/README.md similarity index 100% rename from model_zoo/resnet_thor/README.md rename to model_zoo/official/cv/resnet_thor/README.md diff --git a/model_zoo/resnet_thor/eval.py b/model_zoo/official/cv/resnet_thor/eval.py similarity index 100% rename from model_zoo/resnet_thor/eval.py rename to model_zoo/official/cv/resnet_thor/eval.py diff --git a/model_zoo/resnet_thor/scripts/run_distribute_train.sh b/model_zoo/official/cv/resnet_thor/scripts/run_distribute_train.sh similarity index 100% rename from model_zoo/resnet_thor/scripts/run_distribute_train.sh rename to model_zoo/official/cv/resnet_thor/scripts/run_distribute_train.sh diff --git a/model_zoo/resnet_thor/scripts/run_eval.sh b/model_zoo/official/cv/resnet_thor/scripts/run_eval.sh similarity index 100% rename from model_zoo/resnet_thor/scripts/run_eval.sh rename to model_zoo/official/cv/resnet_thor/scripts/run_eval.sh diff --git a/model_zoo/resnet_thor/src/config.py b/model_zoo/official/cv/resnet_thor/src/config.py similarity index 100% rename from model_zoo/resnet_thor/src/config.py rename to model_zoo/official/cv/resnet_thor/src/config.py diff --git a/model_zoo/resnet_thor/src/crossentropy.py b/model_zoo/official/cv/resnet_thor/src/crossentropy.py similarity index 100% rename from model_zoo/resnet_thor/src/crossentropy.py rename to model_zoo/official/cv/resnet_thor/src/crossentropy.py diff --git a/model_zoo/resnet_thor/src/dataset_helper.py b/model_zoo/official/cv/resnet_thor/src/dataset_helper.py similarity index 100% rename from model_zoo/resnet_thor/src/dataset_helper.py rename to model_zoo/official/cv/resnet_thor/src/dataset_helper.py diff --git a/model_zoo/resnet_thor/src/dataset_imagenet.py b/model_zoo/official/cv/resnet_thor/src/dataset_imagenet.py similarity index 100% rename from model_zoo/resnet_thor/src/dataset_imagenet.py rename to model_zoo/official/cv/resnet_thor/src/dataset_imagenet.py diff --git a/model_zoo/resnet_thor/src/grad_reducer_thor.py b/model_zoo/official/cv/resnet_thor/src/grad_reducer_thor.py similarity index 100% rename from model_zoo/resnet_thor/src/grad_reducer_thor.py rename to model_zoo/official/cv/resnet_thor/src/grad_reducer_thor.py diff --git a/model_zoo/resnet_thor/src/model_thor.py b/model_zoo/official/cv/resnet_thor/src/model_thor.py similarity index 100% rename from model_zoo/resnet_thor/src/model_thor.py rename to model_zoo/official/cv/resnet_thor/src/model_thor.py diff --git a/model_zoo/resnet_thor/src/resnet50.py b/model_zoo/official/cv/resnet_thor/src/resnet50.py similarity index 100% rename from model_zoo/resnet_thor/src/resnet50.py rename to model_zoo/official/cv/resnet_thor/src/resnet50.py diff --git a/model_zoo/resnet_thor/src/resnet_thor.py b/model_zoo/official/cv/resnet_thor/src/resnet_thor.py similarity index 100% rename from model_zoo/resnet_thor/src/resnet_thor.py rename to model_zoo/official/cv/resnet_thor/src/resnet_thor.py diff --git a/model_zoo/resnet_thor/src/thor.py b/model_zoo/official/cv/resnet_thor/src/thor.py similarity index 100% rename from model_zoo/resnet_thor/src/thor.py rename to model_zoo/official/cv/resnet_thor/src/thor.py diff --git a/model_zoo/resnet_thor/src/thor_layer.py b/model_zoo/official/cv/resnet_thor/src/thor_layer.py similarity index 100% rename from model_zoo/resnet_thor/src/thor_layer.py rename to model_zoo/official/cv/resnet_thor/src/thor_layer.py diff --git a/model_zoo/resnet_thor/train.py b/model_zoo/official/cv/resnet_thor/train.py similarity index 100% rename from model_zoo/resnet_thor/train.py rename to model_zoo/official/cv/resnet_thor/train.py diff --git a/model_zoo/bert_thor/README.md b/model_zoo/official/nlp/bert_thor/README.md similarity index 100% rename from model_zoo/bert_thor/README.md rename to model_zoo/official/nlp/bert_thor/README.md diff --git a/model_zoo/bert_thor/pretrain_eval.py b/model_zoo/official/nlp/bert_thor/pretrain_eval.py similarity index 100% rename from model_zoo/bert_thor/pretrain_eval.py rename to model_zoo/official/nlp/bert_thor/pretrain_eval.py diff --git a/model_zoo/bert_thor/run_pretrain.py b/model_zoo/official/nlp/bert_thor/run_pretrain.py similarity index 100% rename from model_zoo/bert_thor/run_pretrain.py rename to model_zoo/official/nlp/bert_thor/run_pretrain.py diff --git a/model_zoo/bert_thor/scripts/run_distribute_pretrain.sh b/model_zoo/official/nlp/bert_thor/scripts/run_distribute_pretrain.sh similarity index 100% rename from model_zoo/bert_thor/scripts/run_distribute_pretrain.sh rename to model_zoo/official/nlp/bert_thor/scripts/run_distribute_pretrain.sh diff --git a/model_zoo/bert_thor/scripts/run_standalone_pretrain.sh b/model_zoo/official/nlp/bert_thor/scripts/run_standalone_pretrain.sh similarity index 100% rename from model_zoo/bert_thor/scripts/run_standalone_pretrain.sh rename to model_zoo/official/nlp/bert_thor/scripts/run_standalone_pretrain.sh diff --git a/model_zoo/bert_thor/src/__init__.py b/model_zoo/official/nlp/bert_thor/src/__init__.py similarity index 100% rename from model_zoo/bert_thor/src/__init__.py rename to model_zoo/official/nlp/bert_thor/src/__init__.py diff --git a/model_zoo/bert_thor/src/bert_for_pre_training.py b/model_zoo/official/nlp/bert_thor/src/bert_for_pre_training.py similarity index 100% rename from model_zoo/bert_thor/src/bert_for_pre_training.py rename to model_zoo/official/nlp/bert_thor/src/bert_for_pre_training.py diff --git a/model_zoo/bert_thor/src/bert_model.py b/model_zoo/official/nlp/bert_thor/src/bert_model.py similarity index 100% rename from model_zoo/bert_thor/src/bert_model.py rename to model_zoo/official/nlp/bert_thor/src/bert_model.py diff --git a/model_zoo/bert_thor/src/bert_net_config.py b/model_zoo/official/nlp/bert_thor/src/bert_net_config.py similarity index 100% rename from model_zoo/bert_thor/src/bert_net_config.py rename to model_zoo/official/nlp/bert_thor/src/bert_net_config.py diff --git a/model_zoo/bert_thor/src/config.py b/model_zoo/official/nlp/bert_thor/src/config.py similarity index 100% rename from model_zoo/bert_thor/src/config.py rename to model_zoo/official/nlp/bert_thor/src/config.py diff --git a/model_zoo/bert_thor/src/dataset.py b/model_zoo/official/nlp/bert_thor/src/dataset.py similarity index 100% rename from model_zoo/bert_thor/src/dataset.py rename to model_zoo/official/nlp/bert_thor/src/dataset.py diff --git a/model_zoo/bert_thor/src/dataset_helper.py b/model_zoo/official/nlp/bert_thor/src/dataset_helper.py similarity index 100% rename from model_zoo/bert_thor/src/dataset_helper.py rename to model_zoo/official/nlp/bert_thor/src/dataset_helper.py diff --git a/model_zoo/bert_thor/src/evaluation_config.py b/model_zoo/official/nlp/bert_thor/src/evaluation_config.py similarity index 100% rename from model_zoo/bert_thor/src/evaluation_config.py rename to model_zoo/official/nlp/bert_thor/src/evaluation_config.py diff --git a/model_zoo/bert_thor/src/fused_layer_norm.py b/model_zoo/official/nlp/bert_thor/src/fused_layer_norm.py similarity index 100% rename from model_zoo/bert_thor/src/fused_layer_norm.py rename to model_zoo/official/nlp/bert_thor/src/fused_layer_norm.py diff --git a/model_zoo/bert_thor/src/grad_reducer_thor1.py b/model_zoo/official/nlp/bert_thor/src/grad_reducer_thor1.py similarity index 100% rename from model_zoo/bert_thor/src/grad_reducer_thor1.py rename to model_zoo/official/nlp/bert_thor/src/grad_reducer_thor1.py diff --git a/model_zoo/bert_thor/src/lr_generator.py b/model_zoo/official/nlp/bert_thor/src/lr_generator.py similarity index 100% rename from model_zoo/bert_thor/src/lr_generator.py rename to model_zoo/official/nlp/bert_thor/src/lr_generator.py diff --git a/model_zoo/bert_thor/src/model_thor.py b/model_zoo/official/nlp/bert_thor/src/model_thor.py similarity index 100% rename from model_zoo/bert_thor/src/model_thor.py rename to model_zoo/official/nlp/bert_thor/src/model_thor.py diff --git a/model_zoo/bert_thor/src/thor_for_bert.py b/model_zoo/official/nlp/bert_thor/src/thor_for_bert.py similarity index 100% rename from model_zoo/bert_thor/src/thor_for_bert.py rename to model_zoo/official/nlp/bert_thor/src/thor_for_bert.py diff --git a/model_zoo/bert_thor/src/thor_for_bert_arg.py b/model_zoo/official/nlp/bert_thor/src/thor_for_bert_arg.py similarity index 100% rename from model_zoo/bert_thor/src/thor_for_bert_arg.py rename to model_zoo/official/nlp/bert_thor/src/thor_for_bert_arg.py diff --git a/model_zoo/bert_thor/src/thor_layer.py b/model_zoo/official/nlp/bert_thor/src/thor_layer.py similarity index 100% rename from model_zoo/bert_thor/src/thor_layer.py rename to model_zoo/official/nlp/bert_thor/src/thor_layer.py diff --git a/model_zoo/bert_thor/src/utils.py b/model_zoo/official/nlp/bert_thor/src/utils.py similarity index 100% rename from model_zoo/bert_thor/src/utils.py rename to model_zoo/official/nlp/bert_thor/src/utils.py