Andreas Wolf

Results 20 comments of Andreas Wolf

KMinValues.cardinality_intersection does not work also RuntimeError: generator raised StopIteration line 91, in cardinality_intersection cardX = self._cardhelp(max(X), len(X))

All three German language models do not recognize Karlsruhe (a city) as LOC, but smaller cities. ``` import spacy nlp_de = spacy.load('de_core_news_lg') doc_de = nlp_de('Ettlingen liegt bei Karlsruhe.') for entity...

I have the same problem with read_step_file. I try to work on a batch of files and it floods the console with unwanted status output. I assume from a comment...

And don't forget to add `specs = { version = "0.18.0", features = ["serde"] }` to `cargo.toml`. I was missing the `features` part and got `unresolved import specs::saveload` which I...

Thanks for asking. I have to admit that I did not use Eclipse recently. I changed to Visual Studio Code. So my scenario is that I have a lot of...

Here is a nginx configuration for @Virsacer proposal. ``` location / { if ($http_authorization = "") { set $auth_basic "your_domain"; } if ($http_authorization != "") { set $auth_basic off; }...

After trying a lot with ipython themes and stuff I came back to @jasonleonhard 's solution and did a bit of refinement. I added this to my styles to overwrite...

I have the same problem with an int8: > Object of type int8 is not JSON serializable It's also raised from the `ComplexEncoder`. It seems to come from `{'preds_mapper': {'0':...

@Optimox Hi. I don't know if that happens in the AMEX competition, but I guess so, since the json encoding is not working for dtypes other than np.int64. Sorry for...

Yes. Sure. Thanks. The method code from OLE_get_header looked somewhat messed up, so I thought someone should have a look.