NameError: name 'example_list' is not defined #1160
Unanswered
alaminsayed
asked this question in
Q&A
Replies: 1 comment
-
Hi @alaminsayed The error is because example_list hasn't been defined. You can fix it by defining it before your gr.Interface like this: example_list = [
["paht/image1.jpg"],
["path/image2.jpg"]
] Make sure you run this code before calling gr.Interface, and then pass example_list as the examples argument. That should solve the issue. Good luck |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
its from foodvision_mini_video.i tried to do with my own dataset..and trying to upload it on huggingface..but this error is showing,,
Beta Was this translation helpful? Give feedback.
All reactions