9 lines
159 B
9 lines
159 B
1 year ago
|
from swarms.models.vilt import Vilt
|
||
|
|
||
|
model = Vilt()
|
||
|
|
||
1 year ago
|
output = model(
|
||
1 year ago
|
"What is this image",
|
||
|
"http://images.cocodataset.org/val2017/000000039769.jpg",
|
||
1 year ago
|
)
|