Vijayendra commited on
Commit
9de0ab3
·
verified ·
1 Parent(s): 5c6d8f1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -1
README.md CHANGED
@@ -24,7 +24,17 @@ questions = [
24
  Ask the same questions to o3-mini-high and DeepSeek R1 ( Deepseek Think mode ).
25
 
26
  # Eval @ AIME2024
27
- 70 %
 
 
 
 
 
 
 
 
 
 
28
 
29
  ## How to Use
30
 
 
24
  Ask the same questions to o3-mini-high and DeepSeek R1 ( Deepseek Think mode ).
25
 
26
  # Eval @ AIME2024
27
+
28
+ This model has been evaluated on AIME2024 with below configurations
29
+
30
+ bnb_config = BitsAndBytesConfig(
31
+ load_in_4bit=True, # 4-bit quantization
32
+ bnb_4bit_compute_dtype=torch.float16, # Use FP16 for computation
33
+ bnb_4bit_use_double_quant=True, # Enable double quantization
34
+ bnb_4bit_quant_type="nf4" # Most memory-efficient format
35
+ )
36
+
37
+ and it scored 70 % correct answers in 1st attempt.
38
 
39
  ## How to Use
40