hysts
hysts
- [x] I have searched to see if a similar issue already exists. **Is your feature request related to a problem? Please describe.** The docstring of `gr.Video` only mentions about...
### Describe the bug When specifying max-width and max-height for images and videos in css, the behavior is inconsistent depending on whether they are in gr.Group or not. It seems...
### Describe the bug https://github.com/huggingface/diffusers/blob/92b6dbba1a25ed27b0bae38b089715132c7e6bcc/examples/train_unconditional.py#L168 This is a minor thing, but I think this should be `torch.Generator().manual_seed(0)`. In my understanding, if `torch.manual_seed` is called, it sets the seed globally and...
**Is your feature request related to a problem? Please describe.** The `ModelMixin.from_pretrained` has a keyword argument `subfolder`, but it's not documented in its docstring and it's hard for newcomers to...
**Is your feature request related to a problem? Please describe.** This is a minor thing, but I find the progress bar annoying when I run inference with pipeline successively. See...
Hi, I'm thinking of making a gradio demo app for this repo and I'd like to know the code license of this repo. Could you add a LICENSE file?
Hi, @lllyasviel I made a web demo for this repo. I'd appreciate it if you could add a link to it.
- [x] I have searched to see if a similar issue already exists. **Is your feature request related to a problem? Please describe.** I find it very useful that the...
- [x] I have searched to see if a similar issue already exists. When using `gr.Slider`, users can restrict the possible input values with `minimum, maximum, step`. For example, we...
### Describe the bug The following works fine, ```py import gradio as gr def get_img_tag(): return 'a' def get_img_tag2(): return 'b' with gr.Blocks() as demo: md = gr.Markdown(value=get_img_tag()) btn =...