rupeshs / fastsdcpu

Fast stable diffusion on CPU
MIT License
1.01k stars 86 forks source link

how can I only use the txt-to-image part #51

Closed Y1gubigu closed 8 months ago

Y1gubigu commented 8 months ago

I am trying to convert speech into text and then input it into the model as an input prompt word, and then get the result (I hope to skip the GUI), but please forgive me as a novice, my programming level is really poor, when directly referencing the back-end program , it always reminds me that the corresponding module is missing

rupeshs commented 8 months ago

It is possible,What error are you getting? Please refer src/context.py

Y1gubigu commented 8 months ago

It is possible,What error are you getting? Please refer src/context.py

image I wrote a sample test , but it always prompts that this module cannot be found. What should I do to refer this.

rupeshs commented 8 months ago

You need to do pip install -r requirements.txt

Y1gubigu commented 8 months ago

You need to do pip install -r requirements.txt

I tried it, but there are still problems later. It seems that there is something wrong with Python's import mechanism. In addition to the things that require pip, there is also something wrong with the import of other modules inside the program. I don't think I can directly reference it like this based on my ability. Maybe I should try other way, thanks for your guidance