Skip to content

Commit 3000c9a

Browse files
author
Глеб Брыкин
authored
Update squeezenet.cs
1 parent c97daf4 commit 3000c9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Implementation/src/torchvision/models/squeezenet.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public static SqueezeNet squeezenet1_0(bool pretrained = false, int num_classes
147147
m.load_state_dict(
148148
__load_model("",
149149
"squeezenet1_0.thn",
150-
"https://github.com/ColorfulSoft/System.AI/raw/master/Implementation/src/torchvision/models/thn/squeezenet1_0.thn")
150+
"https://github.com/ColorfulSoft/System.AI/releases/download/hub/squeezenet1_0.thn")
151151
);
152152
}
153153
return m;
@@ -161,7 +161,7 @@ public static SqueezeNet squeezenet1_1(bool pretrained = false, int num_classes
161161
m.load_state_dict(
162162
__load_model("",
163163
"squeezenet1_1.thn",
164-
"https://github.com/ColorfulSoft/System.AI/raw/master/Implementation/src/torchvision/models/thn/squeezenet1_1.thn")
164+
"https://github.com/ColorfulSoft/System.AI/releases/download/hub/squeezenet1_1.thn")
165165
);
166166
}
167167
return m;
@@ -173,4 +173,4 @@ public static SqueezeNet squeezenet1_1(bool pretrained = false, int num_classes
173173

174174
}
175175

176-
}
176+
}

0 commit comments

Comments
 (0)