This small machine-learning proof-of-concept is set up to run inside a Python virtual environment (venv).
Quick start (Windows PowerShell):
- Create and activate the venv
python -m venv venv
.\venv\Scripts\Activate.ps1If PowerShell blocks script execution, run (as admin) to allow the activate script:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser- Install dependencies
pip install -r requirements.txt- Run the proof-of-concept
python poc.pyNotes:
- The script expects a
data.csvfile in the same folder. - If you prefer conda, create a conda env and install the packages from
requirements.txtor translate into anenvironment.yml.