使っていないと、直ぐに凍結するから解凍しに行かないといかん。

  • https://huggingface.co/juyam

tool

  • image
  • ver1完成 https://huggingface.co/spaces/juyam/image_adjuster
  • 今後の改良点は
    1. 2回かけた場合のボタンを作成する
    2. アップロードしたら自動的に処理を開始する
    3. 高速化できればする
    4. 必要であればカーブを滑らかにする

# troubleshooting

  • problem ModuleNotFoundError: No module named 'cv2'
  • problem AttributeError: module 'gradio' has no attribute 'inputs'
  • problem AttributeError: module 'gradio' has no attribute 'outputs'
    • reference https://github.com/gradio-app/gradio/issues/6384#issuecomment-1810482077
    • solution
    • gr.inputs.Image() » gr.Image()
    • gr.inputs.Slider » gr.Slider
  • problem TypeError: Slider.__init__() got an unexpected keyword argument 'default'
    • investigation
      • image
    • solution
      • default=0 » value=0