Sergey Kuznetsov

Results 29 comments of Sergey Kuznetsov

I checked it with both `npm` and `yarn` on Linux. I don't getting this error. Can you send your `dependencies` and `devDependencies`? Here is mine: ``` "dependencies": { "webpack": "^4.46.0"...

I'm also not getting error with your config. Same for just: ``` "dependencies": { "terser-webpack-plugin": "^5.1.3", "webpack": "^4.46.0" }, "devDependencies": { "remove-files-webpack-plugin": "^1.5.0" } ``` Can you delete your `package-lock.json`...

Hi! Sorry for long answer. Usually it means that the file either too big or Yandex Disk refuses to upload this file. You can find more using `/element_info` command. The...

You can use [remove-files-webpack-plugin](https://github.com/Amaimersion/remove-files-webpack-plugin) for this. Config: ```javascript new RemovePlugin({ before: { include: [ './dist' ] } }) ``` Note: i'm the creator of this plugin, so, it's a bit...

You can use [remove-files-webpack-plugin](https://github.com/Amaimersion/remove-files-webpack-plugin) for this. If i'm get it right: in watch mode need to delete all except files which in `public/build/images` folder. Here is solution with that plugin....

Same for me. I'm using webpack dynamic `import()`. For minified version it is not working, but for unminified everything is working fine.

I needed to fetch my `index.html` asset. This doesn't works on Cloudflare Pages: ```js env.ASSETS.fetch('http://fakehost/') env.ASSETS.fetch(new Request('/')) env.ASSETS.fetch(new Request('https://fakehost/')) ``` It **works locally** with `wrangler@beta`, `wrangler@pages` or `wrangler@alpha`, but after...

Is there any method to check/force for GPU usage? Similar to [spacy.require_gpu()](https://spacy.io/api/top-level/#spacy.require_gpu). I performed benchmark on CUDA machine and there was no any speed up for KeyBERT, while other models...

Initially I used it likes this: ```python model = KeyBERT("") # results in CPU usage ``` Then I tried this: ```python model = SentenceTransformer( "", device="cuda:0" # I also tried...

### Environment and code from scratch Here are steps that you can use to reproduce my environment and code from scratch. You should use Ubuntu 20 with CUDA device. Actually...