Datasets:
				
			
			
	
			
	
		
			
	
		
		Commit 
							
							·
						
						4bc81d6
	
1
								Parent(s):
							
							90387b8
								
chore: datasets make prompt invariant to num of refs
Browse files- mvl-sib200.py +2 -2
    	
        mvl-sib200.py
    CHANGED
    
    | @@ -69,13 +69,13 @@ CATEGORIES: List[str] = [ | |
| 69 |  | 
| 70 | 
             
            # Prompts for classification tasks
         | 
| 71 | 
             
            IMG2SENT_PROMPT: str = (
         | 
| 72 | 
            -
                "Which option best matches the topic of the reference  | 
| 73 | 
             
                'The available topics are "entertainment", "geograpy", "health", '
         | 
| 74 | 
             
                '"politics", "science and technology", "sports", and "travel". '
         | 
| 75 | 
             
                "Choose one from A, B, C, D and only output a single letter."
         | 
| 76 | 
             
            )
         | 
| 77 | 
             
            SENT2IMG_PROMPT: str = (
         | 
| 78 | 
            -
                "Which option best matches the topic of the reference  | 
| 79 | 
             
                'The available topics are "entertainment", "geograpy", "health", '
         | 
| 80 | 
             
                '"politics", "science and technology", "sports", and "travel". '
         | 
| 81 | 
             
                "Choose one from A, B, C, D and only output a single letter."
         | 
|  | |
| 69 |  | 
| 70 | 
             
            # Prompts for classification tasks
         | 
| 71 | 
             
            IMG2SENT_PROMPT: str = (
         | 
| 72 | 
            +
                "Which option best matches the topic of the reference image(s)? "
         | 
| 73 | 
             
                'The available topics are "entertainment", "geograpy", "health", '
         | 
| 74 | 
             
                '"politics", "science and technology", "sports", and "travel". '
         | 
| 75 | 
             
                "Choose one from A, B, C, D and only output a single letter."
         | 
| 76 | 
             
            )
         | 
| 77 | 
             
            SENT2IMG_PROMPT: str = (
         | 
| 78 | 
            +
                "Which option best matches the topic of the reference sentence(s)? "
         | 
| 79 | 
             
                'The available topics are "entertainment", "geograpy", "health", '
         | 
| 80 | 
             
                '"politics", "science and technology", "sports", and "travel". '
         | 
| 81 | 
             
                "Choose one from A, B, C, D and only output a single letter."
         | 

