Rodja Trappe 2 년 전
부모
커밋
e6fca0c319
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      examples/ai_interface/main.py

+ 0 - 1
examples/ai_interface/main.py

@@ -26,7 +26,6 @@ async def generate_image(args: ValueChangeEventArguments):
     image.source = 'https://dummyimage.com/600x400/ccc/000000.png&text=building+image...'
     model = replicate.models.get('stability-ai/stable-diffusion')
     prediction = await io_bound(model.predict, prompt=prompt.value)
-    print(prediction)
     image.source = prediction[0]
 
 with ui.row().style('gap:10em'):