Severin Simmler
Severin Simmler
Where do the `.crfsuite` files in my `/tmp` folder come from? Can I delete those or prevent being created? 
Your code works like a charm out-of-the-box, thank you! Anyway, I think I have discovered a cosmetic defect that does not affect the functionality of the program, but is probably...
Looks like we're unable to install `jieba` with `pip==22.0.4` and `setuptools==62.0.0` (Python 3.9): ``` $ pip install jieba Collecting jieba Downloading jieba-0.42.1.tar.gz (19.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.2/19.2 MB 1.7 MB/s eta...
We should keep function and variable names consistent and follow [PEP 8's recommendation](https://www.python.org/dev/peps/pep-0008/#descriptive-naming-styles): `lower_case_with_underscores` https://github.com/DARIAH-DE/TopicsExplorer/blob/b477aa5ae2c662a9906dc32621dab8469351e9a7/application/views.py#L123
Can you reproduce this? ``` $ python topicsexplorer.py * Serving Flask app "topicsexplorer" (lazy loading) * Environment: production WARNING: Do not use the development server in a production environment. Use...
`app.run(port="5000")` is default and hardcoded. Use another value for `port`, if `5000` is busy.
And the dependencies' licenses
We have to run two processes in parallel, not one after the other: 1. Start the topic modeling workflow. 2. Render the `modeling.html` template, which displays current status updates to...
https://github.com/DARIAH-DE/TopicsExplorer/blob/3fddeaeedf49d6c99f6e93855778fb52c3fa6289/application/gui.py#L28