Yevhenii Hurin

Results 15 comments of Yevhenii Hurin

I have the same problem when I use https://github.com/yohasebe/ruby-spacy (which is based on PyCall). It works when I call `Spacy::Language.new("en_core_web_sm")` in the rails console. When I call it from the...

Some useful tips and tricks on what's the optimal parameters from one of the developers: https://x.com/timudk/status/1727064128223855087?s=20

> People do it because developers ignore us. So it is better to bump it Opensource doesn't work this way. If you want this feature - you implement it and...

For all these new folks here. "+1" on GitHub is considered a very bad taste. As well as arguing ^_^ Let's keep discussions productive please.

@omartorresrios Thanks mate. I actually got rid of everything spacy related in my app and now i just have these four lines in my docker-compose ``` spacyapi: image: hoblin/spacy-server:2-en_core_web_md ports:...

@adrienpoly Sure. I use it as a micro-service and call it via API. `docker-compose.yml`: ```docker-compose.yml version: '3' services: spacyapi: image: hoblin/spacy-server:2-en_core_web_md ports: - '8000:8000' ``` `config/deploy.yml`(Kamal): ```config/deploy.yml servers: web: ......

I have same problem. files from `accessories.db.files` are being created as root.

I had the same issue. Fixed by creating model directories before models download ``` # Create necessary directories RUN mkdir -p models/checkpoints models/vae ``` (In case `MODEL_TYPE` is not set,...