6
0

Без опису

Dimitri Korsch 63bbf031fe added logger config in the settings.json; replaced all prints with app.logger.info/.debug 3 роки тому
labels 63bbf031fe added logger config in the settings.json; replaced all prints with app.logger.info/.debug 3 роки тому
migrations d272f7c26d added tests for file upload and removal. fixed some bugs 4 роки тому
models 63bbf031fe added logger config in the settings.json; replaced all prints with app.logger.info/.debug 3 роки тому
pycs 63bbf031fe added logger config in the settings.json; replaced all prints with app.logger.info/.debug 3 роки тому
tests 63bbf031fe added logger config in the settings.json; replaced all prints with app.logger.info/.debug 3 роки тому
webui 106ba4785d some minor WebUI fixes 3 роки тому
.coveragerc fa28cb9780 added a Makefile and converagerc file 4 роки тому
.dockerignore 1259a4330a Resolve "Dockerfile" 4 роки тому
.editorconfig 05fab88a78 implemented first version of the crop view. Moved image operations to a separate utils module 4 роки тому
.gitignore fa28cb9780 added a Makefile and converagerc file 4 роки тому
.gitlab-ci.yml dc9ce6a951 [ci skip] report of the coverage is duplicated 3 роки тому
.pylintrc 63bbf031fe added logger config in the settings.json; replaced all prints with app.logger.info/.debug 3 роки тому
Dockerfile 1259a4330a Resolve "Dockerfile" 4 роки тому
Makefile 1bde8fc4e2 ignoring resource warnings, when running coverage tests 3 роки тому
README.md 1259a4330a Resolve "Dockerfile" 4 роки тому
app.py b5d784be18 deleted Database class. Reworked all view, so that they don't need a database instance 4 роки тому
docker-compose.yml 59603d7eba Ammod 4 роки тому
requirements.dev.txt 0c8332a22d CI changes: 4 роки тому
requirements.txt ccdfae6b81 forgot a dependency 4 роки тому
settings.json 63bbf031fe added logger config in the settings.json; replaced all prints with app.logger.info/.debug 3 роки тому

README.md

PyCS

pipeline status coverage report made-with-python made-with-vuejs

PyCS is a python tool to use and fit machine learning models using any modern web browser.

Requirements

  • python 3.6 + pip
  • nodejs 14 + npm

Getting Started

CI Builds

Download the latest version and unzip it. Execute the following commands using a command prompt:

  • create and activate a virtual python environment

    python -m venv env
    source env/bin/activate
    
  • install python dependencies

    pip install numpy opencv-python Pillow scipy
    pip install eventlet flask python-socketio
    
  • start server

    python app.py
    

Docker

Docker is the preferred way to quickly start a PyCS instance without requiring any more software or libraries on your system.

  • build image with tag pycs

    docker build -t pycs .
    
  • start container

    docker run -p 5000:5000 pycs
    

Development

Use git to clone this repository or download the latest version as a zip file. Execute the following commands using a command prompt:

  • create and activate a virtual python environment

    python -m venv env
    source env/bin/activate
    
  • install python dependencies

    pip install numpy opencv-python Pillow scipy
    pip install eventlet flask python-socketio
    
  • start server

    python app.py
    
  • change directory to webui

    cd webui/
    
  • install vuejs and other dependencies

    npm install
    
  • start frontend

    npm run serve