aboutsummaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE/bug_report.yml
blob: 70c2e16058b5bdaaf1fca3a5600353755c70ee53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
name: Bug Report
description: You think somethings is broken in the UI
title: "[Bug]: "
labels: ["bug-report"]

body:
  - type: markdown
    attributes:
      value: |
        > The title the bug report should be short and descriptive
        > Use relevant keywords for searchability
        > Don't leave it blank but also don't put the entire error log in it
  - type: checkboxes
    attributes:
      label: Checklist
      description: |
        Please perform basic debugging to see if extensions or configuration is the cause of the issue.
        Basic debug procedure
         1. Disable all third-party extensions - check if extension is the cause
         2. Update extensions and webui - sometimes thing just need to be updated
         3. Backup and remove your config.json and ui-config.json - check if the issue is caused bed configuration
         4. delete venv with third-party extensions disable - sometimes extensions might cause wrong libraries to be installed
         5. try a fresh installation webui in a different directory - see if a clean installation solves the issue
        Before making a issue report please check that the issue hasn't been reported recently
      options:
        - label: The issue exist after disabling all extensions
        - label: The issue exist on a clean installation of webui
        - label: The issue is caused by an extension but it is caused by a bug in webui
        - label: The issue exist in current version of webui
        - label: The issue haven't been reported before recently
        - label: The issue has been reported before but hasn't been fixed yet
  - type: markdown
    attributes:
      value: |
        > Please fill this form with as much information as possible, don't forget to "Upload Sysinfo" and "What browsers" and provide screenshots if possible
  - type: textarea
    id: what-did
    attributes:
      label: What happened?
      description: Tell us what happened in a very clear and simple way
      placeholder: |
        I tried to use txt2img with XYZ grid with Sampler DPM++ SDE,DPM++ 2M SDE
        it should generate a grid of 2 images but I only got 1
        
        add screenshot or screen recording if necessary
    validations:
      required: true
  - type: textarea
    id: steps
    attributes:
      label: Steps to reproduce the problem
      description: Please provide us with precise step by step instructions on how to reproduce the bug
      placeholder: |
        1. Go to txt2img tab Select XYZ grid 
        2. Set axis type Sampler and select DPM++ 2M SDE, DPM++ 3M SDE
        3. Set Sampling steps to 1 and click Generate button
    validations:
      required: true
  - type: textarea
    id: what-should
    attributes:
      label: What should have happened?
      description: Tell us what you think the normal behavior should be
      placeholder: |
        It should generate a grid of 2 images
        this was working in webui version 1.x.x
    validations:
      required: true
  - type: dropdown
    id: browsers
    attributes:
      label: What browsers do you use to access the UI ?
      multiple: true
      options:
        - Mozilla Firefox
        - Google Chrome
        - Brave
        - Apple Safari
        - Microsoft Edge
        - Android
        - iOS
        - Other
  - type: textarea
    id: sysinfo
    attributes:
      label: Sysinfo
      description: System info file, generated by WebUI. You can generate it in settings, on the Sysinfo page. Drag the file into the field to upload it. If you submit your report without including the sysinfo file, the report will be closed. If needed, review the report to make sure it includes no personal information you don't want to share. If you can't start WebUI, you can use --dump-sysinfo commandline argument to generate the file.
      placeholder: |
        Upload the Sysinfo as a attached file
        Don't paste it in as text
    validations:
      required: true
  - type: textarea
    id: logs
    attributes:
      label: Console logs
      description: Please provide **full** cmd/terminal logs from the moment you started UI to the end of it, after your bug happened. If it's very long, provide a link to pastebin or similar service.
      render: Shell
      placeholder: |
        generating image for xyz plot: UnboundLocalError
        Traceback (most recent call last):
          File "B:\GitHub\stable-diffusion-webui\scripts\xyz_grid.py", line 698, in cell
            res = process_images(pc)
          File "B:\GitHub\stable-diffusion-webui\modules\processing.py", line 732, in process_images
            res = process_images_inner(p)
          File "B:\GitHub\stable-diffusion-webui\modules\processing.py", line 867, in process_images_inner
            samples_ddim = p.sample(conditioning=p.c, unconditional_conditioning=p.uc, seeds=p.seeds, subseeds=p.subseeds, subseed_strength=p.subseed_strength, prompts=p.prompts)
          File "B:\GitHub\stable-diffusion-webui\modules\processing.py", line 1140, in sample
            samples = self.sampler.sample(self, x, conditioning, unconditional_conditioning, image_conditioning=self.txt2img_image_conditioning(x))
          File "B:\GitHub\stable-diffusion-webui\modules\sd_samplers_kdiffusion.py", line 235, in sample
            samples = self.launch_sampling(steps, lambda: self.func(self.model_wrap_cfg, x, extra_args=self.sampler_extra_args, disable=False, callback=self.callback_state, **extra_params_kwargs))
          File "B:\GitHub\stable-diffusion-webui\modules\sd_samplers_common.py", line 261, in launch_sampling
            return func()
          File "B:\GitHub\stable-diffusion-webui\modules\sd_samplers_kdiffusion.py", line 235, in <lambda>
            samples = self.launch_sampling(steps, lambda: self.func(self.model_wrap_cfg, x, extra_args=self.sampler_extra_args, disable=False, callback=self.callback_state, **extra_params_kwargs))
          File "B:\GitHub\stable-diffusion-webui\venv\lib\site-packages\torch\utils\_contextlib.py", line 115, in decorate_context
            return func(*args, **kwargs)
          File "B:\GitHub\stable-diffusion-webui\repositories\k-diffusion\k_diffusion\sampling.py", line 651, in sample_dpmpp_2m_sde
            h_last = h
        UnboundLocalError: local variable 'h' referenced before assignment        
    validations:
      required: true
  - type: textarea
    id: misc
    attributes:
      label: Additional information
      description: Please provide us with any relevant additional info or context.
      placeholder: |
        Examples
        I have updated the GPU driver recently
        I suspect the issue is caused by XXXXX
        I am using a VPN