@@ -232,28 +232,28 @@ pub enum ShuffleNetVersion {
232
232
impl ModelUrl for ImageClassification {
233
233
fn fetch_url ( & self ) -> & ' static str {
234
234
match self {
235
- ImageClassification :: MobileNet => "https://github.com/onnx/models/raw/master /vision/classification/mobilenet/model/mobilenetv2-7.onnx" ,
236
- ImageClassification :: SqueezeNet => "https://github.com/onnx/models/raw/master /vision/classification/squeezenet/model/squeezenet1.1-7.onnx" ,
235
+ ImageClassification :: MobileNet => "https://github.com/onnx/models/raw/main /vision/classification/mobilenet/model/mobilenetv2-7.onnx" ,
236
+ ImageClassification :: SqueezeNet => "https://github.com/onnx/models/raw/main /vision/classification/squeezenet/model/squeezenet1.1-7.onnx" ,
237
237
ImageClassification :: Inception ( version) => version. fetch_url ( ) ,
238
238
ImageClassification :: ResNet ( version) => version. fetch_url ( ) ,
239
239
ImageClassification :: Vgg ( variant) => variant. fetch_url ( ) ,
240
- ImageClassification :: AlexNet => "https://github.com/onnx/models/raw/master /vision/classification/alexnet/model/bvlcalexnet-9.onnx" ,
241
- ImageClassification :: GoogleNet => "https://github.com/onnx/models/raw/master /vision/classification/inception_and_googlenet/googlenet/model/googlenet-9.onnx" ,
242
- ImageClassification :: CaffeNet => "https://github.com/onnx/models/raw/master /vision/classification/caffenet/model/caffenet-9.onnx" ,
243
- ImageClassification :: RcnnIlsvrc13 => "https://github.com/onnx/models/raw/master /vision/classification/rcnn_ilsvrc13/model/rcnn-ilsvrc13-9.onnx" ,
244
- ImageClassification :: DenseNet121 => "https://github.com/onnx/models/raw/master /vision/classification/densenet-121/model/densenet-9.onnx" ,
240
+ ImageClassification :: AlexNet => "https://github.com/onnx/models/raw/main /vision/classification/alexnet/model/bvlcalexnet-9.onnx" ,
241
+ ImageClassification :: GoogleNet => "https://github.com/onnx/models/raw/main /vision/classification/inception_and_googlenet/googlenet/model/googlenet-9.onnx" ,
242
+ ImageClassification :: CaffeNet => "https://github.com/onnx/models/raw/main /vision/classification/caffenet/model/caffenet-9.onnx" ,
243
+ ImageClassification :: RcnnIlsvrc13 => "https://github.com/onnx/models/raw/main /vision/classification/rcnn_ilsvrc13/model/rcnn-ilsvrc13-9.onnx" ,
244
+ ImageClassification :: DenseNet121 => "https://github.com/onnx/models/raw/main /vision/classification/densenet-121/model/densenet-9.onnx" ,
245
245
ImageClassification :: ShuffleNet ( version) => version. fetch_url ( ) ,
246
- ImageClassification :: ZFNet512 => "https://github.com/onnx/models/raw/master /vision/classification/zfnet-512/model/zfnet512-9.onnx" ,
247
- ImageClassification :: EfficientNetLite4 => "https://github.com/onnx/models/raw/master /vision/classification/efficientnet-lite4/model/efficientnet-lite4.onnx"
246
+ ImageClassification :: ZFNet512 => "https://github.com/onnx/models/raw/main /vision/classification/zfnet-512/model/zfnet512-9.onnx" ,
247
+ ImageClassification :: EfficientNetLite4 => "https://github.com/onnx/models/raw/main /vision/classification/efficientnet-lite4/model/efficientnet-lite4.onnx"
248
248
}
249
249
}
250
250
}
251
251
252
252
impl ModelUrl for InceptionVersion {
253
253
fn fetch_url ( & self ) -> & ' static str {
254
254
match self {
255
- InceptionVersion :: V1 => "https://github.com/onnx/models/raw/master /vision/classification/inception_and_googlenet/inception_v1/model/inception-v1-9.onnx" ,
256
- InceptionVersion :: V2 => "https://github.com/onnx/models/raw/master /vision/classification/inception_and_googlenet/inception_v2/model/inception-v2-9.onnx" ,
255
+ InceptionVersion :: V1 => "https://github.com/onnx/models/raw/main /vision/classification/inception_and_googlenet/inception_v1/model/inception-v1-9.onnx" ,
256
+ InceptionVersion :: V2 => "https://github.com/onnx/models/raw/main /vision/classification/inception_and_googlenet/inception_v2/model/inception-v2-9.onnx" ,
257
257
}
258
258
}
259
259
}
@@ -270,43 +270,43 @@ impl ModelUrl for ResNet {
270
270
impl ModelUrl for ResNetV1 {
271
271
fn fetch_url ( & self ) -> & ' static str {
272
272
match self {
273
- ResNetV1 :: ResNet18 => "https://github.com/onnx/models/raw/master /vision/classification/resnet/model/resnet18-v1-7.onnx" ,
274
- ResNetV1 :: ResNet34 => "https://github.com/onnx/models/raw/master /vision/classification/resnet/model/resnet34-v1-7.onnx" ,
275
- ResNetV1 :: ResNet50 => "https://github.com/onnx/models/raw/master /vision/classification/resnet/model/resnet50-v1-7.onnx" ,
276
- ResNetV1 :: ResNet101 => "https://github.com/onnx/models/raw/master /vision/classification/resnet/model/resnet101-v1-7.onnx" ,
277
- ResNetV1 :: ResNet152 => "https://github.com/onnx/models/raw/master /vision/classification/resnet/model/resnet152-v1-7.onnx" ,
273
+ ResNetV1 :: ResNet18 => "https://github.com/onnx/models/raw/main /vision/classification/resnet/model/resnet18-v1-7.onnx" ,
274
+ ResNetV1 :: ResNet34 => "https://github.com/onnx/models/raw/main /vision/classification/resnet/model/resnet34-v1-7.onnx" ,
275
+ ResNetV1 :: ResNet50 => "https://github.com/onnx/models/raw/main /vision/classification/resnet/model/resnet50-v1-7.onnx" ,
276
+ ResNetV1 :: ResNet101 => "https://github.com/onnx/models/raw/main /vision/classification/resnet/model/resnet101-v1-7.onnx" ,
277
+ ResNetV1 :: ResNet152 => "https://github.com/onnx/models/raw/main /vision/classification/resnet/model/resnet152-v1-7.onnx" ,
278
278
}
279
279
}
280
280
}
281
281
282
282
impl ModelUrl for ResNetV2 {
283
283
fn fetch_url ( & self ) -> & ' static str {
284
284
match self {
285
- ResNetV2 :: ResNet18 => "https://github.com/onnx/models/raw/master /vision/classification/resnet/model/resnet18-v2-7.onnx" ,
286
- ResNetV2 :: ResNet34 => "https://github.com/onnx/models/raw/master /vision/classification/resnet/model/resnet34-v2-7.onnx" ,
287
- ResNetV2 :: ResNet50 => "https://github.com/onnx/models/raw/master /vision/classification/resnet/model/resnet50-v2-7.onnx" ,
288
- ResNetV2 :: ResNet101 => "https://github.com/onnx/models/raw/master /vision/classification/resnet/model/resnet101-v2-7.onnx" ,
289
- ResNetV2 :: ResNet152 => "https://github.com/onnx/models/raw/master /vision/classification/resnet/model/resnet152-v2-7.onnx" ,
285
+ ResNetV2 :: ResNet18 => "https://github.com/onnx/models/raw/main /vision/classification/resnet/model/resnet18-v2-7.onnx" ,
286
+ ResNetV2 :: ResNet34 => "https://github.com/onnx/models/raw/main /vision/classification/resnet/model/resnet34-v2-7.onnx" ,
287
+ ResNetV2 :: ResNet50 => "https://github.com/onnx/models/raw/main /vision/classification/resnet/model/resnet50-v2-7.onnx" ,
288
+ ResNetV2 :: ResNet101 => "https://github.com/onnx/models/raw/main /vision/classification/resnet/model/resnet101-v2-7.onnx" ,
289
+ ResNetV2 :: ResNet152 => "https://github.com/onnx/models/raw/main /vision/classification/resnet/model/resnet152-v2-7.onnx" ,
290
290
}
291
291
}
292
292
}
293
293
294
294
impl ModelUrl for Vgg {
295
295
fn fetch_url ( & self ) -> & ' static str {
296
296
match self {
297
- Vgg :: Vgg16 => "https://github.com/onnx/models/raw/master /vision/classification/vgg/model/vgg16-7.onnx" ,
298
- Vgg :: Vgg16Bn => "https://github.com/onnx/models/raw/master /vision/classification/vgg/model/vgg16-bn-7.onnx" ,
299
- Vgg :: Vgg19 => "https://github.com/onnx/models/raw/master /vision/classification/vgg/model/vgg19-7.onnx" ,
300
- Vgg :: Vgg19Bn => "https://github.com/onnx/models/raw/master /vision/classification/vgg/model/vgg19-bn-7.onnx" ,
297
+ Vgg :: Vgg16 => "https://github.com/onnx/models/raw/main /vision/classification/vgg/model/vgg16-7.onnx" ,
298
+ Vgg :: Vgg16Bn => "https://github.com/onnx/models/raw/main /vision/classification/vgg/model/vgg16-bn-7.onnx" ,
299
+ Vgg :: Vgg19 => "https://github.com/onnx/models/raw/main /vision/classification/vgg/model/vgg19-7.onnx" ,
300
+ Vgg :: Vgg19Bn => "https://github.com/onnx/models/raw/main /vision/classification/vgg/model/vgg19-bn-7.onnx" ,
301
301
}
302
302
}
303
303
}
304
304
305
305
impl ModelUrl for ShuffleNetVersion {
306
306
fn fetch_url ( & self ) -> & ' static str {
307
307
match self {
308
- ShuffleNetVersion :: V1 => "https://github.com/onnx/models/raw/master /vision/classification/shufflenet/model/shufflenet-9.onnx" ,
309
- ShuffleNetVersion :: V2 => "https://github.com/onnx/models/raw/master /vision/classification/shufflenet/model/shufflenet-v2-10.onnx" ,
308
+ ShuffleNetVersion :: V1 => "https://github.com/onnx/models/raw/main /vision/classification/shufflenet/model/shufflenet-9.onnx" ,
309
+ ShuffleNetVersion :: V2 => "https://github.com/onnx/models/raw/main /vision/classification/shufflenet/model/shufflenet-v2-10.onnx" ,
310
310
}
311
311
}
312
312
}
0 commit comments