Skip to content

s9latimm/artevis

Repository files navigation

    ___         __     _    ___     
   /   |  _____/ /____| |  / (_)____
  / /| | / ___/ __/ _ \ | / / / ___/
 / ___ |/ /  / /_/  __/ |/ / (__  ) 
/_/  |_/_/   \__/\___/|___/_/____/  

GitHub Pages (master)

Setup

Virtual Environment

Windows (Powershell)

$ python -m venv .venv
$ .\.activate.ps1

Linux

$ python -m venv .venv
$ source ./venv/bin/activate

Dependencies

$ python -m pip install --upgrade pip
$ python -m pip install wheel
$ python -m pip install torch --index-url https://download.pytorch.org/whl/cu126
$ python -m pip install -r requirements.txt

Usage

$ python -m src.artevis
usage: artevis [-h] [--cache] [--device {cpu,cuda}] [--steps <steps>] [--fps fps] [--size <size>]
               [--project <project>]

options:
  -h, --help           show this help message and exit
  --cache              Enable caching / storage of models in output folder
  --device {cpu,cuda}  device used for training (default: cpu)
  --steps <steps>      number of training steps (default: 5e+04)
  --fps fps            FPS (default: 6e+00)
  --size <size>        size of trained image (default: 256)
  --project <project>  choose project (default: mona)

Development

GitHub Pages (develop)