FredZhang7
commited on
Commit
·
0a04b8c
1
Parent(s):
cac2154
fix bugs
Browse files
README.md
CHANGED
@@ -43,8 +43,8 @@ print_layer_stats = True # prints the statistics for each layer of the model
|
|
43 |
verbose = True # prints additional info about the MAC calculation
|
44 |
|
45 |
# Download the model. Skip this step if already downloaded
|
46 |
-
base_model = "efficientnetv2.5_base_in1k
|
47 |
-
url = f"https://huggingface.co/FredZhang7/efficientnetv2.5_rw_s/resolve/main/{
|
48 |
file_name = f"./{base_model}.pth"
|
49 |
urllib.request.urlretrieve(url, file_name)
|
50 |
|
|
|
43 |
verbose = True # prints additional info about the MAC calculation
|
44 |
|
45 |
# Download the model. Skip this step if already downloaded
|
46 |
+
base_model = "efficientnetv2.5_base_in1k"
|
47 |
+
url = f"https://huggingface.co/FredZhang7/efficientnetv2.5_rw_s/resolve/main/{base_model}.pth"
|
48 |
file_name = f"./{base_model}.pth"
|
49 |
urllib.request.urlretrieve(url, file_name)
|
50 |
|