Spaces:
Sleeping
Sleeping
π¨ Syncing with keyword obtained from IVA
Browse files
models/InternVL3/intervl3.py
CHANGED
@@ -34,7 +34,7 @@ class InternVL3(BaseModel):
|
|
34 |
)
|
35 |
|
36 |
def get_query_prompt(self, prompt_keyword: str):
|
37 |
-
if prompt_keyword == "person_running":
|
38 |
query_prompt = """
|
39 |
<image>\nCheck if person is running or not? If they are running
|
40 |
respond with "Yes" else respond with "No". Limit your response to either "Yes" or "No"
|
|
|
34 |
)
|
35 |
|
36 |
def get_query_prompt(self, prompt_keyword: str):
|
37 |
+
if prompt_keyword.lower() == "person_running":
|
38 |
query_prompt = """
|
39 |
<image>\nCheck if person is running or not? If they are running
|
40 |
respond with "Yes" else respond with "No". Limit your response to either "Yes" or "No"
|