Spaces:
Runtime error
Runtime error
File size: 437 Bytes
0b2a06f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# -*- coding: utf-8 -*-
"""model_download.py
Automatically generated by Colab.
Original file is located at
https://colab.research.google.com/drive/1Y_JvDuAVDbA_d7NCISXd_6nbyLn3yDZa
"""
import os
# Check if the model is already downloaded
if not os.path.exists('lid.176.bin'):
print("Downloading fastText language detection model...")
os.system('wget https://dl.fbaipublicfiles.com/fasttext/supervised-models/lid.176.bin') |