├── .gitignore ├── LICENSE.txt ├── README.md ├── data └── data-initial.csv ├── demo.ipynb ├── example.png ├── requirements.txt └── transclass ├── __init__.py ├── classifier.py ├── io.py └── labeller.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .ipynb_checkpoints 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugnion/jupyter-widgets-for-data-science-guis/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugnion/jupyter-widgets-for-data-science-guis/HEAD/README.md -------------------------------------------------------------------------------- /data/data-initial.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugnion/jupyter-widgets-for-data-science-guis/HEAD/data/data-initial.csv -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugnion/jupyter-widgets-for-data-science-guis/HEAD/demo.ipynb -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugnion/jupyter-widgets-for-data-science-guis/HEAD/example.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugnion/jupyter-widgets-for-data-science-guis/HEAD/requirements.txt -------------------------------------------------------------------------------- /transclass/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugnion/jupyter-widgets-for-data-science-guis/HEAD/transclass/__init__.py -------------------------------------------------------------------------------- /transclass/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugnion/jupyter-widgets-for-data-science-guis/HEAD/transclass/classifier.py -------------------------------------------------------------------------------- /transclass/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugnion/jupyter-widgets-for-data-science-guis/HEAD/transclass/io.py -------------------------------------------------------------------------------- /transclass/labeller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugnion/jupyter-widgets-for-data-science-guis/HEAD/transclass/labeller.py --------------------------------------------------------------------------------