Nincs leírás

Dimitri Korsch 69549d14cd minor fix in Makefile: source is already set in the rc file 4 éve
labels 7273c83625 added flat model label reader 4 éve
migrations d7076a97ab deleted Database class. Reworked all view, so that they don't need a database instance 4 éve
models 7273c83625 added flat model label reader 4 éve
pycs 4b53dd5751 fixed database tests 4 éve
test 4b53dd5751 fixed database tests 4 éve
webui 2fee310ab7 Merge remote-tracking branch 'gitlab/crop_view' into 150-flask-sqlalchemy 4 éve
.coveragerc 3cdd0a517f added a Makefile and converagerc file 4 éve
.dockerignore 1259a4330a Resolve "Dockerfile" 4 éve
.editorconfig 05fab88a78 implemented first version of the crop view. Moved image operations to a separate utils module 4 éve
.gitignore 3cdd0a517f added a Makefile and converagerc file 4 éve
.gitlab-ci.yml 1df7964c29 Resolve "more tests" 4 éve
Dockerfile 1259a4330a Resolve "Dockerfile" 4 éve
Makefile 69549d14cd minor fix in Makefile: source is already set in the rc file 4 éve
README.md 1259a4330a Resolve "Dockerfile" 4 éve
app.py d7076a97ab deleted Database class. Reworked all view, so that they don't need a database instance 4 éve
docker-compose.yml 59603d7eba Ammod 4 éve
requirements.dev.txt 3cdd0a517f added a Makefile and converagerc file 4 éve
requirements.txt 9a1ecb5727 SQLAlchemy work in progress... switching to laptop (dirty commit) 4 éve
settings.json d7076a97ab deleted Database class. Reworked all view, so that they don't need a database instance 4 éve

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