1. 14 10月, 2023 1 次提交
  2. 05 9月, 2023 1 次提交
  3. 04 8月, 2023 1 次提交
  4. 29 7月, 2023 1 次提交
  5. 15 7月, 2023 2 次提交
  6. 11 7月, 2023 1 次提交
  7. 02 6月, 2023 1 次提交
  8. 01 6月, 2023 1 次提交
  9. 29 5月, 2023 2 次提交
  10. 12 5月, 2023 1 次提交
  11. 11 5月, 2023 1 次提交
  12. 10 5月, 2023 5 次提交
  13. 14 4月, 2023 1 次提交
  14. 09 4月, 2023 1 次提交
  15. 26 3月, 2023 1 次提交
  16. 25 3月, 2023 1 次提交
    • B
      Fix None type error for TI module · 803d44c4
      butaixianran 提交于
      When user using model_name.png as a preview image, textural_inversion.py still treat it as an embeding, and didn't handle its error, just let python throw out an None type error like following:
      ```bash
        File "D:\Work\Dev\AI\stable-diffusion-webui\modules\textual_inversion\textual_inversion.py", line 155, in load_from_file
          name = data.get('name', name)
      AttributeError: 'NoneType' object has no attribute 'get'
      ```
      
      With just a simple `if data:` checking as following, there will be no error, breaks nothing, and now this module can works fine with user's preview images.
      Old code:  
      ```python
                      data = extract_image_data_embed(embed_image)
                      name = data.get('name', name)
      ```
      New code:  
      ```python
                      data = extract_image_data_embed(embed_image)
                      if data:
                          name = data.get('name', name)
                      else:
                          # if data is None, means this is not an embeding, just a preview image
                          return
      ```
      
      Also, since there is no more errors on textual inversion module, from now on, extra network can set "model_name.png" as preview image for embedings.
      803d44c4
  17. 15 3月, 2023 1 次提交
  18. 12 3月, 2023 1 次提交
  19. 15 2月, 2023 2 次提交
  20. 29 1月, 2023 1 次提交
  21. 26 1月, 2023 1 次提交
  22. 21 1月, 2023 1 次提交
    • A
      extra networks UI · 40ff6db5
      AUTOMATIC 提交于
      rework of hypernets: rather than via settings, hypernets are added directly to prompt as <hypernet:name:weight>
      40ff6db5
  23. 19 1月, 2023 1 次提交
  24. 15 1月, 2023 1 次提交
  25. 14 1月, 2023 1 次提交
  26. 13 1月, 2023 2 次提交
  27. 12 1月, 2023 1 次提交
  28. 11 1月, 2023 2 次提交
  29. 10 1月, 2023 2 次提交
  30. 08 1月, 2023 1 次提交