-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmodel_util.py
71 lines (70 loc) · 3.04 KB
/
model_util.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#
# -*- coding: utf-8 -*-
#
# Copyright (c) 2022 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Dictionary of TFHub models
tfhub_model_map = {
"resnet_v1_50": {
"imagenet_model": "https://tfhub.dev/google/imagenet/resnet_v1_50/classification/5",
"feature_vector": "https://tfhub.dev/google/imagenet/resnet_v1_50/feature_vector/5",
"image_size": 224
},
"resnet_v2_50": {
"imagenet_model": "https://tfhub.dev/google/imagenet/resnet_v2_50/classification/5",
"feature_vector": "https://tfhub.dev/google/imagenet/resnet_v2_50/feature_vector/5",
"image_size": 224
},
"resnet_v2_101": {
"imagenet_model": "https://tfhub.dev/google/imagenet/resnet_v2_101/classification/5",
"feature_vector": "https://tfhub.dev/google/imagenet/resnet_v2_101/feature_vector/5",
"image_size": 224
},
"mobilenet_v2_100_224": {
"imagenet_model": "https://tfhub.dev/google/imagenet/mobilenet_v2_100_224/classification/5",
"feature_vector": "https://tfhub.dev/google/imagenet/mobilenet_v2_100_224/feature_vector/4",
"image_size": 224
},
"efficientnetv2-s": {
"imagenet_model": "https://tfhub.dev/google/imagenet/efficientnet_v2_imagenet1k_s/classification/2",
"feature_vector": "https://tfhub.dev/google/imagenet/efficientnet_v2_imagenet1k_s/feature_vector/2",
"image_size": 384
},
"efficientnet_b0": {
"imagenet_model": "https://tfhub.dev/google/efficientnet/b0/classification/1",
"feature_vector": "https://tfhub.dev/google/efficientnet/b0/feature-vector/1",
"image_size": 224
},
"efficientnet_b1": {
"imagenet_model": "https://tfhub.dev/google/efficientnet/b1/classification/1",
"feature_vector": "https://tfhub.dev/google/efficientnet/b1/feature-vector/1",
"image_size": 240
},
"efficientnet_b2": {
"imagenet_model": "https://tfhub.dev/google/efficientnet/b2/classification/1",
"feature_vector": "https://tfhub.dev/google/efficientnet/b2/feature-vector/1",
"image_size": 260
},
"inception_v3": {
"imagenet_model": "https://tfhub.dev/google/imagenet/inception_v3/classification/5",
"feature_vector": "https://tfhub.dev/google/imagenet/inception_v3/feature_vector/5",
"image_size": 299
},
"nasnet_large": {
"imagenet_model": "https://tfhub.dev/google/imagenet/nasnet_large/classification/5",
"feature_vector": "https://tfhub.dev/google/imagenet/nasnet_large/feature_vector/5",
"image_size": 331
}
}