https://github.com/borgwardtlab/findcomb
Scientifica app for finding the most significant combinations of features
https://github.com/borgwardtlab/findcomb
Last synced: 11 months ago
JSON representation
Scientifica app for finding the most significant combinations of features
- Host: GitHub
- URL: https://github.com/borgwardtlab/findcomb
- Owner: BorgwardtLab
- Created: 2017-06-20T12:13:04.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-04-22T20:52:09.000Z (about 4 years ago)
- Last Synced: 2023-06-09T12:05:13.313Z (almost 3 years ago)
- Language: Python
- Size: 20.3 MB
- Stars: 3
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FindComb
Scientifica app for finding the most significant combinations of features
## Presentation at WEF.
Download software for touchscreen at https://www.solutions4av.com/de/produkte/primetouch-4/.
Enable key shortcut for zoom in accessablility menue in system preferences.
```
Option+Command+'=' -> Zoom in.
Option+Command+'-' -> Zoom out.
```
## Install server
You can find the server development version under findcomb_server. In order to set up the server locally, it is recommended to build a python 3 virtualenv with the following command:
```scripting
virtualenv -p python3 yourvenvname
```
Once your virtual environment is set, activate it (run source yourvenvname/bin/activate) and install the dependencies with
```scripting
pip install -r requirements.txt
```
You're now set to use the server.
## Run server
To run the server on the local port 8000, run
```scripting
./manage.py runserver
```