|
|
---
|
|
|
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 |