Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
cf7c60a5
M
mindspore
项目概览
magicwindyyd
/
mindspore
与 Fork 源项目一致
Fork自
MindSpore / mindspore
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindspore
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
cf7c60a5
编写于
6月 22, 2020
作者:
M
mindspore-ci-bot
提交者:
Gitee
6月 22, 2020
浏览文件
操作
浏览文件
下载
差异文件
!2431 update README
Merge pull request !2431 from panfengfeng/update_readme
上级
2d35511d
87cc57d3
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
13 addition
and
13 deletion
+13
-13
example/mobilenetv2/Readme.md
example/mobilenetv2/Readme.md
+5
-5
example/mobilenetv2_quant/Readme.md
example/mobilenetv2_quant/Readme.md
+4
-4
example/resnet50_imagenet2012/README.md
example/resnet50_imagenet2012/README.md
+2
-2
example/resnet50_imagenet2012_THOR/README.md
example/resnet50_imagenet2012_THOR/README.md
+1
-1
example/resnet50_quant/README.md
example/resnet50_quant/README.md
+1
-1
未找到文件。
example/mobilenetv2/Readme.md
浏览文件 @
cf7c60a5
...
@@ -8,11 +8,11 @@ MobileNetV2 builds upon the ideas from MobileNetV1, using depthwise separable co
...
@@ -8,11 +8,11 @@ MobileNetV2 builds upon the ideas from MobileNetV1, using depthwise separable co
# Dataset
# Dataset
Dataset used: imagenet
Dataset used: imagenet
2012
-
Dataset size: ~125G
, 1.2W colorful images in 1000 classes
-
Dataset size: ~125G
-
Train: 120G, 1
.2W imag
es
-
Train: 120G, 1
281167 images: 1000 directori
es
-
Test: 5G, 50000 images
-
Test: 5G, 50000 images
: images should be classified into 1000 directories firstly, just like train images
-
Data format: RGB images.
-
Data format: RGB images.
-
Note: Data will be processed in src/dataset.py
-
Note: Data will be processed in src/dataset.py
...
@@ -139,4 +139,4 @@ result: {'acc': 0.71976314102564111} ckpt=/path/to/checkpoint/mobilenet-200_625.
...
@@ -139,4 +139,4 @@ result: {'acc': 0.71976314102564111} ckpt=/path/to/checkpoint/mobilenet-200_625.
| Model for inference | | | |
| Model for inference | | | |
# ModelZoo Homepage
# ModelZoo Homepage
[
Link
](
https://gitee.com/mindspore/mindspore/tree/master/mindspore/model_zoo
)
[
Link
](
https://gitee.com/mindspore/mindspore/tree/master/mindspore/model_zoo
)
\ No newline at end of file
example/mobilenetv2_quant/Readme.md
浏览文件 @
cf7c60a5
...
@@ -10,9 +10,9 @@ MobileNetV2 builds upon the ideas from MobileNetV1, using depthwise separable co
...
@@ -10,9 +10,9 @@ MobileNetV2 builds upon the ideas from MobileNetV1, using depthwise separable co
Dataset used: imagenet
Dataset used: imagenet
-
Dataset size: ~125G
, 1.2W colorful images in 1000 classes
-
Dataset size: ~125G
-
Train: 120G, 1
.2W imag
es
-
Train: 120G, 1
281167 images: 1000 directori
es
-
Test: 5G, 50000 images
-
Test: 5G, 50000 images
: images should be classified into 1000 directories firstly, just like train images
-
Data format: RGB images.
-
Data format: RGB images.
-
Note: Data will be processed in src/dataset.py
-
Note: Data will be processed in src/dataset.py
...
@@ -99,4 +99,4 @@ result: {'acc': 0.71976314102564111} ckpt=/path/to/checkpoint/mobilenet-200_625.
...
@@ -99,4 +99,4 @@ result: {'acc': 0.71976314102564111} ckpt=/path/to/checkpoint/mobilenet-200_625.
# ModelZoo Homepage
# ModelZoo Homepage
[
Link
](
https://gitee.com/mindspore/mindspore/tree/master/mindspore/model_zoo
)
[
Link
](
https://gitee.com/mindspore/mindspore/tree/master/mindspore/model_zoo
)
\ No newline at end of file
example/resnet50_imagenet2012/README.md
浏览文件 @
cf7c60a5
...
@@ -14,7 +14,7 @@ This is an example of training ResNet-50 with ImageNet2012 dataset in MindSpore.
...
@@ -14,7 +14,7 @@ This is an example of training ResNet-50 with ImageNet2012 dataset in MindSpore.
> ```
> ```
> .
> .
> ├── ilsvrc # train dataset
> ├── ilsvrc # train dataset
> └── ilsvrc_eval # infer dataset
> └── ilsvrc_eval # infer dataset
: images should be classified into 1000 directories firstly, just like train images
> ```
> ```
...
@@ -147,4 +147,4 @@ python train.py --dataset_path=dataset/ilsvrc/train --device_target="GPU" --pre_
...
@@ -147,4 +147,4 @@ python train.py --dataset_path=dataset/ilsvrc/train --device_target="GPU" --pre_
# infer example
# infer example
python eval.py --dataset_path=dataset/ilsvrc/val --device_target="GPU" --checkpoint_path=resnet-90_5004ss.ckpt
python eval.py --dataset_path=dataset/ilsvrc/val --device_target="GPU" --checkpoint_path=resnet-90_5004ss.ckpt
```
```
\ No newline at end of file
example/resnet50_imagenet2012_THOR/README.md
浏览文件 @
cf7c60a5
...
@@ -14,7 +14,7 @@ This is an example of training ResNet-50 V1.5 with ImageNet2012 dataset by secon
...
@@ -14,7 +14,7 @@ This is an example of training ResNet-50 V1.5 with ImageNet2012 dataset by secon
> ```
> ```
> .
> .
> ├── ilsvrc # train dataset
> ├── ilsvrc # train dataset
> └── ilsvrc_eval # infer dataset
> └── ilsvrc_eval # infer dataset
: images should be classified into 1000 directories firstly, just like train images
> ```
> ```
...
...
example/resnet50_quant/README.md
浏览文件 @
cf7c60a5
...
@@ -14,7 +14,7 @@ This is an example of training ResNet-50_quant with ImageNet2012 dataset in Mind
...
@@ -14,7 +14,7 @@ This is an example of training ResNet-50_quant with ImageNet2012 dataset in Mind
> ```
> ```
> .
> .
> ├── ilsvrc # train dataset
> ├── ilsvrc # train dataset
> └── ilsvrc_eval # infer dataset
> └── ilsvrc_eval # infer dataset
: images should be classified into 1000 directories firstly, just like train images
> ```
> ```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录