File size: 771 Bytes
81f219e c982962 3088d34 c982962 3088d34 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
---
license: apache-2.0
---
## Instructions to Run
1. Clone the repository
```bash
git clone https://huggingface.co/HeheBoi0769/Fact_Checker
```
2. Navigate to the project directory
```bash
cd complete_nlp_stuff
```
3. Install the requirements
```bash
pip install -r requirements.txt
```
4. Install frontend dependencies
```bash
cd nexus-frontend
npm install
```
5. Start the frontend server
```bash
npm run dev
```
6. Start the backend server in a different terminal (root directory)
```bash
uvicorn app:app --reload
```
7. Open the frontend in your browser and start using the application
8. Press on "Get Started" button on the home page to start the fact checker
9. Navigate to "/deepfake" route to run the deepfake detection module |