This is a repository for the first semester of the Computer Science master's degree.
Follow these steps to set up the project locally:
Obtain the dataset from Kaggle.
You should create a Python virtual environment to isolate the project dependencies. Follow the instructions based on your operating system:
- Open your terminal.
- Run the following commands:
python -m venv venv source venv/bin/activate
- Open Command Prompt or PowerShell.
- Run the following commands:
python -m venv venv venv\Scripts\activate
Now, install the required packages by running the following command. Ensure you are in the project's root directory, where the setup.py file is located:
pip install -r requirements.txt-
In the root directory same place as setup.py run the following command
mkdir data
After preparing the dataset, run the setup.py script to set up any additional configuration:
python setup.pyMake sure that Python 3.x is installed. You can verify the version by running:
python --version