Browse Source

!3773 for switch

Merge pull request !3773 from zongha/master
tags/v0.7.0-beta
mindspore-ci-bot Gitee 5 years ago
parent
commit
6455c41ac8
36 changed files with 0 additions and 0 deletions
  1. +0
    -0
      model_zoo/official/cv/resnet_thor/README.md
  2. +0
    -0
      model_zoo/official/cv/resnet_thor/eval.py
  3. +0
    -0
      model_zoo/official/cv/resnet_thor/scripts/run_distribute_train.sh
  4. +0
    -0
      model_zoo/official/cv/resnet_thor/scripts/run_eval.sh
  5. +0
    -0
      model_zoo/official/cv/resnet_thor/src/config.py
  6. +0
    -0
      model_zoo/official/cv/resnet_thor/src/crossentropy.py
  7. +0
    -0
      model_zoo/official/cv/resnet_thor/src/dataset_helper.py
  8. +0
    -0
      model_zoo/official/cv/resnet_thor/src/dataset_imagenet.py
  9. +0
    -0
      model_zoo/official/cv/resnet_thor/src/grad_reducer_thor.py
  10. +0
    -0
      model_zoo/official/cv/resnet_thor/src/model_thor.py
  11. +0
    -0
      model_zoo/official/cv/resnet_thor/src/resnet50.py
  12. +0
    -0
      model_zoo/official/cv/resnet_thor/src/resnet_thor.py
  13. +0
    -0
      model_zoo/official/cv/resnet_thor/src/thor.py
  14. +0
    -0
      model_zoo/official/cv/resnet_thor/src/thor_layer.py
  15. +0
    -0
      model_zoo/official/cv/resnet_thor/train.py
  16. +0
    -0
      model_zoo/official/nlp/bert_thor/README.md
  17. +0
    -0
      model_zoo/official/nlp/bert_thor/pretrain_eval.py
  18. +0
    -0
      model_zoo/official/nlp/bert_thor/run_pretrain.py
  19. +0
    -0
      model_zoo/official/nlp/bert_thor/scripts/run_distribute_pretrain.sh
  20. +0
    -0
      model_zoo/official/nlp/bert_thor/scripts/run_standalone_pretrain.sh
  21. +0
    -0
      model_zoo/official/nlp/bert_thor/src/__init__.py
  22. +0
    -0
      model_zoo/official/nlp/bert_thor/src/bert_for_pre_training.py
  23. +0
    -0
      model_zoo/official/nlp/bert_thor/src/bert_model.py
  24. +0
    -0
      model_zoo/official/nlp/bert_thor/src/bert_net_config.py
  25. +0
    -0
      model_zoo/official/nlp/bert_thor/src/config.py
  26. +0
    -0
      model_zoo/official/nlp/bert_thor/src/dataset.py
  27. +0
    -0
      model_zoo/official/nlp/bert_thor/src/dataset_helper.py
  28. +0
    -0
      model_zoo/official/nlp/bert_thor/src/evaluation_config.py
  29. +0
    -0
      model_zoo/official/nlp/bert_thor/src/fused_layer_norm.py
  30. +0
    -0
      model_zoo/official/nlp/bert_thor/src/grad_reducer_thor1.py
  31. +0
    -0
      model_zoo/official/nlp/bert_thor/src/lr_generator.py
  32. +0
    -0
      model_zoo/official/nlp/bert_thor/src/model_thor.py
  33. +0
    -0
      model_zoo/official/nlp/bert_thor/src/thor_for_bert.py
  34. +0
    -0
      model_zoo/official/nlp/bert_thor/src/thor_for_bert_arg.py
  35. +0
    -0
      model_zoo/official/nlp/bert_thor/src/thor_layer.py
  36. +0
    -0
      model_zoo/official/nlp/bert_thor/src/utils.py

model_zoo/resnet_thor/README.md → model_zoo/official/cv/resnet_thor/README.md View File


model_zoo/resnet_thor/eval.py → model_zoo/official/cv/resnet_thor/eval.py View File


model_zoo/resnet_thor/scripts/run_distribute_train.sh → model_zoo/official/cv/resnet_thor/scripts/run_distribute_train.sh View File


model_zoo/resnet_thor/scripts/run_eval.sh → model_zoo/official/cv/resnet_thor/scripts/run_eval.sh View File


