├── .gitattributes ├── .github └── workflows │ └── hf_sync.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── Rock_fact_checker.py ├── app_utils ├── backend_utils.py ├── config.py └── frontend_utils.py ├── data ├── index │ ├── faiss_document_store.db │ ├── my_faiss_index.faiss │ └── my_faiss_index.json ├── rock_wiki.tar.gz └── statements.txt ├── notebooks ├── get_wikipedia_data.ipynb └── indexing.ipynb ├── pages └── Info.py ├── presentation └── fact_checking_rocks.pdf └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/hf_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/.github/workflows/hf_sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/README.md -------------------------------------------------------------------------------- /Rock_fact_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/Rock_fact_checker.py -------------------------------------------------------------------------------- /app_utils/backend_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/app_utils/backend_utils.py -------------------------------------------------------------------------------- /app_utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/app_utils/config.py -------------------------------------------------------------------------------- /app_utils/frontend_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/app_utils/frontend_utils.py -------------------------------------------------------------------------------- /data/index/faiss_document_store.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/data/index/faiss_document_store.db -------------------------------------------------------------------------------- /data/index/my_faiss_index.faiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/data/index/my_faiss_index.faiss -------------------------------------------------------------------------------- /data/index/my_faiss_index.json: -------------------------------------------------------------------------------- 1 | {"similarity": "dot_product", "embedding_dim": 768} -------------------------------------------------------------------------------- /data/rock_wiki.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/data/rock_wiki.tar.gz -------------------------------------------------------------------------------- /data/statements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/data/statements.txt -------------------------------------------------------------------------------- /notebooks/get_wikipedia_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/notebooks/get_wikipedia_data.ipynb -------------------------------------------------------------------------------- /notebooks/indexing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/notebooks/indexing.ipynb -------------------------------------------------------------------------------- /pages/Info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/pages/Info.py -------------------------------------------------------------------------------- /presentation/fact_checking_rocks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/presentation/fact_checking_rocks.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakin87/fact-checking-rocks/HEAD/requirements.txt --------------------------------------------------------------------------------