File size: 186 Bytes
6153c6f
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import replicate

deployment = replicate.deployments.get("jilll111/ai")
prediction = deployment.predictions.create(
  input={"frame1": "..."}
)
prediction.wait()
print(prediction.output)