CoolFace
Apppublic

executor1389/modern-search-engine

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
.gitignore28 linesDownload Raw Back to root
1# Virtual Environment2venv/3ENV/4env/5 6# Python caching7__pycache__/8*.py[cod]9*$py.class10 11# Data and Index (Keep the directory structure, but ignore the content)12data/*.json13index/whoosh/14index/tfidf_model.pkl15index/vectors.npy16index/metadata.pkl17 18# Logs19*.log20 21# Windows specifics22Thumbs.db23desktop.ini24 25# IDEs26.vscode/27.idea/28