Skip to content

Commit

Permalink
Rename resnet50 fp32 models
Browse files Browse the repository at this point in the history
  • Loading branch information
mingmingtasd committed Apr 30, 2024
1 parent 23e77e5 commit 229d897
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion image_classification/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<input type="radio" name="model" id="squeezenet" autocomplete="off">SqueezeNet
</label>
<label class="btn btn-outline-info">
<input type="radio" name="model" id="resnet50" autocomplete="off">ResNet V2 50
<input type="radio" name="model" id="resnet50v2" autocomplete="off">ResNet 50 V2
</label>
<label class="btn btn-outline-info">
<input type="radio" name="model" id="resnet50v1" autocomplete="off">ResNet 50 V1
Expand Down
4 changes: 2 additions & 2 deletions image_classification/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,8 @@ function constructNetObject(type) {
'mobilenetnhwc': new MobileNetV2Nhwc(),
'squeezenetnchw': new SqueezeNetNchw(),
'squeezenetnhwc': new SqueezeNetNhwc(),
'resnet50nchw': new ResNet50V2Nchw(),
'resnet50nhwc': new ResNet50V2Nhwc(),
'resnet50v2nchw': new ResNet50V2Nchw(),
'resnet50v2nhwc': new ResNet50V2Nhwc(),
};

return netObject[type];
Expand Down

0 comments on commit 229d897

Please sign in to comment.