(url, dest)
| 6 | print("Converter Path:" + CONVERTER) |
| 7 | |
| 8 | def download(url, dest): |
| 9 | if os.path.exists(dest): |
| 10 | print(dest + " exists, skip") |
| 11 | return |
| 12 | print("Download " + url + " -> " + dest) |
| 13 | urllib.urlretrieve(url, dest) |
| 14 | |
| 15 | |
| 16 | def get_caffe1(urlmodel, destmodel, urlproto, destproto, name, position): |
no test coverage detected