/Cool-Papers

my attempt at implementing machine learning techniques

Primary LanguagePython

Create a venv

For Windows:

python -m venv venv

For macOS and Linux:

python3 -m venv venv

Activate the Virtual Environment:

For Windows (Command Prompt):

venv\Scripts\activate

For Windows (PowerShell):

.\venv\Scripts\Activate.ps1

For macOS and Linux:

source venv/bin/activate

Installation:

pip install -r requirements.txt