change lenet&alexnet dir

This commit is contained in:
wukesong 2020-07-20 14:47:38 +08:00
parent be2cfa9ed6
commit 513c45d3cf
16 changed files with 3 additions and 3 deletions

View File

@ -148,7 +148,7 @@ In order to facilitate developers to enjoy the benefits of MindSpore framework a
| Loss | 0.108 |
| Params (M) | 61.10 |
| Checkpoint for Fine tuning | 445MB(.ckpt file) |
| Scripts | https://gitee.com/mindspore/mindspore/tree/master/model_zoo/alexnet|
| Scripts | https://gitee.com/mindspore/mindspore/tree/master/model_zoo/official/cv/alexnet|
#### [LeNet](#table-of-contents)
@ -168,7 +168,7 @@ In order to facilitate developers to enjoy the benefits of MindSpore framework a
| Loss | 0.004 |
| Params (M) | 0.06 |
| Checkpoint for Fine tuning | 483KB(.ckpt file) |
| Scripts | https://gitee.com/mindspore/mindspore/tree/master/model_zoo/lenet|
| Scripts | https://gitee.com/mindspore/mindspore/tree/master/model_zoo/official/cv/lenet|
### Object Detection and Segmentation

View File

@ -29,7 +29,7 @@ def fc_with_initialize(input_channels, out_channels):
return nn.Dense(input_channels, out_channels, weight, bias)
def weight_variable():
return TruncatedNormal(0.02) # 0.02
return TruncatedNormal(0.02)
class AlexNet(nn.Cell):