-
-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Are there any plans to make an executable outy of this project for a one-click deploy? #71
Comments
Yep, you're looking for https://github.com/easydiffusion/easydiffusion :) |
Sorry, I should've been more specific. I meant an exe for just starting the api. Easydiffusion is actually how I found this project, but they don't offer the ability to just use the api, they force it through the ui and I'm hoping to connect my app to this api. |
Ah got it. If you have Easy Diffusion installed, you can run your python programs using the Developer Console. For e.g. please start You don't need to start Easy Diffusion at all, or use its HTTP API. Please let me know if that doesn't work for you, thanks! |
You can always use a .bat to have all the modules, at the correct versions, installed. Just do a 'pip freeze' and note your version of python, and then use a .bat to install the modules, (pytorch seperately) etc. |
@MackNcD Ah, the example for embeddings was missing. Thanks, I've added it - https://github.com/easydiffusion/sdkit/blob/main/examples/010-generate-custom_embedding.py Embeddings are loaded just like any other model, by setting The name of the embedding file (without the extension) will be used as the embedding token, which you can then use in the prompt. You can load more embeddings by using the same process. Important: Previously loaded embeddings will NOT be unloaded when you load more embeddings. This works okay because the embedding is only used if the required token is present in the prompt. |
It worked! Grazie!
|
This would be a huge feature as it would take away the hassle of installing all the python packages and GPU setup.
The text was updated successfully, but these errors were encountered: