Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/touhi99/teamlab_emotion_detection
CL TeamLab - Document level emotion detection using different classifier
https://github.com/touhi99/teamlab_emotion_detection
Last synced: about 5 hours ago
JSON representation
CL TeamLab - Document level emotion detection using different classifier
- Host: GitHub
- URL: https://github.com/touhi99/teamlab_emotion_detection
- Owner: touhi99
- Created: 2018-04-10T23:26:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-30T22:14:12.000Z (about 6 years ago)
- Last Synced: 2023-11-26T21:28:18.218Z (12 months ago)
- Language: Python
- Homepage:
- Size: 1.31 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Teamlab repo
## Authors
* Simon Tannert
* Touhidul Alam
## Structure
The repository is structured as follows:
* code/ contains our implementations for the different tasks in the class. The code is implemented in Python3 (tested on >=3.5)
* results/ contains the output of our implementations
* documentation/ will contain our presentation slides and report
code/ is the root of a Python package. There are subdirectories/subpackages for the different implementation tasks.
* code/lib/reader.py
* code/lib/feature_extraction.py
* code/lib/perceptron.py
* code/lib/naive_bayes.pyTo run our programs, you should use the shell scripts provided in the root of our git-repository.
## Dependencies
We use docopt as command line parser, you can install it with the following command```
python3 -m pip install --user docopt
```