Skip to content

Commit 341e663

Browse files
committed
fixing format to address this article in PR
https://github.com/MicrosoftDocs/azure-docs/pull/30896/files
1 parent bb14c33 commit 341e663

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

articles/machine-learning/service/how-to-deploy-fpga-web-service.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -161,25 +161,25 @@ print(output_tensors)
161161
The available models and the corresponding default classifier output tensors are below, which is what you would use for inference if you used the default classifier.
162162

163163
+ Resnet50, QuantizedResnet50
164-
``
165-
output_tensors = "classifier_1/resnet_v1_50/predictions/Softmax:0"
166-
``
164+
```
165+
output_tensors = "classifier_1/resnet_v1_50/predictions/Softmax:0"
166+
```
167167
+ Resnet152, QuantizedResnet152
168-
``
169-
output_tensors = "classifier/resnet_v1_152/predictions/Softmax:0"
170-
``
168+
```
169+
output_tensors = "classifier/resnet_v1_152/predictions/Softmax:0"
170+
```
171171
+ Densenet121, QuantizedDensenet121
172-
``
173-
output_tensors = "classifier/densenet121/predictions/Softmax:0"
174-
``
172+
```
173+
output_tensors = "classifier/densenet121/predictions/Softmax:0"
174+
```
175175
+ Vgg16, QuantizedVgg16
176-
``
177-
output_tensors = "classifier/vgg_16/fc8/squeezed:0"
178-
``
176+
```
177+
output_tensors = "classifier/vgg_16/fc8/squeezed:0"
178+
```
179179
+ SsdVgg, QuantizedSsdVgg
180-
``
181-
output_tensors = ['ssd_300_vgg/block4_box/Reshape_1:0', 'ssd_300_vgg/block7_box/Reshape_1:0', 'ssd_300_vgg/block8_box/Reshape_1:0', 'ssd_300_vgg/block9_box/Reshape_1:0', 'ssd_300_vgg/block10_box/Reshape_1:0', 'ssd_300_vgg/block11_box/Reshape_1:0', 'ssd_300_vgg/block4_box/Reshape:0', 'ssd_300_vgg/block7_box/Reshape:0', 'ssd_300_vgg/block8_box/Reshape:0', 'ssd_300_vgg/block9_box/Reshape:0', 'ssd_300_vgg/block10_box/Reshape:0', 'ssd_300_vgg/block11_box/Reshape:0']
182-
``
180+
```
181+
output_tensors = ['ssd_300_vgg/block4_box/Reshape_1:0', 'ssd_300_vgg/block7_box/Reshape_1:0', 'ssd_300_vgg/block8_box/Reshape_1:0', 'ssd_300_vgg/block9_box/Reshape_1:0', 'ssd_300_vgg/block10_box/Reshape_1:0', 'ssd_300_vgg/block11_box/Reshape_1:0', 'ssd_300_vgg/block4_box/Reshape:0', 'ssd_300_vgg/block7_box/Reshape:0', 'ssd_300_vgg/block8_box/Reshape:0', 'ssd_300_vgg/block9_box/Reshape:0', 'ssd_300_vgg/block10_box/Reshape:0', 'ssd_300_vgg/block11_box/Reshape:0']
182+
```
183183

184184
### Register model
185185

0 commit comments

Comments
 (0)