Spaces:
				
			
			
	
			
			
					
		Running
		
			on 
			
			CPU Upgrade
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
			on 
			
			CPU Upgrade
	Merge branch 'main' of https://huggingface.co/spaces/eduagarcia/open_pt_llm_leaderboard
Browse files- src/submission/submit.py +1 -0
 - tasks_config/pt_config.yaml +1 -1
 
    	
        src/submission/submit.py
    CHANGED
    
    | 
         @@ -152,6 +152,7 @@ def add_new_eval( 
     | 
|
| 152 | 
         
             
                    rev_name = revision
         
     | 
| 153 | 
         
             
                    if len(rev_name) > 12:
         
     | 
| 154 | 
         
             
                        rev_name = rev_name[:7]
         
     | 
| 
         | 
|
| 155 | 
         
             
                    out_path = f"{OUT_DIR}/{model_path}_eval_request_{rev_name}_{private}_{precision}_{weight_type}.json"
         
     | 
| 156 | 
         | 
| 157 | 
         
             
                with open(out_path, "w", encoding="utf-8") as f:
         
     | 
| 
         | 
|
| 152 | 
         
             
                    rev_name = revision
         
     | 
| 153 | 
         
             
                    if len(rev_name) > 12:
         
     | 
| 154 | 
         
             
                        rev_name = rev_name[:7]
         
     | 
| 155 | 
         
            +
                    rev_name = rev_name.replace('/', '-').replace('\\', '-')
         
     | 
| 156 | 
         
             
                    out_path = f"{OUT_DIR}/{model_path}_eval_request_{rev_name}_{private}_{precision}_{weight_type}.json"
         
     | 
| 157 | 
         | 
| 158 | 
         
             
                with open(out_path, "w", encoding="utf-8") as f:
         
     | 
    	
        tasks_config/pt_config.yaml
    CHANGED
    
    | 
         @@ -322,7 +322,7 @@ tasks: 
     | 
|
| 322 | 
         
             
                improving reliability on the task of Sentiment Analysis. Each Tweet was annotated 
         
     | 
| 323 | 
         
             
                in one of the three following classes: Positive, Negative, Neutral."
         
     | 
| 324 | 
         
             
                link: https://arxiv.org/abs/1712.08917
         
     | 
| 325 | 
         
            -
                sources: ["https://bitbucket.org/HBrum/tweetsentbr", "eduagarcia/tweetsentbr_fewshot"]
         
     | 
| 326 | 
         
             
                citation: |
         
     | 
| 327 | 
         
             
                  @InProceedings{BRUM18.389,
         
     | 
| 328 | 
         
             
                    author = {Henrico Brum and Maria das Gra\c{c}as Volpe Nunes},
         
     | 
| 
         | 
|
| 322 | 
         
             
                improving reliability on the task of Sentiment Analysis. Each Tweet was annotated 
         
     | 
| 323 | 
         
             
                in one of the three following classes: Positive, Negative, Neutral."
         
     | 
| 324 | 
         
             
                link: https://arxiv.org/abs/1712.08917
         
     | 
| 325 | 
         
            +
                sources: ["https://bitbucket.org/HBrum/tweetsentbr", "https://huggingface.co/datasets/eduagarcia/tweetsentbr_fewshot"]
         
     | 
| 326 | 
         
             
                citation: |
         
     | 
| 327 | 
         
             
                  @InProceedings{BRUM18.389,
         
     | 
| 328 | 
         
             
                    author = {Henrico Brum and Maria das Gra\c{c}as Volpe Nunes},
         
     |