Update app.py
Browse files
    	
        app.py
    CHANGED
    
    | 
         @@ -8,6 +8,7 @@ def image_classifier(inp): 
     | 
|
| 8 | 
         
             
                inp.save("why.png")
         
     | 
| 9 | 
         
             
                sunflower_path = "why.png"
         
     | 
| 10 | 
         
             
                r = asyncio.run(client.zero_shot_image_classification("why.png", labels=["mouth", "other"]))
         
     | 
| 
         | 
|
| 11 | 
         
             
                c[r[0]["label"]] = r[0]["score"]
         
     | 
| 12 | 
         
             
                c[r[1]["label"]] = r[1]["score"]
         
     | 
| 13 | 
         
             
                return c
         
     | 
| 
         | 
|
| 8 | 
         
             
                inp.save("why.png")
         
     | 
| 9 | 
         
             
                sunflower_path = "why.png"
         
     | 
| 10 | 
         
             
                r = asyncio.run(client.zero_shot_image_classification("why.png", labels=["mouth", "other"]))
         
     | 
| 11 | 
         
            +
                c = {}
         
     | 
| 12 | 
         
             
                c[r[0]["label"]] = r[0]["score"]
         
     | 
| 13 | 
         
             
                c[r[1]["label"]] = r[1]["score"]
         
     | 
| 14 | 
         
             
                return c
         
     |