This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
论坛
实训
竞赛
大数据
AI开发
Register
Sign In
Huawei_Technology
/
mindspore
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
13
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
!3215
Move bert to new model zoo directory
Merge pull request
!3215
from chenhaozhe/master
tags/v0.6.0-beta
mindspore-ci-bot
Gitee
5 years ago
parent
ad5c649e86
541bf81c1f
commit
bbfcbbe26d
28 changed files
with
0 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-0
model_zoo/official/nlp/bert/README.md
+0
-0
model_zoo/official/nlp/bert/pretrain_eval.py
+0
-0
model_zoo/official/nlp/bert/run_classifier.py
+0
-0
model_zoo/official/nlp/bert/run_ner.py
+0
-0
model_zoo/official/nlp/bert/run_pretrain.py
+0
-0
model_zoo/official/nlp/bert/run_squad.py
+0
-0
model_zoo/official/nlp/bert/scripts/run_classifier.sh
+0
-0
model_zoo/official/nlp/bert/scripts/run_distribute_pretrain.sh
+0
-0
model_zoo/official/nlp/bert/scripts/run_distribute_pretrain_for_gpu.sh
+0
-0
model_zoo/official/nlp/bert/scripts/run_ner.sh
+0
-0
model_zoo/official/nlp/bert/scripts/run_squad.sh
+0
-0
model_zoo/official/nlp/bert/scripts/run_standalone_pretrain.sh
+0
-0
model_zoo/official/nlp/bert/scripts/run_standalone_pretrain_for_gpu.sh
+0
-0
model_zoo/official/nlp/bert/src/CRF.py
+0
-0
model_zoo/official/nlp/bert/src/__init__.py
+0
-0
model_zoo/official/nlp/bert/src/assessment_method.py
+0
-0
model_zoo/official/nlp/bert/src/bert_for_finetune.py
+0
-0
model_zoo/official/nlp/bert/src/bert_for_pre_training.py
+0
-0
model_zoo/official/nlp/bert/src/bert_model.py
+0
-0
model_zoo/official/nlp/bert/src/clue_classification_dataset_process.py
+0
-0
model_zoo/official/nlp/bert/src/cluener_evaluation.py
+0
-0
model_zoo/official/nlp/bert/src/config.py
+0
-0
model_zoo/official/nlp/bert/src/dataset.py
+0
-0
model_zoo/official/nlp/bert/src/finetune_eval_config.py
+0
-0
model_zoo/official/nlp/bert/src/finetune_eval_model.py
+0
-0
model_zoo/official/nlp/bert/src/fused_layer_norm.py
+0
-0
model_zoo/official/nlp/bert/src/sample_process.py
+0
-0
model_zoo/official/nlp/bert/src/utils.py
model_zoo/bert/README.md → model_zoo/official/nlp/bert/README.md
View File
model_zoo/bert/pretrain_eval.py → model_zoo/official/nlp/bert/pretrain_eval.py
View File
model_zoo/bert/run_classifier.py → model_zoo/official/nlp/bert/run_classifier.py
View File
model_zoo/bert/run_ner.py → model_zoo/official/nlp/bert/run_ner.py
View File
model_zoo/bert/run_pretrain.py → model_zoo/official/nlp/bert/run_pretrain.py
View File
model_zoo/bert/run_squad.py → model_zoo/official/nlp/bert/run_squad.py
View File
model_zoo/bert/scripts/run_classifier.sh → model_zoo/official/nlp/bert/scripts/run_classifier.sh
View File
model_zoo/bert/scripts/run_distribute_pretrain.sh → model_zoo/official/nlp/bert/scripts/run_distribute_pretrain.sh
View File
model_zoo/bert/scripts/run_distribute_pretrain_for_gpu.sh → model_zoo/official/nlp/bert/scripts/run_distribute_pretrain_for_gpu.sh
View File
model_zoo/bert/scripts/run_ner.sh → model_zoo/official/nlp/bert/scripts/run_ner.sh
View File
model_zoo/bert/scripts/run_squad.sh → model_zoo/official/nlp/bert/scripts/run_squad.sh
View File
model_zoo/bert/scripts/run_standalone_pretrain.sh → model_zoo/official/nlp/bert/scripts/run_standalone_pretrain.sh
View File
model_zoo/bert/scripts/run_standalone_pretrain_for_gpu.sh → model_zoo/official/nlp/bert/scripts/run_standalone_pretrain_for_gpu.sh
View File
model_zoo/bert/src/CRF.py → model_zoo/official/nlp/bert/src/CRF.py
View File
model_zoo/bert/src/__init__.py → model_zoo/official/nlp/bert/src/__init__.py
View File
model_zoo/bert/src/assessment_method.py → model_zoo/official/nlp/bert/src/assessment_method.py
View File
model_zoo/bert/src/bert_for_finetune.py → model_zoo/official/nlp/bert/src/bert_for_finetune.py
View File
model_zoo/bert/src/bert_for_pre_training.py → model_zoo/official/nlp/bert/src/bert_for_pre_training.py
View File
model_zoo/bert/src/bert_model.py → model_zoo/official/nlp/bert/src/bert_model.py
View File
model_zoo/bert/src/clue_classification_dataset_process.py → model_zoo/official/nlp/bert/src/clue_classification_dataset_process.py
View File
model_zoo/bert/src/cluener_evaluation.py → model_zoo/official/nlp/bert/src/cluener_evaluation.py
View File
model_zoo/bert/src/config.py → model_zoo/official/nlp/bert/src/config.py
View File
model_zoo/bert/src/dataset.py → model_zoo/official/nlp/bert/src/dataset.py
View File
model_zoo/bert/src/finetune_eval_config.py → model_zoo/official/nlp/bert/src/finetune_eval_config.py
View File
model_zoo/bert/src/finetune_eval_model.py → model_zoo/official/nlp/bert/src/finetune_eval_model.py
View File
model_zoo/bert/src/fused_layer_norm.py → model_zoo/official/nlp/bert/src/fused_layer_norm.py
View File
model_zoo/bert/src/sample_process.py → model_zoo/official/nlp/bert/src/sample_process.py
View File
model_zoo/bert/src/utils.py → model_zoo/official/nlp/bert/src/utils.py
View File
Write
Preview
Loading…
Cancel
Save