The requirements.txt is missing a tqdm and is throwing an ImportError: No module named tqdm.
python src/detect.py "Training Accuracy after 25 epochs"
Using TensorFlow backend.
Traceback (most recent call last):
File "src/detect.py", line 4, in <module>
from preprocessors.preprocess_text import clean
File "/home/pat/projects/github/clickbait-detector/src/preprocessors/preprocess_text.py", line 3, in <module>
import tqdm
ImportError: No module named tqdm
The
requirements.txt
is missing atqdm
and is throwing anImportError: No module named tqdm
.