Boyan Hristov
Boyan Hristov
* Spacy version: 2.1.4 * spacy-stanfordnlp version: 0.1.1 I downloaded and loaded the german model as described in the docs. ```py import stanfordnlp from spacy_stanfordnlp import StanfordNLPLanguage stanfordnlp.download('de') snlp =...
It is common to build an sklearn pipeline, which includes the necessary data preprocessing (and feature encoding) steps and ends with an estimator (For example, see [Column Transformer with Mixed...
Every sklearn estimator provides the `get_params(deep=True)` and `set_params(params)` methods. These are used e.g. when cloning an estimator. The parameters of an estimator are the arguments of its `__init__` method and,...
I am using the `logconfig_dict` configuration key to log to a file via`logging.FileHandler`. Then I'm using `logrotate` to rotate the log files daily, something similar to: ``` /var/log/my-app.log { daily...
**Why? (my usecase)** I am using [catkin_virtualenv](https://github.com/locusrobotics/catkin_virtualenv) to manage my Python dependencies and XML files to describe a simulation environment. Each file can have multilpe scenarios or things that can...