Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	Commit 
							
							·
						
						93fab23
	
1
								Parent(s):
							
							31d9ee3
								
Disable safetensors on first model as test
Browse files
    	
        app.py
    CHANGED
    
    | @@ -32,6 +32,7 @@ vardecoder_model = AutoModelForCausalLM.from_pretrained( | |
| 32 | 
             
                "ejschwartz/resym-vardecoder", 
         | 
| 33 | 
             
                torch_dtype=torch.bfloat16,
         | 
| 34 | 
             
                device_map="auto",
         | 
|  | |
| 35 | 
             
            )
         | 
| 36 | 
             
            print("Loaded vardecoder model successfully.")
         | 
| 37 |  | 
|  | |
| 32 | 
             
                "ejschwartz/resym-vardecoder", 
         | 
| 33 | 
             
                torch_dtype=torch.bfloat16,
         | 
| 34 | 
             
                device_map="auto",
         | 
| 35 | 
            +
                use_safetensors=False
         | 
| 36 | 
             
            )
         | 
| 37 | 
             
            print("Loaded vardecoder model successfully.")
         | 
| 38 |  |