model_zoo/resnet_thor/src/config.py → model_zoo/official/cv/resnet_thor/src/config.py View File


model_zoo/resnet_thor/src/crossentropy.py → model_zoo/official/cv/resnet_thor/src/crossentropy.py View File


model_zoo/resnet_thor/src/dataset_helper.py → model_zoo/official/cv/resnet_thor/src/dataset_helper.py View File


model_zoo/resnet_thor/src/dataset_imagenet.py → model_zoo/official/cv/resnet_thor/src/dataset_imagenet.py View File


model_zoo/resnet_thor/src/grad_reducer_thor.py → model_zoo/official/cv/resnet_thor/src/grad_reducer_thor.py View File


model_zoo/resnet_thor/src/model_thor.py → model_zoo/official/cv/resnet_thor/src/model_thor.py View File


model_zoo/resnet_thor/src/resnet50.py → model_zoo/official/cv/resnet_thor/src/resnet50.py View File


model_zoo/resnet_thor/src/resnet_thor.py → model_zoo/official/cv/resnet_thor/src/resnet_thor.py View File


model_zoo/resnet_thor/src/thor.py → model_zoo/official/cv/resnet_thor/src/thor.py View File


model_zoo/resnet_thor/src/thor_layer.py → model_zoo/official/cv/resnet_thor/src/thor_layer.py View File


model_zoo/resnet_thor/train.py → model_zoo/official/cv/resnet_thor/train.py View File


model_zoo/bert_thor/README.md → model_zoo/official/nlp/bert_thor/README.md View File


model_zoo/bert_thor/pretrain_eval.py → model_zoo/official/nlp/bert_thor/pretrain_eval.py View File


model_zoo/bert_thor/run_pretrain.py → model_zoo/official/nlp/bert_thor/run_pretrain.py View File


model_zoo/bert_thor/scripts/run_distribute_pretrain.sh → model_zoo/official/nlp/bert_thor/scripts/run_distribute_pretrain.sh View File


model_zoo/bert_thor/scripts/run_standalone_pretrain.sh → model_zoo/official/nlp/bert_thor/scripts/run_standalone_pretrain.sh View File


model_zoo/bert_thor/src/__init__.py → model_zoo/official/nlp/bert_thor/src/__init__.py View File


model_zoo/bert_thor/src/bert_for_pre_training.py → model_zoo/official/nlp/bert_thor/src/bert_for_pre_training.py View File


model_zoo/bert_thor/src/bert_model.py → model_zoo/official/nlp/bert_thor/src/bert_model.py View File


model_zoo/bert_thor/src/bert_net_config.py → model_zoo/official/nlp/bert_thor/src/bert_net_config.py View File


model_zoo/bert_thor/src/config.py → model_zoo/official/nlp/bert_thor/src/config.py View File


model_zoo/bert_thor/src/dataset.py → model_zoo/official/nlp/bert_thor/src/dataset.py View File


model_zoo/bert_thor/src/dataset_helper.py → model_zoo/official/nlp/bert_thor/src/dataset_helper.py View File


model_zoo/bert_thor/src/evaluation_config.py → model_zoo/official/nlp/bert_thor/src/evaluation_config.py View File


model_zoo/bert_thor/src/fused_layer_norm.py → model_zoo/official/nlp/bert_thor/src/fused_layer_norm.py View File


model_zoo/bert_thor/src/grad_reducer_thor1.py → model_zoo/official/nlp/bert_thor/src/grad_reducer_thor1.py View File


model_zoo/bert_thor/src/lr_generator.py → model_zoo/official/nlp/bert_thor/src/lr_generator.py View File


model_zoo/bert_thor/src/model_thor.py → model_zoo/official/nlp/bert_thor/src/model_thor.py View File


model_zoo/bert_thor/src/thor_for_bert.py → model_zoo/official/nlp/bert_thor/src/thor_for_bert.py View File


model_zoo/bert_thor/src/thor_for_bert_arg.py → model_zoo/official/nlp/bert_thor/src/thor_for_bert_arg.py View File


model_zoo/bert_thor/src/thor_layer.py → model_zoo/official/nlp/bert_thor/src/thor_layer.py View File


model_zoo/bert_thor/src/utils.py → model_zoo/official/nlp/bert_thor/src/utils.py View File


Loading…
Cancel
Save