Spaces:
Sleeping
Sleeping
File size: 458 Bytes
c2eb29b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import gdown
file_id = '1DNPDWKWqF6l0B-7qS5JX6TE27OGRrl2J'
download_url = f'https://drive.google.com/uc?id={file_id}'
output = 'final_plantvillage_model.keras' # you can change the filename if you want
gdown.download(download_url, output, quiet=False)
import gdown
url = 'https://drive.google.com/file/d/1DNPDWKWqF6l0B-7qS5JX6TE27OGRrl2J/view?usp=sharing'
output = 'final_plantvillage_model.keras'
gdown.download(url, output, quiet=False, fuzzy=True)
|