fDet is a website application for fake-news detection using modified RoBerta AI and GPT 3.5 Turbo. It combines the power of these AI models to provide accurate detection of fake news.
To set up the project locally, follow these instructions:
Create a virtual environment and activate it using the following commands:
~\AppData\Local\Programs\Python\Python39\python -m venv venv
venv\Scripts\activate
Install the required Python packages using the requirements.txt file:
pip install -r requirements.txt
To run the Django server, execute the following commands:
cd ./frontend
python manage.py runserver
cd ../
To run the FastAPI server, execute the following commands:
cd ./backend
python api.py
cd ../