davanstrien HF Staff commited on
Commit
ed4137e
·
verified ·
1 Parent(s): 6c2f21e

Training in progress, step 578

Browse files
README.md CHANGED
@@ -31,25 +31,25 @@ model-index:
31
  type: fineweb_c_eval
32
  metrics:
33
  - type: accuracy
34
- value: 0.9189453125
35
  name: Accuracy
36
  - type: accuracy_threshold
37
- value: 0.8019241094589233
38
  name: Accuracy Threshold
39
  - type: f1
40
- value: 0.7284345047923323
41
  name: F1
42
  - type: f1_threshold
43
- value: 0.7078086137771606
44
  name: F1 Threshold
45
  - type: precision
46
- value: 0.7808219178082192
47
  name: Precision
48
  - type: recall
49
- value: 0.6826347305389222
50
  name: Recall
51
  - type: average_precision
52
- value: 0.7616596241666778
53
  name: Average Precision
54
  ---
55
 
@@ -110,7 +110,7 @@ pairs = [
110
  ]
111
  scores = model.predict(pairs)
112
  print(scores)
113
- # [0.0032 0.9999 0.0014 0.0036 0.0592]
114
 
115
  # Or rank different texts based on similarity to a single text
116
  ranks = model.rank(
@@ -161,13 +161,13 @@ You can finetune this model on your own dataset.
161
 
162
  | Metric | Value |
163
  |:----------------------|:-----------|
164
- | accuracy | 0.9189 |
165
- | accuracy_threshold | 0.8019 |
166
- | f1 | 0.7284 |
167
- | f1_threshold | 0.7078 |
168
- | precision | 0.7808 |
169
- | recall | 0.6826 |
170
- | **average_precision** | **0.7617** |
171
 
172
  <!--
173
  ## Bias, Risks and Limitations
@@ -356,6 +356,8 @@ You can finetune this model on your own dataset.
356
  </details>
357
 
358
  ### Training Logs
 
 
359
  | Epoch | Step | Training Loss | Validation Loss | fineweb_c_eval_average_precision |
360
  |:------:|:----:|:-------------:|:---------------:|:--------------------------------:|
361
  | -1 | -1 | - | - | 0.1716 |
@@ -453,12 +455,23 @@ You can finetune this model on your own dataset.
453
  | 1.7647 | 510 | 0.4394 | - | - |
454
  | 1.7855 | 516 | 0.3467 | - | - |
455
  | 1.8062 | 522 | 0.3586 | 0.6696 | 0.7617 |
 
 
 
 
 
 
 
 
 
 
456
 
 
457
 
458
  ### Training Time
459
- - **Training**: 8.5 minutes
460
- - **Evaluation**: 3.1 minutes
461
- - **Total**: 11.6 minutes
462
 
463
  ### Framework Versions
464
  - Python: 3.12.12
 
31
  type: fineweb_c_eval
32
  metrics:
33
  - type: accuracy
34
+ value: 0.9228515625
35
  name: Accuracy
36
  - type: accuracy_threshold
37
+ value: 0.8104526996612549
38
  name: Accuracy Threshold
39
  - type: f1
40
+ value: 0.7368421052631579
41
  name: F1
42
  - type: f1_threshold
43
+ value: 0.6460131406784058
44
  name: F1 Threshold
45
  - type: precision
46
+ value: 0.72
47
  name: Precision
48
  - type: recall
49
+ value: 0.7544910179640718
50
  name: Recall
51
  - type: average_precision
52
+ value: 0.7713544030397519
53
  name: Average Precision
54
  ---
55
 
 
110
  ]
111
  scores = model.predict(pairs)
112
  print(scores)
113
+ # [2.4726e-03 9.9998e-01 7.5541e-04 2.8896e-03 2.6759e-02]
114
 
115
  # Or rank different texts based on similarity to a single text
116
  ranks = model.rank(
 
161
 
162
  | Metric | Value |
163
  |:----------------------|:-----------|
164
+ | accuracy | 0.9229 |
165
+ | accuracy_threshold | 0.8105 |
166
+ | f1 | 0.7368 |
167
+ | f1_threshold | 0.646 |
168
+ | precision | 0.72 |
169
+ | recall | 0.7545 |
170
+ | **average_precision** | **0.7714** |
171
 
172
  <!--
173
  ## Bias, Risks and Limitations
 
356
  </details>
357
 
358
  ### Training Logs
359
+ <details><summary>Click to expand</summary>
360
+
361
  | Epoch | Step | Training Loss | Validation Loss | fineweb_c_eval_average_precision |
362
  |:------:|:----:|:-------------:|:---------------:|:--------------------------------:|
363
  | -1 | -1 | - | - | 0.1716 |
 
455
  | 1.7647 | 510 | 0.4394 | - | - |
456
  | 1.7855 | 516 | 0.3467 | - | - |
457
  | 1.8062 | 522 | 0.3586 | 0.6696 | 0.7617 |
458
+ | 1.8270 | 528 | 0.4339 | - | - |
459
+ | 1.8478 | 534 | 0.3417 | - | - |
460
+ | 1.8685 | 540 | 0.3653 | - | - |
461
+ | 1.8893 | 546 | 0.1870 | - | - |
462
+ | 1.9100 | 552 | 0.1759 | - | - |
463
+ | 1.9308 | 558 | 0.3405 | - | - |
464
+ | 1.9516 | 564 | 0.3644 | - | - |
465
+ | 1.9723 | 570 | 0.5313 | - | - |
466
+ | 1.9931 | 576 | 0.3601 | - | - |
467
+ | 2.0 | 578 | - | 0.6740 | 0.7714 |
468
 
469
+ </details>
470
 
471
  ### Training Time
472
+ - **Training**: 9.5 minutes
473
+ - **Evaluation**: 3.5 minutes
474
+ - **Total**: 12.9 minutes
475
 
476
  ### Framework Versions
477
  - Python: 3.12.12
eval/CrossEncoderClassificationEvaluator_fineweb_c_eval_results.csv CHANGED
@@ -8,3 +8,4 @@ epoch,steps,Accuracy,Accuracy_Threshold,F1,F1_Threshold,Precision,Recall,Average
8
  1.4048442906574394,406,0.9013671875,0.84075755,0.6757493188010899,0.49566662,0.62,0.7425149700598802,0.7125866664018541
9
  1.6055363321799307,464,0.91015625,0.92191446,0.6866666666666666,0.8624649,0.7744360902255639,0.6167664670658682,0.7401881464737206
10
  1.8062283737024223,522,0.9189453125,0.8019241,0.7284345047923323,0.7078086,0.7808219178082192,0.6826347305389222,0.7616596241666778
 
 
8
  1.4048442906574394,406,0.9013671875,0.84075755,0.6757493188010899,0.49566662,0.62,0.7425149700598802,0.7125866664018541
9
  1.6055363321799307,464,0.91015625,0.92191446,0.6866666666666666,0.8624649,0.7744360902255639,0.6167664670658682,0.7401881464737206
10
  1.8062283737024223,522,0.9189453125,0.8019241,0.7284345047923323,0.7078086,0.7808219178082192,0.6826347305389222,0.7616596241666778
11
+ 2.0,578,0.9228515625,0.8104527,0.7368421052631579,0.64601314,0.72,0.7544910179640718,0.7713544030397519
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ba4bc20c63ba86add4f0760eae2a1c4df961b98aad277e2bad94ec20e354c997
3
  size 1230138348
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0a33982fff0c9d1b33bd227837ae601b5481fe5529a80d0eb2041c9467fc40c
3
  size 1230138348