-
Notifications
You must be signed in to change notification settings - Fork 69
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
Improvement of Model Creation Documentation for Engine Creation Process #59
Comments
There is also a problem of repos containing multiple different models. https://huggingface.co/WarriorMama777/OrangeMixs I am not sure if it is going to download all 176 gbs of models into the docker and try to convert them all. I guess there is supposed to be a way to pick a single model out of the repo. |
You can think of it as running a plain If you want a temporary fix, then create such a repo by yourself (its really easy to do) and upload just the files of one model to it, you can check other repositories like https://huggingface.co/andite/anything-v4.0 to see how the files should be structured. |
After some digging, it seems like diffusers don't download everything if the repo is configured correctly. Most of the time people download models as files such as on https://civitai.com/ and directly use these files when generating things. This is the workflow that https://github.com/AUTOMATIC1111/stable-diffusion-webui steers people towards because it doesn't read the diffuser format at all. It seems like the current workaround to load custom models is to:
Someone experimenting with dozens of models would have to repeat these steps for each model. The root of the problem is that the most popular UI for stable diffusion doesn't actually use the This leads to a situation where people have two different workflows when dealing with the same files, automatic1111 vs diffusers library. It seems like people have a lot of confusion about what the diffuser does. If this repo wanted to load in files, it seems like there would need to be a lot of boilerplates to reimplement logic that already exists. It doesn't seem like the diffuser library allows us to easily load files instead of repos that use the diffuser format. |
Agreed @f0lie, it would be good if a common method was implemented for civitai models --> lsmith engine building. So, for lsmith engine generation - what exactly is needed? safetensor and VAE? |
I will soon add the ability to build the engine directly from a checkpoint file. |
Is your feature request related to a problem? Please describe.
Description:
There appears to be a lack of clarity in the process of creating a new model. Specifically, it is not evident what components are required for the creation of certain models, such as the VAE or text encoder.
Actual Behavior:
At present, the model creation process appears to be somewhat ambiguous and lacking in clarity, particularly in regards to the necessary components required for certain models.
Describe the solution you'd like
It is expected that the model creation process will be clearly documented and outlined, including any necessary components or dependencies required for the successful creation of the desired model.
Describe alternatives you've considered
No response
Additional context
Steps to Reproduce:
Impact:
The lack of clear guidance in the model creation process may result in confusion and frustration for users attempting to create new models. This could ultimately result in decreased usage of the platform or project.
Recommendation:
To address this issue, it is recommended that clear and detailed documentation be provided outlining the necessary components required for the creation of various models. This will enhance the user experience and facilitate the successful creation of new models.
Validations
The text was updated successfully, but these errors were encountered: