Leo Auri
Leo Auri
Hi @Pustelto, sorry, I assumed this is the default behaviour. When my cursor is sitting in front of a bracket, both this and the matching closing bracket are surrounded with...
setting batch size explicitly to 1 like `imagine --batch_size=1 "a prompt"` is a workaround... 🥴
Is it because npm was expected to install into dist/js? Mine installed into {repo root}/node_modules (I had to downgrade to Node v8 as detailed in #9 ) If I manually...
I didn't have gulp installed (instructions [here](https://github.com/gulpjs/gulp/blob/v3.9.1/docs/getting-started.md)) Once I ran `npm run dev` once, no error and Vue loads. No idea if this is the correct way though. Would be...
`npm run dev` does seem to populate `dist` though, at least in my environment. So the instruction that's missing would be something like "If you plan to use as WordPress...
Okay, and I guess a note to the effect of "have node and gulp installed" and a link to instructions?
I'm about to submit a PR to fix this
To me the first statement also seems to be incorrect! The files/directories are named with hyphens, not underscores... > rename files from plugin_name to example_me should be > rename files...
Looking through it, I get the feeling it should be: * rename files and directories from plugin-name to example-me * in the files, replace all instances of * plugin_name with...
The tutorial uses `KAN(device=device)`, but this does not put the tensors on the specified device (bug). The commonly used `.to(device)` API does though, use that. For example: ```python from kan...