Text Classification
Transformers
Joblib
Safetensors
multilingual
binary-classification
amis
agriculture
Instructions to use faodl/agri-utilization-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use faodl/agri-utilization-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="faodl/agri-utilization-classifier", device_map="auto")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("faodl/agri-utilization-classifier", dtype="auto", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- README.md +65 -65
- REPORT.md +65 -65
- baselines/embedding-lightgbm/embedding-lightgbm.joblib +2 -2
- baselines/embedding-lightgbm/test_predictions.csv +0 -0
- baselines/embedding-lightgbm/validation_predictions.csv +0 -0
- baselines/embedding-logistic/embedding-logistic.joblib +1 -1
- baselines/embedding-logistic/test_predictions.csv +0 -0
- baselines/embedding-logistic/validation_predictions.csv +0 -0
- baselines/embedding-svm/embedding-svm.joblib +1 -1
- baselines/embedding-svm/test_predictions.csv +0 -0
- baselines/embedding-svm/validation_predictions.csv +0 -0
- baselines/logistic/logistic_tfidf.joblib +2 -2
- baselines/logistic/test_predictions.csv +0 -0
- baselines/logistic/validation_predictions.csv +0 -0
- baselines/xgboost/test_predictions.csv +0 -0
- baselines/xgboost/validation_predictions.csv +0 -0
- baselines/xgboost/xgboost_tfidf.joblib +2 -2
- report.json +701 -701
- transformer/checkpoint-1220/config.json +1 -1
- transformer/checkpoint-1220/model.safetensors +1 -1
- transformer/checkpoint-1220/optimizer.pt +1 -1
- transformer/checkpoint-1220/rng_state.pth +1 -1
- transformer/checkpoint-1220/scaler.pt +1 -1
- transformer/checkpoint-1220/scheduler.pt +1 -1
- transformer/checkpoint-1220/trainer_state.json +245 -219
- transformer/checkpoint-1220/training_args.bin +1 -1
- transformer/checkpoint-1525/config.json +1 -1
- transformer/checkpoint-1525/model.safetensors +1 -1
- transformer/checkpoint-1525/optimizer.pt +1 -1
- transformer/checkpoint-1525/scaler.pt +1 -1
- transformer/checkpoint-1525/trainer_state.json +170 -170
- transformer/checkpoint-1525/training_args.bin +2 -2
- transformer/checkpoint-305/config.json +1 -1
- transformer/checkpoint-305/model.safetensors +1 -1
- transformer/checkpoint-305/optimizer.pt +1 -1
- transformer/checkpoint-305/scaler.pt +1 -1
- transformer/checkpoint-305/trainer_state.json +34 -34
- transformer/checkpoint-305/training_args.bin +2 -2
- transformer/checkpoint-610/config.json +1 -1
- transformer/checkpoint-610/model.safetensors +1 -1
- transformer/checkpoint-610/optimizer.pt +1 -1
- transformer/checkpoint-610/rng_state.pth +1 -1
- transformer/checkpoint-610/scaler.pt +1 -1
- transformer/checkpoint-610/scheduler.pt +1 -1
- transformer/checkpoint-610/trainer_state.json +123 -110
- transformer/checkpoint-610/training_args.bin +1 -1
- transformer/checkpoint-915/config.json +1 -1
- transformer/checkpoint-915/model.safetensors +1 -1
- transformer/checkpoint-915/optimizer.pt +1 -1
- transformer/checkpoint-915/scaler.pt +1 -1
README.md
CHANGED
|
@@ -17,19 +17,19 @@ It includes the Transformer model, any configured TF-IDF or sentence-embedding b
|
|
| 17 |
|
| 18 |
- Dataset: `faodl/amis-agri-utilization`
|
| 19 |
- Dataset subset: ``
|
| 20 |
-
- Dataset revision: `
|
| 21 |
- Text column: `chunk_text`
|
| 22 |
- Label column: `label`
|
| 23 |
- Transformer: `FacebookAI/xlm-roberta-base`
|
| 24 |
-
- Generated at: `2026-06-
|
| 25 |
|
| 26 |
## Dataset Summary
|
| 27 |
|
| 28 |
| Split | Rows | Label 0 | Label 1 | Unique groups | Mean text length |
|
| 29 |
| --- | ---: | ---: | ---: | ---: | ---: |
|
| 30 |
-
| train |
|
| 31 |
-
| validation |
|
| 32 |
-
| test |
|
| 33 |
|
| 34 |
## Threshold Comparison on Validation Split
|
| 35 |
|
|
@@ -37,35 +37,35 @@ Validation metrics document threshold selection and tuning behavior; test metric
|
|
| 37 |
|
| 38 |
| Model | Threshold | Accuracy | Precision | Recall | F1 | ROC AUC | Average precision |
|
| 39 |
| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
|
| 40 |
-
| logistic_tfidf | 0.500 | 0.
|
| 41 |
-
| logistic_tfidf | 0.
|
| 42 |
-
| xgboost_tfidf | 0.500 | 0.
|
| 43 |
-
| xgboost_tfidf | 0.
|
| 44 |
-
| embedding-logistic_sentence_embeddings | 0.500 | 0.
|
| 45 |
-
| embedding-logistic_sentence_embeddings | 0.
|
| 46 |
-
| embedding-svm_sentence_embeddings | 0.500 | 0.
|
| 47 |
-
| embedding-svm_sentence_embeddings | 0.
|
| 48 |
-
| embedding-lightgbm_sentence_embeddings | 0.500 | 0.
|
| 49 |
-
| embedding-lightgbm_sentence_embeddings | 0.
|
| 50 |
-
| transformer | 0.500 | 0.
|
| 51 |
-
| transformer | 0.
|
| 52 |
|
| 53 |
## Threshold Comparison on Test Split
|
| 54 |
|
| 55 |
| Model | Threshold | Accuracy | Precision | Recall | F1 | ROC AUC | Average precision |
|
| 56 |
| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
|
| 57 |
-
| logistic_tfidf | 0.500 | 0.
|
| 58 |
-
| logistic_tfidf | 0.
|
| 59 |
-
| xgboost_tfidf | 0.500 | 0.
|
| 60 |
-
| xgboost_tfidf | 0.
|
| 61 |
-
| embedding-logistic_sentence_embeddings | 0.500 | 0.891 | 0.
|
| 62 |
-
| embedding-logistic_sentence_embeddings | 0.
|
| 63 |
-
| embedding-svm_sentence_embeddings | 0.500 | 0.
|
| 64 |
-
| embedding-svm_sentence_embeddings | 0.
|
| 65 |
-
| embedding-lightgbm_sentence_embeddings | 0.500 | 0.
|
| 66 |
-
| embedding-lightgbm_sentence_embeddings | 0.
|
| 67 |
-
| transformer | 0.500 | 0.
|
| 68 |
-
| transformer | 0.
|
| 69 |
|
| 70 |
## Confusion Matrices on Test Split
|
| 71 |
|
|
@@ -75,95 +75,95 @@ Rows are true labels and columns are predicted labels.
|
|
| 75 |
|
| 76 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 77 |
| --- | ---: | ---: |
|
| 78 |
-
| NOT_RELEVANT |
|
| 79 |
-
| RELEVANT |
|
| 80 |
|
| 81 |
-
### logistic_tfidf at threshold 0.
|
| 82 |
|
| 83 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 84 |
| --- | ---: | ---: |
|
| 85 |
-
| NOT_RELEVANT |
|
| 86 |
-
| RELEVANT |
|
| 87 |
|
| 88 |
### xgboost_tfidf at threshold 0.500
|
| 89 |
|
| 90 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 91 |
| --- | ---: | ---: |
|
| 92 |
-
| NOT_RELEVANT |
|
| 93 |
-
| RELEVANT |
|
| 94 |
|
| 95 |
-
### xgboost_tfidf at threshold 0.
|
| 96 |
|
| 97 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 98 |
| --- | ---: | ---: |
|
| 99 |
-
| NOT_RELEVANT |
|
| 100 |
-
| RELEVANT |
|
| 101 |
|
| 102 |
### embedding-logistic_sentence_embeddings at threshold 0.500
|
| 103 |
|
| 104 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 105 |
| --- | ---: | ---: |
|
| 106 |
-
| NOT_RELEVANT |
|
| 107 |
-
| RELEVANT |
|
| 108 |
|
| 109 |
-
### embedding-logistic_sentence_embeddings at threshold 0.
|
| 110 |
|
| 111 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 112 |
| --- | ---: | ---: |
|
| 113 |
-
| NOT_RELEVANT |
|
| 114 |
-
| RELEVANT |
|
| 115 |
|
| 116 |
### embedding-svm_sentence_embeddings at threshold 0.500
|
| 117 |
|
| 118 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 119 |
| --- | ---: | ---: |
|
| 120 |
-
| NOT_RELEVANT |
|
| 121 |
-
| RELEVANT |
|
| 122 |
|
| 123 |
-
### embedding-svm_sentence_embeddings at threshold 0.
|
| 124 |
|
| 125 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 126 |
| --- | ---: | ---: |
|
| 127 |
-
| NOT_RELEVANT |
|
| 128 |
-
| RELEVANT |
|
| 129 |
|
| 130 |
### embedding-lightgbm_sentence_embeddings at threshold 0.500
|
| 131 |
|
| 132 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 133 |
| --- | ---: | ---: |
|
| 134 |
-
| NOT_RELEVANT |
|
| 135 |
-
| RELEVANT |
|
| 136 |
|
| 137 |
-
### embedding-lightgbm_sentence_embeddings at threshold 0.
|
| 138 |
|
| 139 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 140 |
| --- | ---: | ---: |
|
| 141 |
-
| NOT_RELEVANT |
|
| 142 |
-
| RELEVANT |
|
| 143 |
|
| 144 |
### transformer at threshold 0.500
|
| 145 |
|
| 146 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 147 |
| --- | ---: | ---: |
|
| 148 |
-
| NOT_RELEVANT |
|
| 149 |
-
| RELEVANT |
|
| 150 |
|
| 151 |
-
### transformer at threshold 0.
|
| 152 |
|
| 153 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 154 |
| --- | ---: | ---: |
|
| 155 |
-
| NOT_RELEVANT |
|
| 156 |
-
| RELEVANT |
|
| 157 |
|
| 158 |
|
| 159 |
## Validation-Tuned Thresholds
|
| 160 |
|
| 161 |
-
- `logistic_tfidf`: threshold `0.
|
| 162 |
-
- `xgboost_tfidf`: threshold `0.
|
| 163 |
-
- `embedding-logistic_sentence_embeddings`: threshold `0.
|
| 164 |
-
- `embedding-svm_sentence_embeddings`: threshold `0.
|
| 165 |
-
- `embedding-lightgbm_sentence_embeddings`: threshold `0.
|
| 166 |
-
- `transformer`: threshold `0.
|
| 167 |
|
| 168 |
## Artifacts
|
| 169 |
|
|
|
|
| 17 |
|
| 18 |
- Dataset: `faodl/amis-agri-utilization`
|
| 19 |
- Dataset subset: ``
|
| 20 |
+
- Dataset revision: `ada4a04088a98f8f64bc7485c57d4c7f422c2151`
|
| 21 |
- Text column: `chunk_text`
|
| 22 |
- Label column: `label`
|
| 23 |
- Transformer: `FacebookAI/xlm-roberta-base`
|
| 24 |
+
- Generated at: `2026-06-10T20:30:54.345579+00:00`
|
| 25 |
|
| 26 |
## Dataset Summary
|
| 27 |
|
| 28 |
| Split | Rows | Label 0 | Label 1 | Unique groups | Mean text length |
|
| 29 |
| --- | ---: | ---: | ---: | ---: | ---: |
|
| 30 |
+
| train | 4877 | 4347 | 530 | 2513 | 696.6 |
|
| 31 |
+
| validation | 978 | 899 | 79 | 538 | 690.6 |
|
| 32 |
+
| test | 1016 | 904 | 112 | 539 | 690.7 |
|
| 33 |
|
| 34 |
## Threshold Comparison on Validation Split
|
| 35 |
|
|
|
|
| 37 |
|
| 38 |
| Model | Threshold | Accuracy | Precision | Recall | F1 | ROC AUC | Average precision |
|
| 39 |
| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
|
| 40 |
+
| logistic_tfidf | 0.500 | 0.912 | 0.465 | 0.582 | 0.517 | 0.872 | 0.594 |
|
| 41 |
+
| logistic_tfidf | 0.608 | 0.942 | 0.696 | 0.494 | 0.578 | 0.872 | 0.594 |
|
| 42 |
+
| xgboost_tfidf | 0.500 | 0.945 | 0.931 | 0.342 | 0.500 | 0.823 | 0.588 |
|
| 43 |
+
| xgboost_tfidf | 0.177 | 0.934 | 0.592 | 0.570 | 0.581 | 0.823 | 0.588 |
|
| 44 |
+
| embedding-logistic_sentence_embeddings | 0.500 | 0.912 | 0.476 | 0.861 | 0.613 | 0.953 | 0.762 |
|
| 45 |
+
| embedding-logistic_sentence_embeddings | 0.722 | 0.957 | 0.703 | 0.810 | 0.753 | 0.953 | 0.762 |
|
| 46 |
+
| embedding-svm_sentence_embeddings | 0.500 | 0.955 | 0.807 | 0.582 | 0.676 | 0.952 | 0.754 |
|
| 47 |
+
| embedding-svm_sentence_embeddings | 0.310 | 0.957 | 0.713 | 0.785 | 0.747 | 0.952 | 0.754 |
|
| 48 |
+
| embedding-lightgbm_sentence_embeddings | 0.500 | 0.954 | 0.750 | 0.646 | 0.694 | 0.948 | 0.782 |
|
| 49 |
+
| embedding-lightgbm_sentence_embeddings | 0.042 | 0.952 | 0.670 | 0.797 | 0.728 | 0.948 | 0.782 |
|
| 50 |
+
| transformer | 0.500 | 0.964 | 0.739 | 0.861 | 0.795 | 0.970 | 0.874 |
|
| 51 |
+
| transformer | 0.853 | 0.970 | 0.812 | 0.823 | 0.818 | 0.970 | 0.874 |
|
| 52 |
|
| 53 |
## Threshold Comparison on Test Split
|
| 54 |
|
| 55 |
| Model | Threshold | Accuracy | Precision | Recall | F1 | ROC AUC | Average precision |
|
| 56 |
| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
|
| 57 |
+
| logistic_tfidf | 0.500 | 0.926 | 0.691 | 0.598 | 0.641 | 0.899 | 0.726 |
|
| 58 |
+
| logistic_tfidf | 0.608 | 0.930 | 0.902 | 0.411 | 0.564 | 0.899 | 0.726 |
|
| 59 |
+
| xgboost_tfidf | 0.500 | 0.924 | 1.000 | 0.312 | 0.476 | 0.892 | 0.692 |
|
| 60 |
+
| xgboost_tfidf | 0.177 | 0.918 | 0.663 | 0.527 | 0.587 | 0.892 | 0.692 |
|
| 61 |
+
| embedding-logistic_sentence_embeddings | 0.500 | 0.891 | 0.503 | 0.884 | 0.641 | 0.955 | 0.710 |
|
| 62 |
+
| embedding-logistic_sentence_embeddings | 0.722 | 0.935 | 0.689 | 0.750 | 0.718 | 0.955 | 0.710 |
|
| 63 |
+
| embedding-svm_sentence_embeddings | 0.500 | 0.930 | 0.741 | 0.562 | 0.640 | 0.956 | 0.704 |
|
| 64 |
+
| embedding-svm_sentence_embeddings | 0.310 | 0.934 | 0.686 | 0.741 | 0.712 | 0.956 | 0.704 |
|
| 65 |
+
| embedding-lightgbm_sentence_embeddings | 0.500 | 0.937 | 0.740 | 0.661 | 0.698 | 0.960 | 0.791 |
|
| 66 |
+
| embedding-lightgbm_sentence_embeddings | 0.042 | 0.929 | 0.639 | 0.821 | 0.719 | 0.960 | 0.791 |
|
| 67 |
+
| transformer | 0.500 | 0.939 | 0.689 | 0.812 | 0.746 | 0.968 | 0.794 |
|
| 68 |
+
| transformer | 0.853 | 0.947 | 0.754 | 0.768 | 0.761 | 0.968 | 0.794 |
|
| 69 |
|
| 70 |
## Confusion Matrices on Test Split
|
| 71 |
|
|
|
|
| 75 |
|
| 76 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 77 |
| --- | ---: | ---: |
|
| 78 |
+
| NOT_RELEVANT | 874 | 30 |
|
| 79 |
+
| RELEVANT | 45 | 67 |
|
| 80 |
|
| 81 |
+
### logistic_tfidf at threshold 0.608
|
| 82 |
|
| 83 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 84 |
| --- | ---: | ---: |
|
| 85 |
+
| NOT_RELEVANT | 899 | 5 |
|
| 86 |
+
| RELEVANT | 66 | 46 |
|
| 87 |
|
| 88 |
### xgboost_tfidf at threshold 0.500
|
| 89 |
|
| 90 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 91 |
| --- | ---: | ---: |
|
| 92 |
+
| NOT_RELEVANT | 904 | 0 |
|
| 93 |
+
| RELEVANT | 77 | 35 |
|
| 94 |
|
| 95 |
+
### xgboost_tfidf at threshold 0.177
|
| 96 |
|
| 97 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 98 |
| --- | ---: | ---: |
|
| 99 |
+
| NOT_RELEVANT | 874 | 30 |
|
| 100 |
+
| RELEVANT | 53 | 59 |
|
| 101 |
|
| 102 |
### embedding-logistic_sentence_embeddings at threshold 0.500
|
| 103 |
|
| 104 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 105 |
| --- | ---: | ---: |
|
| 106 |
+
| NOT_RELEVANT | 806 | 98 |
|
| 107 |
+
| RELEVANT | 13 | 99 |
|
| 108 |
|
| 109 |
+
### embedding-logistic_sentence_embeddings at threshold 0.722
|
| 110 |
|
| 111 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 112 |
| --- | ---: | ---: |
|
| 113 |
+
| NOT_RELEVANT | 866 | 38 |
|
| 114 |
+
| RELEVANT | 28 | 84 |
|
| 115 |
|
| 116 |
### embedding-svm_sentence_embeddings at threshold 0.500
|
| 117 |
|
| 118 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 119 |
| --- | ---: | ---: |
|
| 120 |
+
| NOT_RELEVANT | 882 | 22 |
|
| 121 |
+
| RELEVANT | 49 | 63 |
|
| 122 |
|
| 123 |
+
### embedding-svm_sentence_embeddings at threshold 0.310
|
| 124 |
|
| 125 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 126 |
| --- | ---: | ---: |
|
| 127 |
+
| NOT_RELEVANT | 866 | 38 |
|
| 128 |
+
| RELEVANT | 29 | 83 |
|
| 129 |
|
| 130 |
### embedding-lightgbm_sentence_embeddings at threshold 0.500
|
| 131 |
|
| 132 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 133 |
| --- | ---: | ---: |
|
| 134 |
+
| NOT_RELEVANT | 878 | 26 |
|
| 135 |
+
| RELEVANT | 38 | 74 |
|
| 136 |
|
| 137 |
+
### embedding-lightgbm_sentence_embeddings at threshold 0.042
|
| 138 |
|
| 139 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 140 |
| --- | ---: | ---: |
|
| 141 |
+
| NOT_RELEVANT | 852 | 52 |
|
| 142 |
+
| RELEVANT | 20 | 92 |
|
| 143 |
|
| 144 |
### transformer at threshold 0.500
|
| 145 |
|
| 146 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 147 |
| --- | ---: | ---: |
|
| 148 |
+
| NOT_RELEVANT | 863 | 41 |
|
| 149 |
+
| RELEVANT | 21 | 91 |
|
| 150 |
|
| 151 |
+
### transformer at threshold 0.853
|
| 152 |
|
| 153 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 154 |
| --- | ---: | ---: |
|
| 155 |
+
| NOT_RELEVANT | 876 | 28 |
|
| 156 |
+
| RELEVANT | 26 | 86 |
|
| 157 |
|
| 158 |
|
| 159 |
## Validation-Tuned Thresholds
|
| 160 |
|
| 161 |
+
- `logistic_tfidf`: threshold `0.608` (validation F1 `0.578`); test F1 change vs 0.5: `-0.077`.
|
| 162 |
+
- `xgboost_tfidf`: threshold `0.177` (validation F1 `0.581`); test F1 change vs 0.5: `+0.111`.
|
| 163 |
+
- `embedding-logistic_sentence_embeddings`: threshold `0.722` (validation F1 `0.753`); test F1 change vs 0.5: `+0.077`.
|
| 164 |
+
- `embedding-svm_sentence_embeddings`: threshold `0.310` (validation F1 `0.747`); test F1 change vs 0.5: `+0.073`.
|
| 165 |
+
- `embedding-lightgbm_sentence_embeddings`: threshold `0.042` (validation F1 `0.728`); test F1 change vs 0.5: `+0.021`.
|
| 166 |
+
- `transformer`: threshold `0.853` (validation F1 `0.818`); test F1 change vs 0.5: `+0.015`.
|
| 167 |
|
| 168 |
## Artifacts
|
| 169 |
|
REPORT.md
CHANGED
|
@@ -2,19 +2,19 @@
|
|
| 2 |
|
| 3 |
- Dataset: `faodl/amis-agri-utilization`
|
| 4 |
- Dataset subset: ``
|
| 5 |
-
- Dataset revision: `
|
| 6 |
- Text column: `chunk_text`
|
| 7 |
- Label column: `label`
|
| 8 |
- Transformer: `FacebookAI/xlm-roberta-base`
|
| 9 |
-
- Generated at: `2026-06-
|
| 10 |
|
| 11 |
## Dataset Summary
|
| 12 |
|
| 13 |
| Split | Rows | Label 0 | Label 1 | Unique groups | Mean text length |
|
| 14 |
| --- | ---: | ---: | ---: | ---: | ---: |
|
| 15 |
-
| train |
|
| 16 |
-
| validation |
|
| 17 |
-
| test |
|
| 18 |
|
| 19 |
## Threshold Comparison on Validation Split
|
| 20 |
|
|
@@ -22,35 +22,35 @@ Validation metrics document threshold selection and tuning behavior; test metric
|
|
| 22 |
|
| 23 |
| Model | Threshold | Accuracy | Precision | Recall | F1 | ROC AUC | Average precision |
|
| 24 |
| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
|
| 25 |
-
| logistic_tfidf | 0.500 | 0.
|
| 26 |
-
| logistic_tfidf | 0.
|
| 27 |
-
| xgboost_tfidf | 0.500 | 0.
|
| 28 |
-
| xgboost_tfidf | 0.
|
| 29 |
-
| embedding-logistic_sentence_embeddings | 0.500 | 0.
|
| 30 |
-
| embedding-logistic_sentence_embeddings | 0.
|
| 31 |
-
| embedding-svm_sentence_embeddings | 0.500 | 0.
|
| 32 |
-
| embedding-svm_sentence_embeddings | 0.
|
| 33 |
-
| embedding-lightgbm_sentence_embeddings | 0.500 | 0.
|
| 34 |
-
| embedding-lightgbm_sentence_embeddings | 0.
|
| 35 |
-
| transformer | 0.500 | 0.
|
| 36 |
-
| transformer | 0.
|
| 37 |
|
| 38 |
## Threshold Comparison on Test Split
|
| 39 |
|
| 40 |
| Model | Threshold | Accuracy | Precision | Recall | F1 | ROC AUC | Average precision |
|
| 41 |
| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
|
| 42 |
-
| logistic_tfidf | 0.500 | 0.
|
| 43 |
-
| logistic_tfidf | 0.
|
| 44 |
-
| xgboost_tfidf | 0.500 | 0.
|
| 45 |
-
| xgboost_tfidf | 0.
|
| 46 |
-
| embedding-logistic_sentence_embeddings | 0.500 | 0.891 | 0.
|
| 47 |
-
| embedding-logistic_sentence_embeddings | 0.
|
| 48 |
-
| embedding-svm_sentence_embeddings | 0.500 | 0.
|
| 49 |
-
| embedding-svm_sentence_embeddings | 0.
|
| 50 |
-
| embedding-lightgbm_sentence_embeddings | 0.500 | 0.
|
| 51 |
-
| embedding-lightgbm_sentence_embeddings | 0.
|
| 52 |
-
| transformer | 0.500 | 0.
|
| 53 |
-
| transformer | 0.
|
| 54 |
|
| 55 |
## Confusion Matrices on Test Split
|
| 56 |
|
|
@@ -60,95 +60,95 @@ Rows are true labels and columns are predicted labels.
|
|
| 60 |
|
| 61 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 62 |
| --- | ---: | ---: |
|
| 63 |
-
| NOT_RELEVANT |
|
| 64 |
-
| RELEVANT |
|
| 65 |
|
| 66 |
-
### logistic_tfidf at threshold 0.
|
| 67 |
|
| 68 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 69 |
| --- | ---: | ---: |
|
| 70 |
-
| NOT_RELEVANT |
|
| 71 |
-
| RELEVANT |
|
| 72 |
|
| 73 |
### xgboost_tfidf at threshold 0.500
|
| 74 |
|
| 75 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 76 |
| --- | ---: | ---: |
|
| 77 |
-
| NOT_RELEVANT |
|
| 78 |
-
| RELEVANT |
|
| 79 |
|
| 80 |
-
### xgboost_tfidf at threshold 0.
|
| 81 |
|
| 82 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 83 |
| --- | ---: | ---: |
|
| 84 |
-
| NOT_RELEVANT |
|
| 85 |
-
| RELEVANT |
|
| 86 |
|
| 87 |
### embedding-logistic_sentence_embeddings at threshold 0.500
|
| 88 |
|
| 89 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 90 |
| --- | ---: | ---: |
|
| 91 |
-
| NOT_RELEVANT |
|
| 92 |
-
| RELEVANT |
|
| 93 |
|
| 94 |
-
### embedding-logistic_sentence_embeddings at threshold 0.
|
| 95 |
|
| 96 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 97 |
| --- | ---: | ---: |
|
| 98 |
-
| NOT_RELEVANT |
|
| 99 |
-
| RELEVANT |
|
| 100 |
|
| 101 |
### embedding-svm_sentence_embeddings at threshold 0.500
|
| 102 |
|
| 103 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 104 |
| --- | ---: | ---: |
|
| 105 |
-
| NOT_RELEVANT |
|
| 106 |
-
| RELEVANT |
|
| 107 |
|
| 108 |
-
### embedding-svm_sentence_embeddings at threshold 0.
|
| 109 |
|
| 110 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 111 |
| --- | ---: | ---: |
|
| 112 |
-
| NOT_RELEVANT |
|
| 113 |
-
| RELEVANT |
|
| 114 |
|
| 115 |
### embedding-lightgbm_sentence_embeddings at threshold 0.500
|
| 116 |
|
| 117 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 118 |
| --- | ---: | ---: |
|
| 119 |
-
| NOT_RELEVANT |
|
| 120 |
-
| RELEVANT |
|
| 121 |
|
| 122 |
-
### embedding-lightgbm_sentence_embeddings at threshold 0.
|
| 123 |
|
| 124 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 125 |
| --- | ---: | ---: |
|
| 126 |
-
| NOT_RELEVANT |
|
| 127 |
-
| RELEVANT |
|
| 128 |
|
| 129 |
### transformer at threshold 0.500
|
| 130 |
|
| 131 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 132 |
| --- | ---: | ---: |
|
| 133 |
-
| NOT_RELEVANT |
|
| 134 |
-
| RELEVANT |
|
| 135 |
|
| 136 |
-
### transformer at threshold 0.
|
| 137 |
|
| 138 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 139 |
| --- | ---: | ---: |
|
| 140 |
-
| NOT_RELEVANT |
|
| 141 |
-
| RELEVANT |
|
| 142 |
|
| 143 |
|
| 144 |
## Validation-Tuned Thresholds
|
| 145 |
|
| 146 |
-
- `logistic_tfidf`: threshold `0.
|
| 147 |
-
- `xgboost_tfidf`: threshold `0.
|
| 148 |
-
- `embedding-logistic_sentence_embeddings`: threshold `0.
|
| 149 |
-
- `embedding-svm_sentence_embeddings`: threshold `0.
|
| 150 |
-
- `embedding-lightgbm_sentence_embeddings`: threshold `0.
|
| 151 |
-
- `transformer`: threshold `0.
|
| 152 |
|
| 153 |
## Artifacts
|
| 154 |
|
|
|
|
| 2 |
|
| 3 |
- Dataset: `faodl/amis-agri-utilization`
|
| 4 |
- Dataset subset: ``
|
| 5 |
+
- Dataset revision: `ada4a04088a98f8f64bc7485c57d4c7f422c2151`
|
| 6 |
- Text column: `chunk_text`
|
| 7 |
- Label column: `label`
|
| 8 |
- Transformer: `FacebookAI/xlm-roberta-base`
|
| 9 |
+
- Generated at: `2026-06-10T20:30:54.345579+00:00`
|
| 10 |
|
| 11 |
## Dataset Summary
|
| 12 |
|
| 13 |
| Split | Rows | Label 0 | Label 1 | Unique groups | Mean text length |
|
| 14 |
| --- | ---: | ---: | ---: | ---: | ---: |
|
| 15 |
+
| train | 4877 | 4347 | 530 | 2513 | 696.6 |
|
| 16 |
+
| validation | 978 | 899 | 79 | 538 | 690.6 |
|
| 17 |
+
| test | 1016 | 904 | 112 | 539 | 690.7 |
|
| 18 |
|
| 19 |
## Threshold Comparison on Validation Split
|
| 20 |
|
|
|
|
| 22 |
|
| 23 |
| Model | Threshold | Accuracy | Precision | Recall | F1 | ROC AUC | Average precision |
|
| 24 |
| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
|
| 25 |
+
| logistic_tfidf | 0.500 | 0.912 | 0.465 | 0.582 | 0.517 | 0.872 | 0.594 |
|
| 26 |
+
| logistic_tfidf | 0.608 | 0.942 | 0.696 | 0.494 | 0.578 | 0.872 | 0.594 |
|
| 27 |
+
| xgboost_tfidf | 0.500 | 0.945 | 0.931 | 0.342 | 0.500 | 0.823 | 0.588 |
|
| 28 |
+
| xgboost_tfidf | 0.177 | 0.934 | 0.592 | 0.570 | 0.581 | 0.823 | 0.588 |
|
| 29 |
+
| embedding-logistic_sentence_embeddings | 0.500 | 0.912 | 0.476 | 0.861 | 0.613 | 0.953 | 0.762 |
|
| 30 |
+
| embedding-logistic_sentence_embeddings | 0.722 | 0.957 | 0.703 | 0.810 | 0.753 | 0.953 | 0.762 |
|
| 31 |
+
| embedding-svm_sentence_embeddings | 0.500 | 0.955 | 0.807 | 0.582 | 0.676 | 0.952 | 0.754 |
|
| 32 |
+
| embedding-svm_sentence_embeddings | 0.310 | 0.957 | 0.713 | 0.785 | 0.747 | 0.952 | 0.754 |
|
| 33 |
+
| embedding-lightgbm_sentence_embeddings | 0.500 | 0.954 | 0.750 | 0.646 | 0.694 | 0.948 | 0.782 |
|
| 34 |
+
| embedding-lightgbm_sentence_embeddings | 0.042 | 0.952 | 0.670 | 0.797 | 0.728 | 0.948 | 0.782 |
|
| 35 |
+
| transformer | 0.500 | 0.964 | 0.739 | 0.861 | 0.795 | 0.970 | 0.874 |
|
| 36 |
+
| transformer | 0.853 | 0.970 | 0.812 | 0.823 | 0.818 | 0.970 | 0.874 |
|
| 37 |
|
| 38 |
## Threshold Comparison on Test Split
|
| 39 |
|
| 40 |
| Model | Threshold | Accuracy | Precision | Recall | F1 | ROC AUC | Average precision |
|
| 41 |
| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
|
| 42 |
+
| logistic_tfidf | 0.500 | 0.926 | 0.691 | 0.598 | 0.641 | 0.899 | 0.726 |
|
| 43 |
+
| logistic_tfidf | 0.608 | 0.930 | 0.902 | 0.411 | 0.564 | 0.899 | 0.726 |
|
| 44 |
+
| xgboost_tfidf | 0.500 | 0.924 | 1.000 | 0.312 | 0.476 | 0.892 | 0.692 |
|
| 45 |
+
| xgboost_tfidf | 0.177 | 0.918 | 0.663 | 0.527 | 0.587 | 0.892 | 0.692 |
|
| 46 |
+
| embedding-logistic_sentence_embeddings | 0.500 | 0.891 | 0.503 | 0.884 | 0.641 | 0.955 | 0.710 |
|
| 47 |
+
| embedding-logistic_sentence_embeddings | 0.722 | 0.935 | 0.689 | 0.750 | 0.718 | 0.955 | 0.710 |
|
| 48 |
+
| embedding-svm_sentence_embeddings | 0.500 | 0.930 | 0.741 | 0.562 | 0.640 | 0.956 | 0.704 |
|
| 49 |
+
| embedding-svm_sentence_embeddings | 0.310 | 0.934 | 0.686 | 0.741 | 0.712 | 0.956 | 0.704 |
|
| 50 |
+
| embedding-lightgbm_sentence_embeddings | 0.500 | 0.937 | 0.740 | 0.661 | 0.698 | 0.960 | 0.791 |
|
| 51 |
+
| embedding-lightgbm_sentence_embeddings | 0.042 | 0.929 | 0.639 | 0.821 | 0.719 | 0.960 | 0.791 |
|
| 52 |
+
| transformer | 0.500 | 0.939 | 0.689 | 0.812 | 0.746 | 0.968 | 0.794 |
|
| 53 |
+
| transformer | 0.853 | 0.947 | 0.754 | 0.768 | 0.761 | 0.968 | 0.794 |
|
| 54 |
|
| 55 |
## Confusion Matrices on Test Split
|
| 56 |
|
|
|
|
| 60 |
|
| 61 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 62 |
| --- | ---: | ---: |
|
| 63 |
+
| NOT_RELEVANT | 874 | 30 |
|
| 64 |
+
| RELEVANT | 45 | 67 |
|
| 65 |
|
| 66 |
+
### logistic_tfidf at threshold 0.608
|
| 67 |
|
| 68 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 69 |
| --- | ---: | ---: |
|
| 70 |
+
| NOT_RELEVANT | 899 | 5 |
|
| 71 |
+
| RELEVANT | 66 | 46 |
|
| 72 |
|
| 73 |
### xgboost_tfidf at threshold 0.500
|
| 74 |
|
| 75 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 76 |
| --- | ---: | ---: |
|
| 77 |
+
| NOT_RELEVANT | 904 | 0 |
|
| 78 |
+
| RELEVANT | 77 | 35 |
|
| 79 |
|
| 80 |
+
### xgboost_tfidf at threshold 0.177
|
| 81 |
|
| 82 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 83 |
| --- | ---: | ---: |
|
| 84 |
+
| NOT_RELEVANT | 874 | 30 |
|
| 85 |
+
| RELEVANT | 53 | 59 |
|
| 86 |
|
| 87 |
### embedding-logistic_sentence_embeddings at threshold 0.500
|
| 88 |
|
| 89 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 90 |
| --- | ---: | ---: |
|
| 91 |
+
| NOT_RELEVANT | 806 | 98 |
|
| 92 |
+
| RELEVANT | 13 | 99 |
|
| 93 |
|
| 94 |
+
### embedding-logistic_sentence_embeddings at threshold 0.722
|
| 95 |
|
| 96 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 97 |
| --- | ---: | ---: |
|
| 98 |
+
| NOT_RELEVANT | 866 | 38 |
|
| 99 |
+
| RELEVANT | 28 | 84 |
|
| 100 |
|
| 101 |
### embedding-svm_sentence_embeddings at threshold 0.500
|
| 102 |
|
| 103 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 104 |
| --- | ---: | ---: |
|
| 105 |
+
| NOT_RELEVANT | 882 | 22 |
|
| 106 |
+
| RELEVANT | 49 | 63 |
|
| 107 |
|
| 108 |
+
### embedding-svm_sentence_embeddings at threshold 0.310
|
| 109 |
|
| 110 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 111 |
| --- | ---: | ---: |
|
| 112 |
+
| NOT_RELEVANT | 866 | 38 |
|
| 113 |
+
| RELEVANT | 29 | 83 |
|
| 114 |
|
| 115 |
### embedding-lightgbm_sentence_embeddings at threshold 0.500
|
| 116 |
|
| 117 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 118 |
| --- | ---: | ---: |
|
| 119 |
+
| NOT_RELEVANT | 878 | 26 |
|
| 120 |
+
| RELEVANT | 38 | 74 |
|
| 121 |
|
| 122 |
+
### embedding-lightgbm_sentence_embeddings at threshold 0.042
|
| 123 |
|
| 124 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 125 |
| --- | ---: | ---: |
|
| 126 |
+
| NOT_RELEVANT | 852 | 52 |
|
| 127 |
+
| RELEVANT | 20 | 92 |
|
| 128 |
|
| 129 |
### transformer at threshold 0.500
|
| 130 |
|
| 131 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 132 |
| --- | ---: | ---: |
|
| 133 |
+
| NOT_RELEVANT | 863 | 41 |
|
| 134 |
+
| RELEVANT | 21 | 91 |
|
| 135 |
|
| 136 |
+
### transformer at threshold 0.853
|
| 137 |
|
| 138 |
| True / Predicted | NOT_RELEVANT | RELEVANT |
|
| 139 |
| --- | ---: | ---: |
|
| 140 |
+
| NOT_RELEVANT | 876 | 28 |
|
| 141 |
+
| RELEVANT | 26 | 86 |
|
| 142 |
|
| 143 |
|
| 144 |
## Validation-Tuned Thresholds
|
| 145 |
|
| 146 |
+
- `logistic_tfidf`: threshold `0.608` (validation F1 `0.578`); test F1 change vs 0.5: `-0.077`.
|
| 147 |
+
- `xgboost_tfidf`: threshold `0.177` (validation F1 `0.581`); test F1 change vs 0.5: `+0.111`.
|
| 148 |
+
- `embedding-logistic_sentence_embeddings`: threshold `0.722` (validation F1 `0.753`); test F1 change vs 0.5: `+0.077`.
|
| 149 |
+
- `embedding-svm_sentence_embeddings`: threshold `0.310` (validation F1 `0.747`); test F1 change vs 0.5: `+0.073`.
|
| 150 |
+
- `embedding-lightgbm_sentence_embeddings`: threshold `0.042` (validation F1 `0.728`); test F1 change vs 0.5: `+0.021`.
|
| 151 |
+
- `transformer`: threshold `0.853` (validation F1 `0.818`); test F1 change vs 0.5: `+0.015`.
|
| 152 |
|
| 153 |
## Artifacts
|
| 154 |
|
baselines/embedding-lightgbm/embedding-lightgbm.joblib
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd6e30e9c53958ba42b02d1a0150b91e5c23d36fc82445c7ed516b22dee5f9d1
|
| 3 |
+
size 1467646
|
baselines/embedding-lightgbm/test_predictions.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
baselines/embedding-lightgbm/validation_predictions.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
baselines/embedding-logistic/embedding-logistic.joblib
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2821
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30ade5804a0c845cd607a9afb04121469038df50a7a100a5795b319459b40062
|
| 3 |
size 2821
|
baselines/embedding-logistic/test_predictions.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
baselines/embedding-logistic/validation_predictions.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
baselines/embedding-svm/embedding-svm.joblib
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 11770
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:592b7dfd37f4775bb65762c215024df43ccd2750c339de5872bf313e1d84e8e9
|
| 3 |
size 11770
|
baselines/embedding-svm/test_predictions.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
baselines/embedding-svm/validation_predictions.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
baselines/logistic/logistic_tfidf.joblib
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a15f1ec48dc4f2e27abf6d57fdfcb238d52ec81681526fe26b70dd994e33301
|
| 3 |
+
size 2452308
|
baselines/logistic/test_predictions.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
baselines/logistic/validation_predictions.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
baselines/xgboost/test_predictions.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
baselines/xgboost/validation_predictions.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
baselines/xgboost/xgboost_tfidf.joblib
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e02cf1261c51a3e210c6fb867953bdaa2ce0ddf74af01ece28788c5bf0f2743
|
| 3 |
+
size 2494551
|
report.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
{
|
| 2 |
-
"created_at": "2026-06-
|
| 3 |
"config": {
|
| 4 |
"hf_dataset": "faodl/amis-agri-utilization",
|
| 5 |
"hf_subset": null,
|
| 6 |
-
"hf_revision": "
|
| 7 |
"train_split": "train",
|
| 8 |
"validation_split": "validation",
|
| 9 |
"test_split": "test",
|
|
@@ -44,33 +44,33 @@
|
|
| 44 |
},
|
| 45 |
"dataset_summary": {
|
| 46 |
"train": {
|
| 47 |
-
"rows":
|
| 48 |
"labels": {
|
| 49 |
-
"0":
|
| 50 |
-
"1":
|
| 51 |
},
|
| 52 |
-
"unique_groups":
|
| 53 |
-
"text_length_mean": 696.
|
| 54 |
"text_length_median": 794.0
|
| 55 |
},
|
| 56 |
"validation": {
|
| 57 |
-
"rows":
|
| 58 |
"labels": {
|
| 59 |
-
"0":
|
| 60 |
-
"1":
|
| 61 |
},
|
| 62 |
-
"unique_groups":
|
| 63 |
-
"text_length_mean":
|
| 64 |
"text_length_median": 794.0
|
| 65 |
},
|
| 66 |
"test": {
|
| 67 |
-
"rows":
|
| 68 |
"labels": {
|
| 69 |
-
"0":
|
| 70 |
-
"1":
|
| 71 |
},
|
| 72 |
-
"unique_groups":
|
| 73 |
-
"text_length_mean":
|
| 74 |
"text_length_median": 794.0
|
| 75 |
}
|
| 76 |
},
|
|
@@ -81,194 +81,194 @@
|
|
| 81 |
"artifact_dir": "/content/agri-utilization-classifier/baselines/logistic",
|
| 82 |
"artifact_file": "/content/agri-utilization-classifier/baselines/logistic/logistic_tfidf.joblib",
|
| 83 |
"validation_best_threshold": {
|
| 84 |
-
"threshold": 0.
|
| 85 |
-
"f1": 0.
|
| 86 |
-
"precision": 0.
|
| 87 |
-
"recall": 0.
|
| 88 |
},
|
| 89 |
"validation_default_0_5": {
|
| 90 |
"threshold": 0.5,
|
| 91 |
-
"accuracy": 0.
|
| 92 |
-
"precision": 0.
|
| 93 |
-
"recall": 0.
|
| 94 |
-
"f1": 0.
|
| 95 |
"confusion_matrix": [
|
| 96 |
[
|
| 97 |
-
|
| 98 |
-
|
| 99 |
],
|
| 100 |
[
|
| 101 |
-
|
| 102 |
-
|
| 103 |
]
|
| 104 |
],
|
| 105 |
"classification_report": {
|
| 106 |
"NOT_RELEVANT": {
|
| 107 |
-
"precision": 0.
|
| 108 |
-
"recall": 0.
|
| 109 |
-
"f1-score": 0.
|
| 110 |
-
"support":
|
| 111 |
},
|
| 112 |
"RELEVANT": {
|
| 113 |
-
"precision": 0.
|
| 114 |
-
"recall": 0.
|
| 115 |
-
"f1-score": 0.
|
| 116 |
-
"support":
|
| 117 |
},
|
| 118 |
-
"accuracy": 0.
|
| 119 |
"macro avg": {
|
| 120 |
-
"precision": 0.
|
| 121 |
-
"recall": 0.
|
| 122 |
-
"f1-score": 0.
|
| 123 |
-
"support":
|
| 124 |
},
|
| 125 |
"weighted avg": {
|
| 126 |
-
"precision": 0.
|
| 127 |
-
"recall": 0.
|
| 128 |
-
"f1-score": 0.
|
| 129 |
-
"support":
|
| 130 |
}
|
| 131 |
},
|
| 132 |
-
"roc_auc": 0.
|
| 133 |
-
"average_precision": 0.
|
| 134 |
},
|
| 135 |
"validation_optimal_threshold": {
|
| 136 |
-
"threshold": 0.
|
| 137 |
-
"accuracy": 0.
|
| 138 |
-
"precision": 0.
|
| 139 |
-
"recall": 0.
|
| 140 |
-
"f1": 0.
|
| 141 |
"confusion_matrix": [
|
| 142 |
[
|
| 143 |
-
|
| 144 |
-
|
| 145 |
],
|
| 146 |
[
|
| 147 |
-
|
| 148 |
-
|
| 149 |
]
|
| 150 |
],
|
| 151 |
"classification_report": {
|
| 152 |
"NOT_RELEVANT": {
|
| 153 |
-
"precision": 0.
|
| 154 |
-
"recall": 0.
|
| 155 |
-
"f1-score": 0.
|
| 156 |
-
"support":
|
| 157 |
},
|
| 158 |
"RELEVANT": {
|
| 159 |
-
"precision": 0.
|
| 160 |
-
"recall": 0.
|
| 161 |
-
"f1-score": 0.
|
| 162 |
-
"support":
|
| 163 |
},
|
| 164 |
-
"accuracy": 0.
|
| 165 |
"macro avg": {
|
| 166 |
-
"precision": 0.
|
| 167 |
-
"recall": 0.
|
| 168 |
-
"f1-score": 0.
|
| 169 |
-
"support":
|
| 170 |
},
|
| 171 |
"weighted avg": {
|
| 172 |
-
"precision": 0.
|
| 173 |
-
"recall": 0.
|
| 174 |
-
"f1-score": 0.
|
| 175 |
-
"support":
|
| 176 |
}
|
| 177 |
},
|
| 178 |
-
"roc_auc": 0.
|
| 179 |
-
"average_precision": 0.
|
| 180 |
},
|
| 181 |
"test_default_0_5": {
|
| 182 |
"threshold": 0.5,
|
| 183 |
-
"accuracy": 0.
|
| 184 |
-
"precision": 0.
|
| 185 |
-
"recall": 0.
|
| 186 |
-
"f1": 0.
|
| 187 |
"confusion_matrix": [
|
| 188 |
[
|
| 189 |
-
|
| 190 |
-
|
| 191 |
],
|
| 192 |
[
|
| 193 |
-
|
| 194 |
-
|
| 195 |
]
|
| 196 |
],
|
| 197 |
"classification_report": {
|
| 198 |
"NOT_RELEVANT": {
|
| 199 |
-
"precision": 0.
|
| 200 |
-
"recall": 0.
|
| 201 |
-
"f1-score": 0.
|
| 202 |
-
"support":
|
| 203 |
},
|
| 204 |
"RELEVANT": {
|
| 205 |
-
"precision": 0.
|
| 206 |
-
"recall": 0.
|
| 207 |
-
"f1-score": 0.
|
| 208 |
-
"support":
|
| 209 |
},
|
| 210 |
-
"accuracy": 0.
|
| 211 |
"macro avg": {
|
| 212 |
-
"precision": 0.
|
| 213 |
-
"recall": 0.
|
| 214 |
-
"f1-score": 0.
|
| 215 |
-
"support":
|
| 216 |
},
|
| 217 |
"weighted avg": {
|
| 218 |
-
"precision": 0.
|
| 219 |
-
"recall": 0.
|
| 220 |
-
"f1-score": 0.
|
| 221 |
-
"support":
|
| 222 |
}
|
| 223 |
},
|
| 224 |
-
"roc_auc": 0.
|
| 225 |
-
"average_precision": 0.
|
| 226 |
},
|
| 227 |
"test_optimal_threshold": {
|
| 228 |
-
"threshold": 0.
|
| 229 |
-
"accuracy": 0.
|
| 230 |
-
"precision": 0.
|
| 231 |
-
"recall": 0.
|
| 232 |
-
"f1": 0.
|
| 233 |
"confusion_matrix": [
|
| 234 |
[
|
| 235 |
-
|
| 236 |
-
|
| 237 |
],
|
| 238 |
[
|
| 239 |
-
|
| 240 |
-
|
| 241 |
]
|
| 242 |
],
|
| 243 |
"classification_report": {
|
| 244 |
"NOT_RELEVANT": {
|
| 245 |
-
"precision": 0.
|
| 246 |
-
"recall": 0.
|
| 247 |
-
"f1-score": 0.
|
| 248 |
-
"support":
|
| 249 |
},
|
| 250 |
"RELEVANT": {
|
| 251 |
-
"precision": 0.
|
| 252 |
-
"recall": 0.
|
| 253 |
-
"f1-score": 0.
|
| 254 |
-
"support":
|
| 255 |
},
|
| 256 |
-
"accuracy": 0.
|
| 257 |
"macro avg": {
|
| 258 |
-
"precision": 0.
|
| 259 |
-
"recall": 0.
|
| 260 |
-
"f1-score": 0.
|
| 261 |
-
"support":
|
| 262 |
},
|
| 263 |
"weighted avg": {
|
| 264 |
-
"precision": 0.
|
| 265 |
-
"recall": 0.
|
| 266 |
-
"f1-score": 0.
|
| 267 |
-
"support":
|
| 268 |
}
|
| 269 |
},
|
| 270 |
-
"roc_auc": 0.
|
| 271 |
-
"average_precision": 0.
|
| 272 |
}
|
| 273 |
},
|
| 274 |
{
|
|
@@ -277,194 +277,194 @@
|
|
| 277 |
"artifact_dir": "/content/agri-utilization-classifier/baselines/xgboost",
|
| 278 |
"artifact_file": "/content/agri-utilization-classifier/baselines/xgboost/xgboost_tfidf.joblib",
|
| 279 |
"validation_best_threshold": {
|
| 280 |
-
"threshold": 0.
|
| 281 |
-
"f1": 0.
|
| 282 |
-
"precision": 0.
|
| 283 |
-
"recall": 0.
|
| 284 |
},
|
| 285 |
"validation_default_0_5": {
|
| 286 |
"threshold": 0.5,
|
| 287 |
-
"accuracy": 0.
|
| 288 |
-
"precision": 0.
|
| 289 |
-
"recall": 0.
|
| 290 |
-
"f1": 0.
|
| 291 |
"confusion_matrix": [
|
| 292 |
[
|
| 293 |
-
|
| 294 |
-
|
| 295 |
],
|
| 296 |
[
|
| 297 |
-
|
| 298 |
-
|
| 299 |
]
|
| 300 |
],
|
| 301 |
"classification_report": {
|
| 302 |
"NOT_RELEVANT": {
|
| 303 |
-
"precision": 0.
|
| 304 |
-
"recall": 0.
|
| 305 |
-
"f1-score": 0.
|
| 306 |
-
"support":
|
| 307 |
},
|
| 308 |
"RELEVANT": {
|
| 309 |
-
"precision": 0.
|
| 310 |
-
"recall": 0.
|
| 311 |
-
"f1-score": 0.
|
| 312 |
-
"support":
|
| 313 |
},
|
| 314 |
-
"accuracy": 0.
|
| 315 |
"macro avg": {
|
| 316 |
-
"precision": 0.
|
| 317 |
-
"recall": 0.
|
| 318 |
-
"f1-score": 0.
|
| 319 |
-
"support":
|
| 320 |
},
|
| 321 |
"weighted avg": {
|
| 322 |
-
"precision": 0.
|
| 323 |
-
"recall": 0.
|
| 324 |
-
"f1-score": 0.
|
| 325 |
-
"support":
|
| 326 |
}
|
| 327 |
},
|
| 328 |
-
"roc_auc": 0.
|
| 329 |
-
"average_precision": 0.
|
| 330 |
},
|
| 331 |
"validation_optimal_threshold": {
|
| 332 |
-
"threshold": 0.
|
| 333 |
-
"accuracy": 0.
|
| 334 |
-
"precision": 0.
|
| 335 |
-
"recall": 0.
|
| 336 |
-
"f1": 0.
|
| 337 |
"confusion_matrix": [
|
| 338 |
[
|
| 339 |
-
|
| 340 |
-
|
| 341 |
],
|
| 342 |
[
|
| 343 |
-
|
| 344 |
-
|
| 345 |
]
|
| 346 |
],
|
| 347 |
"classification_report": {
|
| 348 |
"NOT_RELEVANT": {
|
| 349 |
-
"precision": 0.
|
| 350 |
-
"recall": 0.
|
| 351 |
-
"f1-score": 0.
|
| 352 |
-
"support":
|
| 353 |
},
|
| 354 |
"RELEVANT": {
|
| 355 |
-
"precision": 0.
|
| 356 |
-
"recall": 0.
|
| 357 |
-
"f1-score": 0.
|
| 358 |
-
"support":
|
| 359 |
},
|
| 360 |
-
"accuracy": 0.
|
| 361 |
"macro avg": {
|
| 362 |
-
"precision": 0.
|
| 363 |
-
"recall": 0.
|
| 364 |
-
"f1-score": 0.
|
| 365 |
-
"support":
|
| 366 |
},
|
| 367 |
"weighted avg": {
|
| 368 |
-
"precision": 0.
|
| 369 |
-
"recall": 0.
|
| 370 |
-
"f1-score": 0.
|
| 371 |
-
"support":
|
| 372 |
}
|
| 373 |
},
|
| 374 |
-
"roc_auc": 0.
|
| 375 |
-
"average_precision": 0.
|
| 376 |
},
|
| 377 |
"test_default_0_5": {
|
| 378 |
"threshold": 0.5,
|
| 379 |
-
"accuracy": 0.
|
| 380 |
-
"precision":
|
| 381 |
-
"recall": 0.
|
| 382 |
-
"f1": 0.
|
| 383 |
"confusion_matrix": [
|
| 384 |
[
|
| 385 |
-
|
| 386 |
-
|
| 387 |
],
|
| 388 |
[
|
| 389 |
-
|
| 390 |
-
|
| 391 |
]
|
| 392 |
],
|
| 393 |
"classification_report": {
|
| 394 |
"NOT_RELEVANT": {
|
| 395 |
-
"precision": 0.
|
| 396 |
-
"recall":
|
| 397 |
-
"f1-score": 0.
|
| 398 |
-
"support":
|
| 399 |
},
|
| 400 |
"RELEVANT": {
|
| 401 |
-
"precision":
|
| 402 |
-
"recall": 0.
|
| 403 |
-
"f1-score": 0.
|
| 404 |
-
"support":
|
| 405 |
},
|
| 406 |
-
"accuracy": 0.
|
| 407 |
"macro avg": {
|
| 408 |
-
"precision": 0.
|
| 409 |
-
"recall": 0.
|
| 410 |
-
"f1-score": 0.
|
| 411 |
-
"support":
|
| 412 |
},
|
| 413 |
"weighted avg": {
|
| 414 |
-
"precision": 0.
|
| 415 |
-
"recall": 0.
|
| 416 |
-
"f1-score": 0.
|
| 417 |
-
"support":
|
| 418 |
}
|
| 419 |
},
|
| 420 |
-
"roc_auc": 0.
|
| 421 |
-
"average_precision": 0.
|
| 422 |
},
|
| 423 |
"test_optimal_threshold": {
|
| 424 |
-
"threshold": 0.
|
| 425 |
-
"accuracy": 0.
|
| 426 |
-
"precision": 0.
|
| 427 |
-
"recall": 0.
|
| 428 |
-
"f1": 0.
|
| 429 |
"confusion_matrix": [
|
| 430 |
[
|
| 431 |
-
|
| 432 |
-
|
| 433 |
],
|
| 434 |
[
|
| 435 |
-
|
| 436 |
-
|
| 437 |
]
|
| 438 |
],
|
| 439 |
"classification_report": {
|
| 440 |
"NOT_RELEVANT": {
|
| 441 |
-
"precision": 0.
|
| 442 |
-
"recall": 0.
|
| 443 |
-
"f1-score": 0.
|
| 444 |
-
"support":
|
| 445 |
},
|
| 446 |
"RELEVANT": {
|
| 447 |
-
"precision": 0.
|
| 448 |
-
"recall": 0.
|
| 449 |
-
"f1-score": 0.
|
| 450 |
-
"support":
|
| 451 |
},
|
| 452 |
-
"accuracy": 0.
|
| 453 |
"macro avg": {
|
| 454 |
-
"precision": 0.
|
| 455 |
-
"recall": 0.
|
| 456 |
-
"f1-score": 0.
|
| 457 |
-
"support":
|
| 458 |
},
|
| 459 |
"weighted avg": {
|
| 460 |
-
"precision": 0.
|
| 461 |
-
"recall": 0.
|
| 462 |
-
"f1-score": 0.
|
| 463 |
-
"support":
|
| 464 |
}
|
| 465 |
},
|
| 466 |
-
"roc_auc": 0.
|
| 467 |
-
"average_precision": 0.
|
| 468 |
}
|
| 469 |
},
|
| 470 |
{
|
|
@@ -474,194 +474,194 @@
|
|
| 474 |
"artifact_dir": "/content/agri-utilization-classifier/baselines/embedding-logistic",
|
| 475 |
"artifact_file": "/content/agri-utilization-classifier/baselines/embedding-logistic/embedding-logistic.joblib",
|
| 476 |
"validation_best_threshold": {
|
| 477 |
-
"threshold": 0.
|
| 478 |
-
"f1": 0.
|
| 479 |
-
"precision": 0.
|
| 480 |
-
"recall": 0.
|
| 481 |
},
|
| 482 |
"validation_default_0_5": {
|
| 483 |
"threshold": 0.5,
|
| 484 |
-
"accuracy": 0.
|
| 485 |
-
"precision": 0.
|
| 486 |
-
"recall": 0.
|
| 487 |
-
"f1": 0.
|
| 488 |
"confusion_matrix": [
|
| 489 |
[
|
| 490 |
-
|
| 491 |
-
|
| 492 |
],
|
| 493 |
[
|
| 494 |
-
|
| 495 |
-
|
| 496 |
]
|
| 497 |
],
|
| 498 |
"classification_report": {
|
| 499 |
"NOT_RELEVANT": {
|
| 500 |
-
"precision": 0.
|
| 501 |
-
"recall": 0.
|
| 502 |
-
"f1-score": 0.
|
| 503 |
-
"support":
|
| 504 |
},
|
| 505 |
"RELEVANT": {
|
| 506 |
-
"precision": 0.
|
| 507 |
-
"recall": 0.
|
| 508 |
-
"f1-score": 0.
|
| 509 |
-
"support":
|
| 510 |
},
|
| 511 |
-
"accuracy": 0.
|
| 512 |
"macro avg": {
|
| 513 |
-
"precision": 0.
|
| 514 |
-
"recall": 0.
|
| 515 |
-
"f1-score": 0.
|
| 516 |
-
"support":
|
| 517 |
},
|
| 518 |
"weighted avg": {
|
| 519 |
-
"precision": 0.
|
| 520 |
-
"recall": 0.
|
| 521 |
-
"f1-score": 0.
|
| 522 |
-
"support":
|
| 523 |
}
|
| 524 |
},
|
| 525 |
-
"roc_auc": 0.
|
| 526 |
-
"average_precision": 0.
|
| 527 |
},
|
| 528 |
"validation_optimal_threshold": {
|
| 529 |
-
"threshold": 0.
|
| 530 |
-
"accuracy": 0.
|
| 531 |
-
"precision": 0.
|
| 532 |
-
"recall": 0.
|
| 533 |
-
"f1": 0.
|
| 534 |
"confusion_matrix": [
|
| 535 |
[
|
| 536 |
-
|
| 537 |
-
|
| 538 |
],
|
| 539 |
[
|
| 540 |
-
|
| 541 |
-
|
| 542 |
]
|
| 543 |
],
|
| 544 |
"classification_report": {
|
| 545 |
"NOT_RELEVANT": {
|
| 546 |
-
"precision": 0.
|
| 547 |
-
"recall": 0.
|
| 548 |
-
"f1-score": 0.
|
| 549 |
-
"support":
|
| 550 |
},
|
| 551 |
"RELEVANT": {
|
| 552 |
-
"precision": 0.
|
| 553 |
-
"recall": 0.
|
| 554 |
-
"f1-score": 0.
|
| 555 |
-
"support":
|
| 556 |
},
|
| 557 |
-
"accuracy": 0.
|
| 558 |
"macro avg": {
|
| 559 |
-
"precision": 0.
|
| 560 |
-
"recall": 0.
|
| 561 |
-
"f1-score": 0.
|
| 562 |
-
"support":
|
| 563 |
},
|
| 564 |
"weighted avg": {
|
| 565 |
-
"precision": 0.
|
| 566 |
-
"recall": 0.
|
| 567 |
-
"f1-score": 0.
|
| 568 |
-
"support":
|
| 569 |
}
|
| 570 |
},
|
| 571 |
-
"roc_auc": 0.
|
| 572 |
-
"average_precision": 0.
|
| 573 |
},
|
| 574 |
"test_default_0_5": {
|
| 575 |
"threshold": 0.5,
|
| 576 |
-
"accuracy": 0.
|
| 577 |
-
"precision": 0.
|
| 578 |
-
"recall": 0.
|
| 579 |
-
"f1": 0.
|
| 580 |
"confusion_matrix": [
|
| 581 |
[
|
| 582 |
-
|
| 583 |
-
|
| 584 |
],
|
| 585 |
[
|
| 586 |
-
|
| 587 |
-
|
| 588 |
]
|
| 589 |
],
|
| 590 |
"classification_report": {
|
| 591 |
"NOT_RELEVANT": {
|
| 592 |
-
"precision": 0.
|
| 593 |
-
"recall": 0.
|
| 594 |
-
"f1-score": 0.
|
| 595 |
-
"support":
|
| 596 |
},
|
| 597 |
"RELEVANT": {
|
| 598 |
-
"precision": 0.
|
| 599 |
-
"recall": 0.
|
| 600 |
-
"f1-score": 0.
|
| 601 |
-
"support":
|
| 602 |
},
|
| 603 |
-
"accuracy": 0.
|
| 604 |
"macro avg": {
|
| 605 |
-
"precision": 0.
|
| 606 |
-
"recall": 0.
|
| 607 |
-
"f1-score": 0.
|
| 608 |
-
"support":
|
| 609 |
},
|
| 610 |
"weighted avg": {
|
| 611 |
-
"precision": 0.
|
| 612 |
-
"recall": 0.
|
| 613 |
-
"f1-score": 0.
|
| 614 |
-
"support":
|
| 615 |
}
|
| 616 |
},
|
| 617 |
-
"roc_auc": 0.
|
| 618 |
-
"average_precision": 0.
|
| 619 |
},
|
| 620 |
"test_optimal_threshold": {
|
| 621 |
-
"threshold": 0.
|
| 622 |
-
"accuracy": 0.
|
| 623 |
-
"precision": 0.
|
| 624 |
-
"recall": 0.
|
| 625 |
-
"f1": 0.
|
| 626 |
"confusion_matrix": [
|
| 627 |
[
|
| 628 |
-
|
| 629 |
-
|
| 630 |
],
|
| 631 |
[
|
| 632 |
-
|
| 633 |
-
|
| 634 |
]
|
| 635 |
],
|
| 636 |
"classification_report": {
|
| 637 |
"NOT_RELEVANT": {
|
| 638 |
-
"precision": 0.
|
| 639 |
-
"recall": 0.
|
| 640 |
-
"f1-score": 0.
|
| 641 |
-
"support":
|
| 642 |
},
|
| 643 |
"RELEVANT": {
|
| 644 |
-
"precision": 0.
|
| 645 |
-
"recall": 0.
|
| 646 |
-
"f1-score": 0.
|
| 647 |
-
"support":
|
| 648 |
},
|
| 649 |
-
"accuracy": 0.
|
| 650 |
"macro avg": {
|
| 651 |
-
"precision": 0.
|
| 652 |
-
"recall": 0.
|
| 653 |
-
"f1-score": 0.
|
| 654 |
-
"support":
|
| 655 |
},
|
| 656 |
"weighted avg": {
|
| 657 |
-
"precision": 0.
|
| 658 |
-
"recall": 0.
|
| 659 |
-
"f1-score": 0.
|
| 660 |
-
"support":
|
| 661 |
}
|
| 662 |
},
|
| 663 |
-
"roc_auc": 0.
|
| 664 |
-
"average_precision": 0.
|
| 665 |
}
|
| 666 |
},
|
| 667 |
{
|
|
@@ -671,194 +671,194 @@
|
|
| 671 |
"artifact_dir": "/content/agri-utilization-classifier/baselines/embedding-svm",
|
| 672 |
"artifact_file": "/content/agri-utilization-classifier/baselines/embedding-svm/embedding-svm.joblib",
|
| 673 |
"validation_best_threshold": {
|
| 674 |
-
"threshold": 0.
|
| 675 |
-
"f1": 0.
|
| 676 |
-
"precision": 0.
|
| 677 |
-
"recall": 0.
|
| 678 |
},
|
| 679 |
"validation_default_0_5": {
|
| 680 |
"threshold": 0.5,
|
| 681 |
-
"accuracy": 0.
|
| 682 |
-
"precision": 0.
|
| 683 |
-
"recall": 0.
|
| 684 |
-
"f1": 0.
|
| 685 |
"confusion_matrix": [
|
| 686 |
[
|
| 687 |
-
|
| 688 |
-
|
| 689 |
],
|
| 690 |
[
|
| 691 |
-
|
| 692 |
-
|
| 693 |
]
|
| 694 |
],
|
| 695 |
"classification_report": {
|
| 696 |
"NOT_RELEVANT": {
|
| 697 |
-
"precision": 0.
|
| 698 |
-
"recall": 0.
|
| 699 |
-
"f1-score": 0.
|
| 700 |
-
"support":
|
| 701 |
},
|
| 702 |
"RELEVANT": {
|
| 703 |
-
"precision": 0.
|
| 704 |
-
"recall": 0.
|
| 705 |
-
"f1-score": 0.
|
| 706 |
-
"support":
|
| 707 |
},
|
| 708 |
-
"accuracy": 0.
|
| 709 |
"macro avg": {
|
| 710 |
-
"precision": 0.
|
| 711 |
-
"recall": 0.
|
| 712 |
-
"f1-score": 0.
|
| 713 |
-
"support":
|
| 714 |
},
|
| 715 |
"weighted avg": {
|
| 716 |
-
"precision": 0.
|
| 717 |
-
"recall": 0.
|
| 718 |
-
"f1-score": 0.
|
| 719 |
-
"support":
|
| 720 |
}
|
| 721 |
},
|
| 722 |
-
"roc_auc": 0.
|
| 723 |
-
"average_precision": 0.
|
| 724 |
},
|
| 725 |
"validation_optimal_threshold": {
|
| 726 |
-
"threshold": 0.
|
| 727 |
-
"accuracy": 0.
|
| 728 |
-
"precision": 0.
|
| 729 |
-
"recall": 0.
|
| 730 |
-
"f1": 0.
|
| 731 |
"confusion_matrix": [
|
| 732 |
[
|
| 733 |
-
|
| 734 |
-
|
| 735 |
],
|
| 736 |
[
|
| 737 |
-
|
| 738 |
-
|
| 739 |
]
|
| 740 |
],
|
| 741 |
"classification_report": {
|
| 742 |
"NOT_RELEVANT": {
|
| 743 |
-
"precision": 0.
|
| 744 |
-
"recall": 0.
|
| 745 |
-
"f1-score": 0.
|
| 746 |
-
"support":
|
| 747 |
},
|
| 748 |
"RELEVANT": {
|
| 749 |
-
"precision": 0.
|
| 750 |
-
"recall": 0.
|
| 751 |
-
"f1-score": 0.
|
| 752 |
-
"support":
|
| 753 |
},
|
| 754 |
-
"accuracy": 0.
|
| 755 |
"macro avg": {
|
| 756 |
-
"precision": 0.
|
| 757 |
-
"recall": 0.
|
| 758 |
-
"f1-score": 0.
|
| 759 |
-
"support":
|
| 760 |
},
|
| 761 |
"weighted avg": {
|
| 762 |
-
"precision": 0.
|
| 763 |
-
"recall": 0.
|
| 764 |
-
"f1-score": 0.
|
| 765 |
-
"support":
|
| 766 |
}
|
| 767 |
},
|
| 768 |
-
"roc_auc": 0.
|
| 769 |
-
"average_precision": 0.
|
| 770 |
},
|
| 771 |
"test_default_0_5": {
|
| 772 |
"threshold": 0.5,
|
| 773 |
-
"accuracy": 0.
|
| 774 |
-
"precision": 0.
|
| 775 |
-
"recall": 0.
|
| 776 |
-
"f1": 0.
|
| 777 |
"confusion_matrix": [
|
| 778 |
[
|
| 779 |
-
|
| 780 |
-
|
| 781 |
],
|
| 782 |
[
|
| 783 |
-
|
| 784 |
-
|
| 785 |
]
|
| 786 |
],
|
| 787 |
"classification_report": {
|
| 788 |
"NOT_RELEVANT": {
|
| 789 |
-
"precision": 0.
|
| 790 |
-
"recall": 0.
|
| 791 |
-
"f1-score": 0.
|
| 792 |
-
"support":
|
| 793 |
},
|
| 794 |
"RELEVANT": {
|
| 795 |
-
"precision": 0.
|
| 796 |
-
"recall": 0.
|
| 797 |
-
"f1-score": 0.
|
| 798 |
-
"support":
|
| 799 |
},
|
| 800 |
-
"accuracy": 0.
|
| 801 |
"macro avg": {
|
| 802 |
-
"precision": 0.
|
| 803 |
-
"recall": 0.
|
| 804 |
-
"f1-score": 0.
|
| 805 |
-
"support":
|
| 806 |
},
|
| 807 |
"weighted avg": {
|
| 808 |
-
"precision": 0.
|
| 809 |
-
"recall": 0.
|
| 810 |
-
"f1-score": 0.
|
| 811 |
-
"support":
|
| 812 |
}
|
| 813 |
},
|
| 814 |
-
"roc_auc": 0.
|
| 815 |
-
"average_precision": 0.
|
| 816 |
},
|
| 817 |
"test_optimal_threshold": {
|
| 818 |
-
"threshold": 0.
|
| 819 |
-
"accuracy": 0.
|
| 820 |
-
"precision": 0.
|
| 821 |
-
"recall": 0.
|
| 822 |
-
"f1": 0.
|
| 823 |
"confusion_matrix": [
|
| 824 |
[
|
| 825 |
-
|
| 826 |
-
|
| 827 |
],
|
| 828 |
[
|
| 829 |
-
|
| 830 |
-
|
| 831 |
]
|
| 832 |
],
|
| 833 |
"classification_report": {
|
| 834 |
"NOT_RELEVANT": {
|
| 835 |
-
"precision": 0.
|
| 836 |
-
"recall": 0.
|
| 837 |
-
"f1-score": 0.
|
| 838 |
-
"support":
|
| 839 |
},
|
| 840 |
"RELEVANT": {
|
| 841 |
-
"precision": 0.
|
| 842 |
-
"recall": 0.
|
| 843 |
-
"f1-score": 0.
|
| 844 |
-
"support":
|
| 845 |
},
|
| 846 |
-
"accuracy": 0.
|
| 847 |
"macro avg": {
|
| 848 |
-
"precision": 0.
|
| 849 |
-
"recall": 0.
|
| 850 |
-
"f1-score": 0.
|
| 851 |
-
"support":
|
| 852 |
},
|
| 853 |
"weighted avg": {
|
| 854 |
-
"precision": 0.
|
| 855 |
-
"recall": 0.
|
| 856 |
-
"f1-score": 0.
|
| 857 |
-
"support":
|
| 858 |
}
|
| 859 |
},
|
| 860 |
-
"roc_auc": 0.
|
| 861 |
-
"average_precision": 0.
|
| 862 |
}
|
| 863 |
},
|
| 864 |
{
|
|
@@ -868,194 +868,194 @@
|
|
| 868 |
"artifact_dir": "/content/agri-utilization-classifier/baselines/embedding-lightgbm",
|
| 869 |
"artifact_file": "/content/agri-utilization-classifier/baselines/embedding-lightgbm/embedding-lightgbm.joblib",
|
| 870 |
"validation_best_threshold": {
|
| 871 |
-
"threshold": 0.
|
| 872 |
-
"f1": 0.
|
| 873 |
-
"precision": 0.
|
| 874 |
-
"recall": 0.
|
| 875 |
},
|
| 876 |
"validation_default_0_5": {
|
| 877 |
"threshold": 0.5,
|
| 878 |
-
"accuracy": 0.
|
| 879 |
-
"precision": 0.
|
| 880 |
-
"recall": 0.
|
| 881 |
-
"f1": 0.
|
| 882 |
"confusion_matrix": [
|
| 883 |
[
|
| 884 |
-
|
| 885 |
-
|
| 886 |
],
|
| 887 |
[
|
| 888 |
-
|
| 889 |
-
|
| 890 |
]
|
| 891 |
],
|
| 892 |
"classification_report": {
|
| 893 |
"NOT_RELEVANT": {
|
| 894 |
-
"precision": 0.
|
| 895 |
-
"recall": 0.
|
| 896 |
-
"f1-score": 0.
|
| 897 |
-
"support":
|
| 898 |
},
|
| 899 |
"RELEVANT": {
|
| 900 |
-
"precision": 0.
|
| 901 |
-
"recall": 0.
|
| 902 |
-
"f1-score": 0.
|
| 903 |
-
"support":
|
| 904 |
},
|
| 905 |
-
"accuracy": 0.
|
| 906 |
"macro avg": {
|
| 907 |
-
"precision": 0.
|
| 908 |
-
"recall": 0.
|
| 909 |
-
"f1-score": 0.
|
| 910 |
-
"support":
|
| 911 |
},
|
| 912 |
"weighted avg": {
|
| 913 |
-
"precision": 0.
|
| 914 |
-
"recall": 0.
|
| 915 |
-
"f1-score": 0.
|
| 916 |
-
"support":
|
| 917 |
}
|
| 918 |
},
|
| 919 |
-
"roc_auc": 0.
|
| 920 |
-
"average_precision": 0.
|
| 921 |
},
|
| 922 |
"validation_optimal_threshold": {
|
| 923 |
-
"threshold": 0.
|
| 924 |
-
"accuracy": 0.
|
| 925 |
-
"precision": 0.
|
| 926 |
-
"recall": 0.
|
| 927 |
-
"f1": 0.
|
| 928 |
"confusion_matrix": [
|
| 929 |
[
|
| 930 |
-
|
| 931 |
-
|
| 932 |
],
|
| 933 |
[
|
| 934 |
-
|
| 935 |
-
|
| 936 |
]
|
| 937 |
],
|
| 938 |
"classification_report": {
|
| 939 |
"NOT_RELEVANT": {
|
| 940 |
-
"precision": 0.
|
| 941 |
-
"recall": 0.
|
| 942 |
-
"f1-score": 0.
|
| 943 |
-
"support":
|
| 944 |
},
|
| 945 |
"RELEVANT": {
|
| 946 |
-
"precision": 0.
|
| 947 |
-
"recall": 0.
|
| 948 |
-
"f1-score": 0.
|
| 949 |
-
"support":
|
| 950 |
},
|
| 951 |
-
"accuracy": 0.
|
| 952 |
"macro avg": {
|
| 953 |
-
"precision": 0.
|
| 954 |
-
"recall": 0.
|
| 955 |
-
"f1-score": 0.
|
| 956 |
-
"support":
|
| 957 |
},
|
| 958 |
"weighted avg": {
|
| 959 |
-
"precision": 0.
|
| 960 |
-
"recall": 0.
|
| 961 |
-
"f1-score": 0.
|
| 962 |
-
"support":
|
| 963 |
}
|
| 964 |
},
|
| 965 |
-
"roc_auc": 0.
|
| 966 |
-
"average_precision": 0.
|
| 967 |
},
|
| 968 |
"test_default_0_5": {
|
| 969 |
"threshold": 0.5,
|
| 970 |
-
"accuracy": 0.
|
| 971 |
-
"precision": 0.
|
| 972 |
-
"recall": 0.
|
| 973 |
-
"f1": 0.
|
| 974 |
"confusion_matrix": [
|
| 975 |
[
|
| 976 |
-
|
| 977 |
-
|
| 978 |
],
|
| 979 |
[
|
| 980 |
-
|
| 981 |
-
|
| 982 |
]
|
| 983 |
],
|
| 984 |
"classification_report": {
|
| 985 |
"NOT_RELEVANT": {
|
| 986 |
-
"precision": 0.
|
| 987 |
-
"recall": 0.
|
| 988 |
-
"f1-score": 0.
|
| 989 |
-
"support":
|
| 990 |
},
|
| 991 |
"RELEVANT": {
|
| 992 |
-
"precision": 0.
|
| 993 |
-
"recall": 0.
|
| 994 |
-
"f1-score": 0.
|
| 995 |
-
"support":
|
| 996 |
},
|
| 997 |
-
"accuracy": 0.
|
| 998 |
"macro avg": {
|
| 999 |
-
"precision": 0.
|
| 1000 |
-
"recall": 0.
|
| 1001 |
-
"f1-score": 0.
|
| 1002 |
-
"support":
|
| 1003 |
},
|
| 1004 |
"weighted avg": {
|
| 1005 |
-
"precision": 0.
|
| 1006 |
-
"recall": 0.
|
| 1007 |
-
"f1-score": 0.
|
| 1008 |
-
"support":
|
| 1009 |
}
|
| 1010 |
},
|
| 1011 |
-
"roc_auc": 0.
|
| 1012 |
-
"average_precision": 0.
|
| 1013 |
},
|
| 1014 |
"test_optimal_threshold": {
|
| 1015 |
-
"threshold": 0.
|
| 1016 |
-
"accuracy": 0.
|
| 1017 |
-
"precision": 0.
|
| 1018 |
-
"recall": 0.
|
| 1019 |
-
"f1": 0.
|
| 1020 |
"confusion_matrix": [
|
| 1021 |
[
|
| 1022 |
-
|
| 1023 |
-
|
| 1024 |
],
|
| 1025 |
[
|
| 1026 |
-
|
| 1027 |
-
|
| 1028 |
]
|
| 1029 |
],
|
| 1030 |
"classification_report": {
|
| 1031 |
"NOT_RELEVANT": {
|
| 1032 |
-
"precision": 0.
|
| 1033 |
-
"recall": 0.
|
| 1034 |
-
"f1-score": 0.
|
| 1035 |
-
"support":
|
| 1036 |
},
|
| 1037 |
"RELEVANT": {
|
| 1038 |
-
"precision": 0.
|
| 1039 |
-
"recall": 0.
|
| 1040 |
-
"f1-score": 0.
|
| 1041 |
-
"support":
|
| 1042 |
},
|
| 1043 |
-
"accuracy": 0.
|
| 1044 |
"macro avg": {
|
| 1045 |
-
"precision": 0.
|
| 1046 |
-
"recall": 0.
|
| 1047 |
-
"f1-score": 0.
|
| 1048 |
-
"support":
|
| 1049 |
},
|
| 1050 |
"weighted avg": {
|
| 1051 |
-
"precision": 0.
|
| 1052 |
-
"recall": 0.
|
| 1053 |
-
"f1-score": 0.
|
| 1054 |
-
"support":
|
| 1055 |
}
|
| 1056 |
},
|
| 1057 |
-
"roc_auc": 0.
|
| 1058 |
-
"average_precision": 0.
|
| 1059 |
}
|
| 1060 |
},
|
| 1061 |
{
|
|
@@ -1063,194 +1063,194 @@
|
|
| 1063 |
"model_name": "FacebookAI/xlm-roberta-base",
|
| 1064 |
"artifact_dir": "/content/agri-utilization-classifier/transformer",
|
| 1065 |
"validation_best_threshold": {
|
| 1066 |
-
"threshold": 0.
|
| 1067 |
-
"f1": 0.
|
| 1068 |
-
"precision": 0.
|
| 1069 |
-
"recall": 0.
|
| 1070 |
},
|
| 1071 |
"validation_default_0_5": {
|
| 1072 |
"threshold": 0.5,
|
| 1073 |
-
"accuracy": 0.
|
| 1074 |
-
"precision": 0.
|
| 1075 |
-
"recall": 0.
|
| 1076 |
-
"f1": 0.
|
| 1077 |
"confusion_matrix": [
|
| 1078 |
[
|
| 1079 |
-
|
| 1080 |
-
|
| 1081 |
],
|
| 1082 |
[
|
| 1083 |
-
|
| 1084 |
-
|
| 1085 |
]
|
| 1086 |
],
|
| 1087 |
"classification_report": {
|
| 1088 |
"NOT_RELEVANT": {
|
| 1089 |
-
"precision": 0.
|
| 1090 |
-
"recall": 0.
|
| 1091 |
-
"f1-score": 0.
|
| 1092 |
-
"support":
|
| 1093 |
},
|
| 1094 |
"RELEVANT": {
|
| 1095 |
-
"precision": 0.
|
| 1096 |
-
"recall": 0.
|
| 1097 |
-
"f1-score": 0.
|
| 1098 |
-
"support":
|
| 1099 |
},
|
| 1100 |
-
"accuracy": 0.
|
| 1101 |
"macro avg": {
|
| 1102 |
-
"precision": 0.
|
| 1103 |
-
"recall": 0.
|
| 1104 |
-
"f1-score": 0.
|
| 1105 |
-
"support":
|
| 1106 |
},
|
| 1107 |
"weighted avg": {
|
| 1108 |
-
"precision": 0.
|
| 1109 |
-
"recall": 0.
|
| 1110 |
-
"f1-score": 0.
|
| 1111 |
-
"support":
|
| 1112 |
}
|
| 1113 |
},
|
| 1114 |
-
"roc_auc": 0.
|
| 1115 |
-
"average_precision": 0.
|
| 1116 |
},
|
| 1117 |
"validation_optimal_threshold": {
|
| 1118 |
-
"threshold": 0.
|
| 1119 |
-
"accuracy": 0.
|
| 1120 |
-
"precision": 0.
|
| 1121 |
-
"recall": 0.
|
| 1122 |
-
"f1": 0.
|
| 1123 |
"confusion_matrix": [
|
| 1124 |
[
|
| 1125 |
-
|
| 1126 |
-
|
| 1127 |
],
|
| 1128 |
[
|
| 1129 |
-
|
| 1130 |
-
|
| 1131 |
]
|
| 1132 |
],
|
| 1133 |
"classification_report": {
|
| 1134 |
"NOT_RELEVANT": {
|
| 1135 |
-
"precision": 0.
|
| 1136 |
-
"recall": 0.
|
| 1137 |
-
"f1-score": 0.
|
| 1138 |
-
"support":
|
| 1139 |
},
|
| 1140 |
"RELEVANT": {
|
| 1141 |
-
"precision": 0.
|
| 1142 |
-
"recall": 0.
|
| 1143 |
-
"f1-score": 0.
|
| 1144 |
-
"support":
|
| 1145 |
},
|
| 1146 |
-
"accuracy": 0.
|
| 1147 |
"macro avg": {
|
| 1148 |
-
"precision": 0.
|
| 1149 |
-
"recall": 0.
|
| 1150 |
-
"f1-score": 0.
|
| 1151 |
-
"support":
|
| 1152 |
},
|
| 1153 |
"weighted avg": {
|
| 1154 |
-
"precision": 0.
|
| 1155 |
-
"recall": 0.
|
| 1156 |
-
"f1-score": 0.
|
| 1157 |
-
"support":
|
| 1158 |
}
|
| 1159 |
},
|
| 1160 |
-
"roc_auc": 0.
|
| 1161 |
-
"average_precision": 0.
|
| 1162 |
},
|
| 1163 |
"test_default_0_5": {
|
| 1164 |
"threshold": 0.5,
|
| 1165 |
-
"accuracy": 0.
|
| 1166 |
-
"precision": 0.
|
| 1167 |
-
"recall": 0.
|
| 1168 |
-
"f1": 0.
|
| 1169 |
"confusion_matrix": [
|
| 1170 |
[
|
| 1171 |
-
|
| 1172 |
-
|
| 1173 |
],
|
| 1174 |
[
|
| 1175 |
-
|
| 1176 |
-
|
| 1177 |
]
|
| 1178 |
],
|
| 1179 |
"classification_report": {
|
| 1180 |
"NOT_RELEVANT": {
|
| 1181 |
-
"precision": 0.
|
| 1182 |
-
"recall": 0.
|
| 1183 |
-
"f1-score": 0.
|
| 1184 |
-
"support":
|
| 1185 |
},
|
| 1186 |
"RELEVANT": {
|
| 1187 |
-
"precision": 0.
|
| 1188 |
-
"recall": 0.
|
| 1189 |
-
"f1-score": 0.
|
| 1190 |
-
"support":
|
| 1191 |
},
|
| 1192 |
-
"accuracy": 0.
|
| 1193 |
"macro avg": {
|
| 1194 |
-
"precision": 0.
|
| 1195 |
-
"recall": 0.
|
| 1196 |
-
"f1-score": 0.
|
| 1197 |
-
"support":
|
| 1198 |
},
|
| 1199 |
"weighted avg": {
|
| 1200 |
-
"precision": 0.
|
| 1201 |
-
"recall": 0.
|
| 1202 |
-
"f1-score": 0.
|
| 1203 |
-
"support":
|
| 1204 |
}
|
| 1205 |
},
|
| 1206 |
-
"roc_auc": 0.
|
| 1207 |
-
"average_precision": 0.
|
| 1208 |
},
|
| 1209 |
"test_optimal_threshold": {
|
| 1210 |
-
"threshold": 0.
|
| 1211 |
-
"accuracy": 0.
|
| 1212 |
-
"precision": 0.
|
| 1213 |
-
"recall": 0.
|
| 1214 |
-
"f1": 0.
|
| 1215 |
"confusion_matrix": [
|
| 1216 |
[
|
| 1217 |
-
|
| 1218 |
-
|
| 1219 |
],
|
| 1220 |
[
|
| 1221 |
-
|
| 1222 |
-
|
| 1223 |
]
|
| 1224 |
],
|
| 1225 |
"classification_report": {
|
| 1226 |
"NOT_RELEVANT": {
|
| 1227 |
-
"precision": 0.
|
| 1228 |
-
"recall": 0.
|
| 1229 |
-
"f1-score": 0.
|
| 1230 |
-
"support":
|
| 1231 |
},
|
| 1232 |
"RELEVANT": {
|
| 1233 |
-
"precision": 0.
|
| 1234 |
-
"recall": 0.
|
| 1235 |
-
"f1-score": 0.
|
| 1236 |
-
"support":
|
| 1237 |
},
|
| 1238 |
-
"accuracy": 0.
|
| 1239 |
"macro avg": {
|
| 1240 |
-
"precision": 0.
|
| 1241 |
-
"recall": 0.
|
| 1242 |
-
"f1-score": 0.
|
| 1243 |
-
"support":
|
| 1244 |
},
|
| 1245 |
"weighted avg": {
|
| 1246 |
-
"precision": 0.
|
| 1247 |
-
"recall": 0.
|
| 1248 |
-
"f1-score": 0.
|
| 1249 |
-
"support":
|
| 1250 |
}
|
| 1251 |
},
|
| 1252 |
-
"roc_auc": 0.
|
| 1253 |
-
"average_precision": 0.
|
| 1254 |
}
|
| 1255 |
}
|
| 1256 |
]
|
|
|
|
| 1 |
{
|
| 2 |
+
"created_at": "2026-06-10T20:30:54.345579+00:00",
|
| 3 |
"config": {
|
| 4 |
"hf_dataset": "faodl/amis-agri-utilization",
|
| 5 |
"hf_subset": null,
|
| 6 |
+
"hf_revision": "ada4a04088a98f8f64bc7485c57d4c7f422c2151",
|
| 7 |
"train_split": "train",
|
| 8 |
"validation_split": "validation",
|
| 9 |
"test_split": "test",
|
|
|
|
| 44 |
},
|
| 45 |
"dataset_summary": {
|
| 46 |
"train": {
|
| 47 |
+
"rows": 4877,
|
| 48 |
"labels": {
|
| 49 |
+
"0": 4347,
|
| 50 |
+
"1": 530
|
| 51 |
},
|
| 52 |
+
"unique_groups": 2513,
|
| 53 |
+
"text_length_mean": 696.6221037523068,
|
| 54 |
"text_length_median": 794.0
|
| 55 |
},
|
| 56 |
"validation": {
|
| 57 |
+
"rows": 978,
|
| 58 |
"labels": {
|
| 59 |
+
"0": 899,
|
| 60 |
+
"1": 79
|
| 61 |
},
|
| 62 |
+
"unique_groups": 538,
|
| 63 |
+
"text_length_mean": 690.6196319018405,
|
| 64 |
"text_length_median": 794.0
|
| 65 |
},
|
| 66 |
"test": {
|
| 67 |
+
"rows": 1016,
|
| 68 |
"labels": {
|
| 69 |
+
"0": 904,
|
| 70 |
+
"1": 112
|
| 71 |
},
|
| 72 |
+
"unique_groups": 539,
|
| 73 |
+
"text_length_mean": 690.6929133858267,
|
| 74 |
"text_length_median": 794.0
|
| 75 |
}
|
| 76 |
},
|
|
|
|
| 81 |
"artifact_dir": "/content/agri-utilization-classifier/baselines/logistic",
|
| 82 |
"artifact_file": "/content/agri-utilization-classifier/baselines/logistic/logistic_tfidf.joblib",
|
| 83 |
"validation_best_threshold": {
|
| 84 |
+
"threshold": 0.6076606929552563,
|
| 85 |
+
"f1": 0.5777777777777778,
|
| 86 |
+
"precision": 0.6964285714285714,
|
| 87 |
+
"recall": 0.4936708860759494
|
| 88 |
},
|
| 89 |
"validation_default_0_5": {
|
| 90 |
"threshold": 0.5,
|
| 91 |
+
"accuracy": 0.9120654396728016,
|
| 92 |
+
"precision": 0.46464646464646464,
|
| 93 |
+
"recall": 0.5822784810126582,
|
| 94 |
+
"f1": 0.5168539325842697,
|
| 95 |
"confusion_matrix": [
|
| 96 |
[
|
| 97 |
+
846,
|
| 98 |
+
53
|
| 99 |
],
|
| 100 |
[
|
| 101 |
+
33,
|
| 102 |
+
46
|
| 103 |
]
|
| 104 |
],
|
| 105 |
"classification_report": {
|
| 106 |
"NOT_RELEVANT": {
|
| 107 |
+
"precision": 0.962457337883959,
|
| 108 |
+
"recall": 0.9410456062291435,
|
| 109 |
+
"f1-score": 0.9516310461192351,
|
| 110 |
+
"support": 899.0
|
| 111 |
},
|
| 112 |
"RELEVANT": {
|
| 113 |
+
"precision": 0.46464646464646464,
|
| 114 |
+
"recall": 0.5822784810126582,
|
| 115 |
+
"f1-score": 0.5168539325842697,
|
| 116 |
+
"support": 79.0
|
| 117 |
},
|
| 118 |
+
"accuracy": 0.9120654396728016,
|
| 119 |
"macro avg": {
|
| 120 |
+
"precision": 0.7135519012652118,
|
| 121 |
+
"recall": 0.7616620436209008,
|
| 122 |
+
"f1-score": 0.7342424893517524,
|
| 123 |
+
"support": 978.0
|
| 124 |
},
|
| 125 |
"weighted avg": {
|
| 126 |
+
"precision": 0.9222456211296011,
|
| 127 |
+
"recall": 0.9120654396728016,
|
| 128 |
+
"f1-score": 0.9165110134308279,
|
| 129 |
+
"support": 978.0
|
| 130 |
}
|
| 131 |
},
|
| 132 |
+
"roc_auc": 0.871530955632841,
|
| 133 |
+
"average_precision": 0.5935308473185881
|
| 134 |
},
|
| 135 |
"validation_optimal_threshold": {
|
| 136 |
+
"threshold": 0.6076606929552563,
|
| 137 |
+
"accuracy": 0.941717791411043,
|
| 138 |
+
"precision": 0.6964285714285714,
|
| 139 |
+
"recall": 0.4936708860759494,
|
| 140 |
+
"f1": 0.5777777777777777,
|
| 141 |
"confusion_matrix": [
|
| 142 |
[
|
| 143 |
+
882,
|
| 144 |
+
17
|
| 145 |
],
|
| 146 |
[
|
| 147 |
+
40,
|
| 148 |
+
39
|
| 149 |
]
|
| 150 |
],
|
| 151 |
"classification_report": {
|
| 152 |
"NOT_RELEVANT": {
|
| 153 |
+
"precision": 0.9566160520607375,
|
| 154 |
+
"recall": 0.9810901001112347,
|
| 155 |
+
"f1-score": 0.9686985172981878,
|
| 156 |
+
"support": 899.0
|
| 157 |
},
|
| 158 |
"RELEVANT": {
|
| 159 |
+
"precision": 0.6964285714285714,
|
| 160 |
+
"recall": 0.4936708860759494,
|
| 161 |
+
"f1-score": 0.5777777777777777,
|
| 162 |
+
"support": 79.0
|
| 163 |
},
|
| 164 |
+
"accuracy": 0.941717791411043,
|
| 165 |
"macro avg": {
|
| 166 |
+
"precision": 0.8265223117446545,
|
| 167 |
+
"recall": 0.737380493093592,
|
| 168 |
+
"f1-score": 0.7732381475379828,
|
| 169 |
+
"support": 978.0
|
| 170 |
},
|
| 171 |
"weighted avg": {
|
| 172 |
+
"precision": 0.9355988629299183,
|
| 173 |
+
"recall": 0.941717791411043,
|
| 174 |
+
"f1-score": 0.9371210751487886,
|
| 175 |
+
"support": 978.0
|
| 176 |
}
|
| 177 |
},
|
| 178 |
+
"roc_auc": 0.871530955632841,
|
| 179 |
+
"average_precision": 0.5935308473185881
|
| 180 |
},
|
| 181 |
"test_default_0_5": {
|
| 182 |
"threshold": 0.5,
|
| 183 |
+
"accuracy": 0.9261811023622047,
|
| 184 |
+
"precision": 0.6907216494845361,
|
| 185 |
+
"recall": 0.5982142857142857,
|
| 186 |
+
"f1": 0.6411483253588517,
|
| 187 |
"confusion_matrix": [
|
| 188 |
[
|
| 189 |
+
874,
|
| 190 |
+
30
|
| 191 |
],
|
| 192 |
[
|
| 193 |
+
45,
|
| 194 |
+
67
|
| 195 |
]
|
| 196 |
],
|
| 197 |
"classification_report": {
|
| 198 |
"NOT_RELEVANT": {
|
| 199 |
+
"precision": 0.9510337323177367,
|
| 200 |
+
"recall": 0.9668141592920354,
|
| 201 |
+
"f1-score": 0.9588590235874932,
|
| 202 |
+
"support": 904.0
|
| 203 |
},
|
| 204 |
"RELEVANT": {
|
| 205 |
+
"precision": 0.6907216494845361,
|
| 206 |
+
"recall": 0.5982142857142857,
|
| 207 |
+
"f1-score": 0.6411483253588517,
|
| 208 |
+
"support": 112.0
|
| 209 |
},
|
| 210 |
+
"accuracy": 0.9261811023622047,
|
| 211 |
"macro avg": {
|
| 212 |
+
"precision": 0.8208776909011364,
|
| 213 |
+
"recall": 0.7825142225031605,
|
| 214 |
+
"f1-score": 0.8000036744731724,
|
| 215 |
+
"support": 1016.0
|
| 216 |
},
|
| 217 |
"weighted avg": {
|
| 218 |
+
"precision": 0.9223379121628957,
|
| 219 |
+
"recall": 0.9261811023622047,
|
| 220 |
+
"f1-score": 0.9238357970111075,
|
| 221 |
+
"support": 1016.0
|
| 222 |
}
|
| 223 |
},
|
| 224 |
+
"roc_auc": 0.8990004740834386,
|
| 225 |
+
"average_precision": 0.7262348311700503
|
| 226 |
},
|
| 227 |
"test_optimal_threshold": {
|
| 228 |
+
"threshold": 0.6076606929552563,
|
| 229 |
+
"accuracy": 0.9301181102362205,
|
| 230 |
+
"precision": 0.9019607843137255,
|
| 231 |
+
"recall": 0.4107142857142857,
|
| 232 |
+
"f1": 0.5644171779141104,
|
| 233 |
"confusion_matrix": [
|
| 234 |
[
|
| 235 |
+
899,
|
| 236 |
+
5
|
| 237 |
],
|
| 238 |
[
|
| 239 |
+
66,
|
| 240 |
+
46
|
| 241 |
]
|
| 242 |
],
|
| 243 |
"classification_report": {
|
| 244 |
"NOT_RELEVANT": {
|
| 245 |
+
"precision": 0.9316062176165804,
|
| 246 |
+
"recall": 0.9944690265486725,
|
| 247 |
+
"f1-score": 0.962011771000535,
|
| 248 |
+
"support": 904.0
|
| 249 |
},
|
| 250 |
"RELEVANT": {
|
| 251 |
+
"precision": 0.9019607843137255,
|
| 252 |
+
"recall": 0.4107142857142857,
|
| 253 |
+
"f1-score": 0.5644171779141104,
|
| 254 |
+
"support": 112.0
|
| 255 |
},
|
| 256 |
+
"accuracy": 0.9301181102362205,
|
| 257 |
"macro avg": {
|
| 258 |
+
"precision": 0.9167835009651529,
|
| 259 |
+
"recall": 0.7025916561314791,
|
| 260 |
+
"f1-score": 0.7632144744573227,
|
| 261 |
+
"support": 1016.0
|
| 262 |
},
|
| 263 |
"weighted avg": {
|
| 264 |
+
"precision": 0.9283382170950057,
|
| 265 |
+
"recall": 0.9301181102362205,
|
| 266 |
+
"f1-score": 0.9181824457784095,
|
| 267 |
+
"support": 1016.0
|
| 268 |
}
|
| 269 |
},
|
| 270 |
+
"roc_auc": 0.8990004740834386,
|
| 271 |
+
"average_precision": 0.7262348311700503
|
| 272 |
}
|
| 273 |
},
|
| 274 |
{
|
|
|
|
| 277 |
"artifact_dir": "/content/agri-utilization-classifier/baselines/xgboost",
|
| 278 |
"artifact_file": "/content/agri-utilization-classifier/baselines/xgboost/xgboost_tfidf.joblib",
|
| 279 |
"validation_best_threshold": {
|
| 280 |
+
"threshold": 0.17728303372859955,
|
| 281 |
+
"f1": 0.5806451612903226,
|
| 282 |
+
"precision": 0.5921052631578947,
|
| 283 |
+
"recall": 0.569620253164557
|
| 284 |
},
|
| 285 |
"validation_default_0_5": {
|
| 286 |
"threshold": 0.5,
|
| 287 |
+
"accuracy": 0.9447852760736196,
|
| 288 |
+
"precision": 0.9310344827586207,
|
| 289 |
+
"recall": 0.34177215189873417,
|
| 290 |
+
"f1": 0.5,
|
| 291 |
"confusion_matrix": [
|
| 292 |
[
|
| 293 |
+
897,
|
| 294 |
+
2
|
| 295 |
],
|
| 296 |
[
|
| 297 |
+
52,
|
| 298 |
+
27
|
| 299 |
]
|
| 300 |
],
|
| 301 |
"classification_report": {
|
| 302 |
"NOT_RELEVANT": {
|
| 303 |
+
"precision": 0.9452054794520548,
|
| 304 |
+
"recall": 0.9977753058954394,
|
| 305 |
+
"f1-score": 0.9707792207792207,
|
| 306 |
+
"support": 899.0
|
| 307 |
},
|
| 308 |
"RELEVANT": {
|
| 309 |
+
"precision": 0.9310344827586207,
|
| 310 |
+
"recall": 0.34177215189873417,
|
| 311 |
+
"f1-score": 0.5,
|
| 312 |
+
"support": 79.0
|
| 313 |
},
|
| 314 |
+
"accuracy": 0.9447852760736196,
|
| 315 |
"macro avg": {
|
| 316 |
+
"precision": 0.9381199811053378,
|
| 317 |
+
"recall": 0.6697737288970868,
|
| 318 |
+
"f1-score": 0.7353896103896104,
|
| 319 |
+
"support": 978.0
|
| 320 |
},
|
| 321 |
"weighted avg": {
|
| 322 |
+
"precision": 0.9440607874901108,
|
| 323 |
+
"recall": 0.9447852760736196,
|
| 324 |
+
"f1-score": 0.9327510424136191,
|
| 325 |
+
"support": 978.0
|
| 326 |
}
|
| 327 |
},
|
| 328 |
+
"roc_auc": 0.822629926359809,
|
| 329 |
+
"average_precision": 0.5882293042162409
|
| 330 |
},
|
| 331 |
"validation_optimal_threshold": {
|
| 332 |
+
"threshold": 0.17728303372859955,
|
| 333 |
+
"accuracy": 0.9335378323108384,
|
| 334 |
+
"precision": 0.5921052631578947,
|
| 335 |
+
"recall": 0.569620253164557,
|
| 336 |
+
"f1": 0.5806451612903226,
|
| 337 |
"confusion_matrix": [
|
| 338 |
[
|
| 339 |
+
868,
|
| 340 |
+
31
|
| 341 |
],
|
| 342 |
[
|
| 343 |
+
34,
|
| 344 |
+
45
|
| 345 |
]
|
| 346 |
],
|
| 347 |
"classification_report": {
|
| 348 |
"NOT_RELEVANT": {
|
| 349 |
+
"precision": 0.9623059866962306,
|
| 350 |
+
"recall": 0.9655172413793104,
|
| 351 |
+
"f1-score": 0.9639089394780678,
|
| 352 |
+
"support": 899.0
|
| 353 |
},
|
| 354 |
"RELEVANT": {
|
| 355 |
+
"precision": 0.5921052631578947,
|
| 356 |
+
"recall": 0.569620253164557,
|
| 357 |
+
"f1-score": 0.5806451612903226,
|
| 358 |
+
"support": 79.0
|
| 359 |
},
|
| 360 |
+
"accuracy": 0.9335378323108384,
|
| 361 |
"macro avg": {
|
| 362 |
+
"precision": 0.7772056249270627,
|
| 363 |
+
"recall": 0.7675687472719337,
|
| 364 |
+
"f1-score": 0.7722770503841951,
|
| 365 |
+
"support": 978.0
|
| 366 |
},
|
| 367 |
"weighted avg": {
|
| 368 |
+
"precision": 0.9324022472693098,
|
| 369 |
+
"recall": 0.9335378323108384,
|
| 370 |
+
"f1-score": 0.9329500044301825,
|
| 371 |
+
"support": 978.0
|
| 372 |
}
|
| 373 |
},
|
| 374 |
+
"roc_auc": 0.822629926359809,
|
| 375 |
+
"average_precision": 0.5882293042162409
|
| 376 |
},
|
| 377 |
"test_default_0_5": {
|
| 378 |
"threshold": 0.5,
|
| 379 |
+
"accuracy": 0.9242125984251969,
|
| 380 |
+
"precision": 1.0,
|
| 381 |
+
"recall": 0.3125,
|
| 382 |
+
"f1": 0.47619047619047616,
|
| 383 |
"confusion_matrix": [
|
| 384 |
[
|
| 385 |
+
904,
|
| 386 |
+
0
|
| 387 |
],
|
| 388 |
[
|
| 389 |
+
77,
|
| 390 |
+
35
|
| 391 |
]
|
| 392 |
],
|
| 393 |
"classification_report": {
|
| 394 |
"NOT_RELEVANT": {
|
| 395 |
+
"precision": 0.9215086646279307,
|
| 396 |
+
"recall": 1.0,
|
| 397 |
+
"f1-score": 0.9591511936339523,
|
| 398 |
+
"support": 904.0
|
| 399 |
},
|
| 400 |
"RELEVANT": {
|
| 401 |
+
"precision": 1.0,
|
| 402 |
+
"recall": 0.3125,
|
| 403 |
+
"f1-score": 0.47619047619047616,
|
| 404 |
+
"support": 112.0
|
| 405 |
},
|
| 406 |
+
"accuracy": 0.9242125984251969,
|
| 407 |
"macro avg": {
|
| 408 |
+
"precision": 0.9607543323139653,
|
| 409 |
+
"recall": 0.65625,
|
| 410 |
+
"f1-score": 0.7176708349122143,
|
| 411 |
+
"support": 1016.0
|
| 412 |
},
|
| 413 |
"weighted avg": {
|
| 414 |
+
"precision": 0.9301612527791825,
|
| 415 |
+
"recall": 0.9242125984251969,
|
| 416 |
+
"f1-score": 0.905911429506325,
|
| 417 |
+
"support": 1016.0
|
| 418 |
}
|
| 419 |
},
|
| 420 |
+
"roc_auc": 0.8921114491150443,
|
| 421 |
+
"average_precision": 0.6916666494483661
|
| 422 |
},
|
| 423 |
"test_optimal_threshold": {
|
| 424 |
+
"threshold": 0.17728303372859955,
|
| 425 |
+
"accuracy": 0.9183070866141733,
|
| 426 |
+
"precision": 0.6629213483146067,
|
| 427 |
+
"recall": 0.5267857142857143,
|
| 428 |
+
"f1": 0.5870646766169154,
|
| 429 |
"confusion_matrix": [
|
| 430 |
[
|
| 431 |
+
874,
|
| 432 |
+
30
|
| 433 |
],
|
| 434 |
[
|
| 435 |
+
53,
|
| 436 |
+
59
|
| 437 |
]
|
| 438 |
],
|
| 439 |
"classification_report": {
|
| 440 |
"NOT_RELEVANT": {
|
| 441 |
+
"precision": 0.9428263214670982,
|
| 442 |
+
"recall": 0.9668141592920354,
|
| 443 |
+
"f1-score": 0.9546695794647734,
|
| 444 |
+
"support": 904.0
|
| 445 |
},
|
| 446 |
"RELEVANT": {
|
| 447 |
+
"precision": 0.6629213483146067,
|
| 448 |
+
"recall": 0.5267857142857143,
|
| 449 |
+
"f1-score": 0.5870646766169154,
|
| 450 |
+
"support": 112.0
|
| 451 |
},
|
| 452 |
+
"accuracy": 0.9183070866141733,
|
| 453 |
"macro avg": {
|
| 454 |
+
"precision": 0.8028738348908524,
|
| 455 |
+
"recall": 0.7467999367888749,
|
| 456 |
+
"f1-score": 0.7708671280408443,
|
| 457 |
+
"support": 1016.0
|
| 458 |
},
|
| 459 |
"weighted avg": {
|
| 460 |
+
"precision": 0.9119706551353274,
|
| 461 |
+
"recall": 0.9183070866141733,
|
| 462 |
+
"f1-score": 0.9141462043476867,
|
| 463 |
+
"support": 1016.0
|
| 464 |
}
|
| 465 |
},
|
| 466 |
+
"roc_auc": 0.8921114491150443,
|
| 467 |
+
"average_precision": 0.6916666494483661
|
| 468 |
}
|
| 469 |
},
|
| 470 |
{
|
|
|
|
| 474 |
"artifact_dir": "/content/agri-utilization-classifier/baselines/embedding-logistic",
|
| 475 |
"artifact_file": "/content/agri-utilization-classifier/baselines/embedding-logistic/embedding-logistic.joblib",
|
| 476 |
"validation_best_threshold": {
|
| 477 |
+
"threshold": 0.7220411896705627,
|
| 478 |
+
"f1": 0.7529411764705883,
|
| 479 |
+
"precision": 0.7032967032967034,
|
| 480 |
+
"recall": 0.810126582278481
|
| 481 |
},
|
| 482 |
"validation_default_0_5": {
|
| 483 |
"threshold": 0.5,
|
| 484 |
+
"accuracy": 0.9120654396728016,
|
| 485 |
+
"precision": 0.4755244755244755,
|
| 486 |
+
"recall": 0.8607594936708861,
|
| 487 |
+
"f1": 0.6126126126126126,
|
| 488 |
"confusion_matrix": [
|
| 489 |
[
|
| 490 |
+
824,
|
| 491 |
+
75
|
| 492 |
],
|
| 493 |
[
|
| 494 |
+
11,
|
| 495 |
+
68
|
| 496 |
]
|
| 497 |
],
|
| 498 |
"classification_report": {
|
| 499 |
"NOT_RELEVANT": {
|
| 500 |
+
"precision": 0.9868263473053892,
|
| 501 |
+
"recall": 0.9165739710789766,
|
| 502 |
+
"f1-score": 0.9504036908881199,
|
| 503 |
+
"support": 899.0
|
| 504 |
},
|
| 505 |
"RELEVANT": {
|
| 506 |
+
"precision": 0.4755244755244755,
|
| 507 |
+
"recall": 0.8607594936708861,
|
| 508 |
+
"f1-score": 0.6126126126126126,
|
| 509 |
+
"support": 79.0
|
| 510 |
},
|
| 511 |
+
"accuracy": 0.9120654396728016,
|
| 512 |
"macro avg": {
|
| 513 |
+
"precision": 0.7311754114149324,
|
| 514 |
+
"recall": 0.8886667323749313,
|
| 515 |
+
"f1-score": 0.7815081517503663,
|
| 516 |
+
"support": 978.0
|
| 517 |
},
|
| 518 |
"weighted avg": {
|
| 519 |
+
"precision": 0.9455248668650087,
|
| 520 |
+
"recall": 0.9120654396728016,
|
| 521 |
+
"f1-score": 0.9231179084916321,
|
| 522 |
+
"support": 978.0
|
| 523 |
}
|
| 524 |
},
|
| 525 |
+
"roc_auc": 0.9525633263400967,
|
| 526 |
+
"average_precision": 0.7622834015915168
|
| 527 |
},
|
| 528 |
"validation_optimal_threshold": {
|
| 529 |
+
"threshold": 0.7220411896705627,
|
| 530 |
+
"accuracy": 0.9570552147239264,
|
| 531 |
+
"precision": 0.7032967032967034,
|
| 532 |
+
"recall": 0.810126582278481,
|
| 533 |
+
"f1": 0.7529411764705882,
|
| 534 |
"confusion_matrix": [
|
| 535 |
[
|
| 536 |
+
872,
|
| 537 |
+
27
|
| 538 |
],
|
| 539 |
[
|
| 540 |
+
15,
|
| 541 |
+
64
|
| 542 |
]
|
| 543 |
],
|
| 544 |
"classification_report": {
|
| 545 |
"NOT_RELEVANT": {
|
| 546 |
+
"precision": 0.9830890642615558,
|
| 547 |
+
"recall": 0.9699666295884316,
|
| 548 |
+
"f1-score": 0.9764837625979843,
|
| 549 |
+
"support": 899.0
|
| 550 |
},
|
| 551 |
"RELEVANT": {
|
| 552 |
+
"precision": 0.7032967032967034,
|
| 553 |
+
"recall": 0.810126582278481,
|
| 554 |
+
"f1-score": 0.7529411764705882,
|
| 555 |
+
"support": 79.0
|
| 556 |
},
|
| 557 |
+
"accuracy": 0.9570552147239264,
|
| 558 |
"macro avg": {
|
| 559 |
+
"precision": 0.8431928837791296,
|
| 560 |
+
"recall": 0.8900466059334563,
|
| 561 |
+
"f1-score": 0.8647124695342863,
|
| 562 |
+
"support": 978.0
|
| 563 |
},
|
| 564 |
"weighted avg": {
|
| 565 |
+
"precision": 0.9604882498277897,
|
| 566 |
+
"recall": 0.9570552147239264,
|
| 567 |
+
"f1-score": 0.9584266416326834,
|
| 568 |
+
"support": 978.0
|
| 569 |
}
|
| 570 |
},
|
| 571 |
+
"roc_auc": 0.9525633263400967,
|
| 572 |
+
"average_precision": 0.7622834015915168
|
| 573 |
},
|
| 574 |
"test_default_0_5": {
|
| 575 |
"threshold": 0.5,
|
| 576 |
+
"accuracy": 0.890748031496063,
|
| 577 |
+
"precision": 0.5025380710659898,
|
| 578 |
+
"recall": 0.8839285714285714,
|
| 579 |
+
"f1": 0.6407766990291263,
|
| 580 |
"confusion_matrix": [
|
| 581 |
[
|
| 582 |
+
806,
|
| 583 |
+
98
|
| 584 |
],
|
| 585 |
[
|
| 586 |
+
13,
|
| 587 |
+
99
|
| 588 |
]
|
| 589 |
],
|
| 590 |
"classification_report": {
|
| 591 |
"NOT_RELEVANT": {
|
| 592 |
+
"precision": 0.9841269841269841,
|
| 593 |
+
"recall": 0.8915929203539823,
|
| 594 |
+
"f1-score": 0.9355774811375508,
|
| 595 |
+
"support": 904.0
|
| 596 |
},
|
| 597 |
"RELEVANT": {
|
| 598 |
+
"precision": 0.5025380710659898,
|
| 599 |
+
"recall": 0.8839285714285714,
|
| 600 |
+
"f1-score": 0.6407766990291263,
|
| 601 |
+
"support": 112.0
|
| 602 |
},
|
| 603 |
+
"accuracy": 0.890748031496063,
|
| 604 |
"macro avg": {
|
| 605 |
+
"precision": 0.7433325275964869,
|
| 606 |
+
"recall": 0.8877607458912768,
|
| 607 |
+
"f1-score": 0.7881770900833385,
|
| 608 |
+
"support": 1016.0
|
| 609 |
},
|
| 610 |
"weighted avg": {
|
| 611 |
+
"precision": 0.9310384425297091,
|
| 612 |
+
"recall": 0.890748031496063,
|
| 613 |
+
"f1-score": 0.9030797571255984,
|
| 614 |
+
"support": 1016.0
|
| 615 |
}
|
| 616 |
},
|
| 617 |
+
"roc_auc": 0.955317635903919,
|
| 618 |
+
"average_precision": 0.7096184898069098
|
| 619 |
},
|
| 620 |
"test_optimal_threshold": {
|
| 621 |
+
"threshold": 0.7220411896705627,
|
| 622 |
+
"accuracy": 0.9350393700787402,
|
| 623 |
+
"precision": 0.6885245901639344,
|
| 624 |
+
"recall": 0.75,
|
| 625 |
+
"f1": 0.717948717948718,
|
| 626 |
"confusion_matrix": [
|
| 627 |
[
|
| 628 |
+
866,
|
| 629 |
+
38
|
| 630 |
],
|
| 631 |
[
|
| 632 |
+
28,
|
| 633 |
+
84
|
| 634 |
]
|
| 635 |
],
|
| 636 |
"classification_report": {
|
| 637 |
"NOT_RELEVANT": {
|
| 638 |
+
"precision": 0.9686800894854586,
|
| 639 |
+
"recall": 0.9579646017699115,
|
| 640 |
+
"f1-score": 0.9632925472747497,
|
| 641 |
+
"support": 904.0
|
| 642 |
},
|
| 643 |
"RELEVANT": {
|
| 644 |
+
"precision": 0.6885245901639344,
|
| 645 |
+
"recall": 0.75,
|
| 646 |
+
"f1-score": 0.717948717948718,
|
| 647 |
+
"support": 112.0
|
| 648 |
},
|
| 649 |
+
"accuracy": 0.9350393700787402,
|
| 650 |
"macro avg": {
|
| 651 |
+
"precision": 0.8286023398246964,
|
| 652 |
+
"recall": 0.8539823008849557,
|
| 653 |
+
"f1-score": 0.8406206326117338,
|
| 654 |
+
"support": 1016.0
|
| 655 |
},
|
| 656 |
"weighted avg": {
|
| 657 |
+
"precision": 0.9377968060956843,
|
| 658 |
+
"recall": 0.9350393700787402,
|
| 659 |
+
"f1-score": 0.9362467708136123,
|
| 660 |
+
"support": 1016.0
|
| 661 |
}
|
| 662 |
},
|
| 663 |
+
"roc_auc": 0.955317635903919,
|
| 664 |
+
"average_precision": 0.7096184898069098
|
| 665 |
}
|
| 666 |
},
|
| 667 |
{
|
|
|
|
| 671 |
"artifact_dir": "/content/agri-utilization-classifier/baselines/embedding-svm",
|
| 672 |
"artifact_file": "/content/agri-utilization-classifier/baselines/embedding-svm/embedding-svm.joblib",
|
| 673 |
"validation_best_threshold": {
|
| 674 |
+
"threshold": 0.30975184413575924,
|
| 675 |
+
"f1": 0.746987951807229,
|
| 676 |
+
"precision": 0.7126436781609196,
|
| 677 |
+
"recall": 0.7848101265822784
|
| 678 |
},
|
| 679 |
"validation_default_0_5": {
|
| 680 |
"threshold": 0.5,
|
| 681 |
+
"accuracy": 0.9550102249488752,
|
| 682 |
+
"precision": 0.8070175438596491,
|
| 683 |
+
"recall": 0.5822784810126582,
|
| 684 |
+
"f1": 0.6764705882352942,
|
| 685 |
"confusion_matrix": [
|
| 686 |
[
|
| 687 |
+
888,
|
| 688 |
+
11
|
| 689 |
],
|
| 690 |
[
|
| 691 |
+
33,
|
| 692 |
+
46
|
| 693 |
]
|
| 694 |
],
|
| 695 |
"classification_report": {
|
| 696 |
"NOT_RELEVANT": {
|
| 697 |
+
"precision": 0.9641693811074918,
|
| 698 |
+
"recall": 0.9877641824249166,
|
| 699 |
+
"f1-score": 0.9758241758241758,
|
| 700 |
+
"support": 899.0
|
| 701 |
},
|
| 702 |
"RELEVANT": {
|
| 703 |
+
"precision": 0.8070175438596491,
|
| 704 |
+
"recall": 0.5822784810126582,
|
| 705 |
+
"f1-score": 0.6764705882352942,
|
| 706 |
+
"support": 79.0
|
| 707 |
},
|
| 708 |
+
"accuracy": 0.9550102249488752,
|
| 709 |
"macro avg": {
|
| 710 |
+
"precision": 0.8855934624835704,
|
| 711 |
+
"recall": 0.7850213317187874,
|
| 712 |
+
"f1-score": 0.8261473820297349,
|
| 713 |
+
"support": 978.0
|
| 714 |
},
|
| 715 |
"weighted avg": {
|
| 716 |
+
"precision": 0.9514751120455496,
|
| 717 |
+
"recall": 0.9550102249488752,
|
| 718 |
+
"f1-score": 0.9516432623072826,
|
| 719 |
+
"support": 978.0
|
| 720 |
}
|
| 721 |
},
|
| 722 |
+
"roc_auc": 0.9524506836006251,
|
| 723 |
+
"average_precision": 0.7542419360138435
|
| 724 |
},
|
| 725 |
"validation_optimal_threshold": {
|
| 726 |
+
"threshold": 0.30975184413575924,
|
| 727 |
+
"accuracy": 0.9570552147239264,
|
| 728 |
+
"precision": 0.7126436781609196,
|
| 729 |
+
"recall": 0.7848101265822784,
|
| 730 |
+
"f1": 0.7469879518072289,
|
| 731 |
"confusion_matrix": [
|
| 732 |
[
|
| 733 |
+
874,
|
| 734 |
+
25
|
| 735 |
],
|
| 736 |
[
|
| 737 |
+
17,
|
| 738 |
+
62
|
| 739 |
]
|
| 740 |
],
|
| 741 |
"classification_report": {
|
| 742 |
"NOT_RELEVANT": {
|
| 743 |
+
"precision": 0.9809203142536476,
|
| 744 |
+
"recall": 0.9721913236929922,
|
| 745 |
+
"f1-score": 0.976536312849162,
|
| 746 |
+
"support": 899.0
|
| 747 |
},
|
| 748 |
"RELEVANT": {
|
| 749 |
+
"precision": 0.7126436781609196,
|
| 750 |
+
"recall": 0.7848101265822784,
|
| 751 |
+
"f1-score": 0.7469879518072289,
|
| 752 |
+
"support": 79.0
|
| 753 |
},
|
| 754 |
+
"accuracy": 0.9570552147239264,
|
| 755 |
"macro avg": {
|
| 756 |
+
"precision": 0.8467819962072836,
|
| 757 |
+
"recall": 0.8785007251376353,
|
| 758 |
+
"f1-score": 0.8617621323281954,
|
| 759 |
+
"support": 978.0
|
| 760 |
},
|
| 761 |
"weighted avg": {
|
| 762 |
+
"precision": 0.9592497066347054,
|
| 763 |
+
"recall": 0.9570552147239264,
|
| 764 |
+
"f1-score": 0.9579940628263474,
|
| 765 |
+
"support": 978.0
|
| 766 |
}
|
| 767 |
},
|
| 768 |
+
"roc_auc": 0.9524506836006251,
|
| 769 |
+
"average_precision": 0.7542419360138435
|
| 770 |
},
|
| 771 |
"test_default_0_5": {
|
| 772 |
"threshold": 0.5,
|
| 773 |
+
"accuracy": 0.9301181102362205,
|
| 774 |
+
"precision": 0.7411764705882353,
|
| 775 |
+
"recall": 0.5625,
|
| 776 |
+
"f1": 0.6395939086294417,
|
| 777 |
"confusion_matrix": [
|
| 778 |
[
|
| 779 |
+
882,
|
| 780 |
+
22
|
| 781 |
],
|
| 782 |
[
|
| 783 |
+
49,
|
| 784 |
+
63
|
| 785 |
]
|
| 786 |
],
|
| 787 |
"classification_report": {
|
| 788 |
"NOT_RELEVANT": {
|
| 789 |
+
"precision": 0.9473684210526315,
|
| 790 |
+
"recall": 0.9756637168141593,
|
| 791 |
+
"f1-score": 0.9613079019073569,
|
| 792 |
+
"support": 904.0
|
| 793 |
},
|
| 794 |
"RELEVANT": {
|
| 795 |
+
"precision": 0.7411764705882353,
|
| 796 |
+
"recall": 0.5625,
|
| 797 |
+
"f1-score": 0.6395939086294417,
|
| 798 |
+
"support": 112.0
|
| 799 |
},
|
| 800 |
+
"accuracy": 0.9301181102362205,
|
| 801 |
"macro avg": {
|
| 802 |
+
"precision": 0.8442724458204334,
|
| 803 |
+
"recall": 0.7690818584070797,
|
| 804 |
+
"f1-score": 0.8004509052683992,
|
| 805 |
+
"support": 1016.0
|
| 806 |
},
|
| 807 |
"weighted avg": {
|
| 808 |
+
"precision": 0.9246385997415957,
|
| 809 |
+
"recall": 0.9301181102362205,
|
| 810 |
+
"f1-score": 0.9258433672153032,
|
| 811 |
+
"support": 1016.0
|
| 812 |
}
|
| 813 |
},
|
| 814 |
+
"roc_auc": 0.9563744469026548,
|
| 815 |
+
"average_precision": 0.7035914186137721
|
| 816 |
},
|
| 817 |
"test_optimal_threshold": {
|
| 818 |
+
"threshold": 0.30975184413575924,
|
| 819 |
+
"accuracy": 0.9340551181102362,
|
| 820 |
+
"precision": 0.6859504132231405,
|
| 821 |
+
"recall": 0.7410714285714286,
|
| 822 |
+
"f1": 0.7124463519313304,
|
| 823 |
"confusion_matrix": [
|
| 824 |
[
|
| 825 |
+
866,
|
| 826 |
+
38
|
| 827 |
],
|
| 828 |
[
|
| 829 |
+
29,
|
| 830 |
+
83
|
| 831 |
]
|
| 832 |
],
|
| 833 |
"classification_report": {
|
| 834 |
"NOT_RELEVANT": {
|
| 835 |
+
"precision": 0.9675977653631285,
|
| 836 |
+
"recall": 0.9579646017699115,
|
| 837 |
+
"f1-score": 0.962757087270706,
|
| 838 |
+
"support": 904.0
|
| 839 |
},
|
| 840 |
"RELEVANT": {
|
| 841 |
+
"precision": 0.6859504132231405,
|
| 842 |
+
"recall": 0.7410714285714286,
|
| 843 |
+
"f1-score": 0.7124463519313304,
|
| 844 |
+
"support": 112.0
|
| 845 |
},
|
| 846 |
+
"accuracy": 0.9340551181102362,
|
| 847 |
"macro avg": {
|
| 848 |
+
"precision": 0.8267740892931346,
|
| 849 |
+
"recall": 0.84951801517067,
|
| 850 |
+
"f1-score": 0.8376017196010181,
|
| 851 |
+
"support": 1016.0
|
| 852 |
},
|
| 853 |
"weighted avg": {
|
| 854 |
+
"precision": 0.9365500257571455,
|
| 855 |
+
"recall": 0.9340551181102362,
|
| 856 |
+
"f1-score": 0.9351637778632157,
|
| 857 |
+
"support": 1016.0
|
| 858 |
}
|
| 859 |
},
|
| 860 |
+
"roc_auc": 0.9563744469026548,
|
| 861 |
+
"average_precision": 0.7035914186137721
|
| 862 |
}
|
| 863 |
},
|
| 864 |
{
|
|
|
|
| 868 |
"artifact_dir": "/content/agri-utilization-classifier/baselines/embedding-lightgbm",
|
| 869 |
"artifact_file": "/content/agri-utilization-classifier/baselines/embedding-lightgbm/embedding-lightgbm.joblib",
|
| 870 |
"validation_best_threshold": {
|
| 871 |
+
"threshold": 0.042041465431985434,
|
| 872 |
+
"f1": 0.7283236994219654,
|
| 873 |
+
"precision": 0.6702127659574468,
|
| 874 |
+
"recall": 0.7974683544303798
|
| 875 |
},
|
| 876 |
"validation_default_0_5": {
|
| 877 |
"threshold": 0.5,
|
| 878 |
+
"accuracy": 0.9539877300613497,
|
| 879 |
+
"precision": 0.75,
|
| 880 |
+
"recall": 0.6455696202531646,
|
| 881 |
+
"f1": 0.6938775510204082,
|
| 882 |
"confusion_matrix": [
|
| 883 |
[
|
| 884 |
+
882,
|
| 885 |
+
17
|
| 886 |
],
|
| 887 |
[
|
| 888 |
+
28,
|
| 889 |
+
51
|
| 890 |
]
|
| 891 |
],
|
| 892 |
"classification_report": {
|
| 893 |
"NOT_RELEVANT": {
|
| 894 |
+
"precision": 0.9692307692307692,
|
| 895 |
+
"recall": 0.9810901001112347,
|
| 896 |
+
"f1-score": 0.9751243781094527,
|
| 897 |
+
"support": 899.0
|
| 898 |
},
|
| 899 |
"RELEVANT": {
|
| 900 |
+
"precision": 0.75,
|
| 901 |
+
"recall": 0.6455696202531646,
|
| 902 |
+
"f1-score": 0.6938775510204082,
|
| 903 |
+
"support": 79.0
|
| 904 |
},
|
| 905 |
+
"accuracy": 0.9539877300613497,
|
| 906 |
"macro avg": {
|
| 907 |
+
"precision": 0.8596153846153847,
|
| 908 |
+
"recall": 0.8133298601821997,
|
| 909 |
+
"f1-score": 0.8345009645649304,
|
| 910 |
+
"support": 978.0
|
| 911 |
},
|
| 912 |
"weighted avg": {
|
| 913 |
+
"precision": 0.9515219443133554,
|
| 914 |
+
"recall": 0.9539877300613497,
|
| 915 |
+
"f1-score": 0.9524060761257774,
|
| 916 |
+
"support": 978.0
|
| 917 |
}
|
| 918 |
},
|
| 919 |
+
"roc_auc": 0.9480716971036736,
|
| 920 |
+
"average_precision": 0.7818499996214695
|
| 921 |
},
|
| 922 |
"validation_optimal_threshold": {
|
| 923 |
+
"threshold": 0.042041465431985434,
|
| 924 |
+
"accuracy": 0.9519427402862985,
|
| 925 |
+
"precision": 0.6702127659574468,
|
| 926 |
+
"recall": 0.7974683544303798,
|
| 927 |
+
"f1": 0.7283236994219653,
|
| 928 |
"confusion_matrix": [
|
| 929 |
[
|
| 930 |
+
868,
|
| 931 |
+
31
|
| 932 |
],
|
| 933 |
[
|
| 934 |
+
16,
|
| 935 |
+
63
|
| 936 |
]
|
| 937 |
],
|
| 938 |
"classification_report": {
|
| 939 |
"NOT_RELEVANT": {
|
| 940 |
+
"precision": 0.9819004524886877,
|
| 941 |
+
"recall": 0.9655172413793104,
|
| 942 |
+
"f1-score": 0.9736399326977005,
|
| 943 |
+
"support": 899.0
|
| 944 |
},
|
| 945 |
"RELEVANT": {
|
| 946 |
+
"precision": 0.6702127659574468,
|
| 947 |
+
"recall": 0.7974683544303798,
|
| 948 |
+
"f1-score": 0.7283236994219653,
|
| 949 |
+
"support": 79.0
|
| 950 |
},
|
| 951 |
+
"accuracy": 0.9519427402862985,
|
| 952 |
"macro avg": {
|
| 953 |
+
"precision": 0.8260566092230672,
|
| 954 |
+
"recall": 0.881492797904845,
|
| 955 |
+
"f1-score": 0.8509818160598329,
|
| 956 |
+
"support": 978.0
|
| 957 |
},
|
| 958 |
"weighted avg": {
|
| 959 |
+
"precision": 0.9567232262760416,
|
| 960 |
+
"recall": 0.9519427402862985,
|
| 961 |
+
"f1-score": 0.9538239997439346,
|
| 962 |
+
"support": 978.0
|
| 963 |
}
|
| 964 |
},
|
| 965 |
+
"roc_auc": 0.9480716971036736,
|
| 966 |
+
"average_precision": 0.7818499996214695
|
| 967 |
},
|
| 968 |
"test_default_0_5": {
|
| 969 |
"threshold": 0.5,
|
| 970 |
+
"accuracy": 0.937007874015748,
|
| 971 |
+
"precision": 0.74,
|
| 972 |
+
"recall": 0.6607142857142857,
|
| 973 |
+
"f1": 0.6981132075471698,
|
| 974 |
"confusion_matrix": [
|
| 975 |
[
|
| 976 |
+
878,
|
| 977 |
+
26
|
| 978 |
],
|
| 979 |
[
|
| 980 |
+
38,
|
| 981 |
+
74
|
| 982 |
]
|
| 983 |
],
|
| 984 |
"classification_report": {
|
| 985 |
"NOT_RELEVANT": {
|
| 986 |
+
"precision": 0.9585152838427947,
|
| 987 |
+
"recall": 0.9712389380530974,
|
| 988 |
+
"f1-score": 0.9648351648351648,
|
| 989 |
+
"support": 904.0
|
| 990 |
},
|
| 991 |
"RELEVANT": {
|
| 992 |
+
"precision": 0.74,
|
| 993 |
+
"recall": 0.6607142857142857,
|
| 994 |
+
"f1-score": 0.6981132075471698,
|
| 995 |
+
"support": 112.0
|
| 996 |
},
|
| 997 |
+
"accuracy": 0.937007874015748,
|
| 998 |
"macro avg": {
|
| 999 |
+
"precision": 0.8492576419213973,
|
| 1000 |
+
"recall": 0.8159766118836915,
|
| 1001 |
+
"f1-score": 0.8314741861911673,
|
| 1002 |
+
"support": 1016.0
|
| 1003 |
},
|
| 1004 |
"weighted avg": {
|
| 1005 |
+
"precision": 0.9344269848365024,
|
| 1006 |
+
"recall": 0.937007874015748,
|
| 1007 |
+
"f1-score": 0.9354327443467244,
|
| 1008 |
+
"support": 1016.0
|
| 1009 |
}
|
| 1010 |
},
|
| 1011 |
+
"roc_auc": 0.9597819216182049,
|
| 1012 |
+
"average_precision": 0.7911233572387708
|
| 1013 |
},
|
| 1014 |
"test_optimal_threshold": {
|
| 1015 |
+
"threshold": 0.042041465431985434,
|
| 1016 |
+
"accuracy": 0.9291338582677166,
|
| 1017 |
+
"precision": 0.6388888888888888,
|
| 1018 |
+
"recall": 0.8214285714285714,
|
| 1019 |
+
"f1": 0.71875,
|
| 1020 |
"confusion_matrix": [
|
| 1021 |
[
|
| 1022 |
+
852,
|
| 1023 |
+
52
|
| 1024 |
],
|
| 1025 |
[
|
| 1026 |
+
20,
|
| 1027 |
+
92
|
| 1028 |
]
|
| 1029 |
],
|
| 1030 |
"classification_report": {
|
| 1031 |
"NOT_RELEVANT": {
|
| 1032 |
+
"precision": 0.9770642201834863,
|
| 1033 |
+
"recall": 0.9424778761061947,
|
| 1034 |
+
"f1-score": 0.9594594594594594,
|
| 1035 |
+
"support": 904.0
|
| 1036 |
},
|
| 1037 |
"RELEVANT": {
|
| 1038 |
+
"precision": 0.6388888888888888,
|
| 1039 |
+
"recall": 0.8214285714285714,
|
| 1040 |
+
"f1-score": 0.71875,
|
| 1041 |
+
"support": 112.0
|
| 1042 |
},
|
| 1043 |
+
"accuracy": 0.9291338582677166,
|
| 1044 |
"macro avg": {
|
| 1045 |
+
"precision": 0.8079765545361876,
|
| 1046 |
+
"recall": 0.881953223767383,
|
| 1047 |
+
"f1-score": 0.8391047297297297,
|
| 1048 |
+
"support": 1016.0
|
| 1049 |
},
|
| 1050 |
"weighted avg": {
|
| 1051 |
+
"precision": 0.9397850498045542,
|
| 1052 |
+
"recall": 0.9291338582677166,
|
| 1053 |
+
"f1-score": 0.9329245584166844,
|
| 1054 |
+
"support": 1016.0
|
| 1055 |
}
|
| 1056 |
},
|
| 1057 |
+
"roc_auc": 0.9597819216182049,
|
| 1058 |
+
"average_precision": 0.7911233572387708
|
| 1059 |
}
|
| 1060 |
},
|
| 1061 |
{
|
|
|
|
| 1063 |
"model_name": "FacebookAI/xlm-roberta-base",
|
| 1064 |
"artifact_dir": "/content/agri-utilization-classifier/transformer",
|
| 1065 |
"validation_best_threshold": {
|
| 1066 |
+
"threshold": 0.8530579209327698,
|
| 1067 |
+
"f1": 0.8176100628930818,
|
| 1068 |
+
"precision": 0.8125,
|
| 1069 |
+
"recall": 0.8227848101265823
|
| 1070 |
},
|
| 1071 |
"validation_default_0_5": {
|
| 1072 |
"threshold": 0.5,
|
| 1073 |
+
"accuracy": 0.9642126789366053,
|
| 1074 |
+
"precision": 0.7391304347826086,
|
| 1075 |
+
"recall": 0.8607594936708861,
|
| 1076 |
+
"f1": 0.7953216374269005,
|
| 1077 |
"confusion_matrix": [
|
| 1078 |
[
|
| 1079 |
+
875,
|
| 1080 |
+
24
|
| 1081 |
],
|
| 1082 |
[
|
| 1083 |
+
11,
|
| 1084 |
+
68
|
| 1085 |
]
|
| 1086 |
],
|
| 1087 |
"classification_report": {
|
| 1088 |
"NOT_RELEVANT": {
|
| 1089 |
+
"precision": 0.9875846501128668,
|
| 1090 |
+
"recall": 0.9733036707452726,
|
| 1091 |
+
"f1-score": 0.9803921568627451,
|
| 1092 |
+
"support": 899.0
|
| 1093 |
},
|
| 1094 |
"RELEVANT": {
|
| 1095 |
+
"precision": 0.7391304347826086,
|
| 1096 |
+
"recall": 0.8607594936708861,
|
| 1097 |
+
"f1-score": 0.7953216374269005,
|
| 1098 |
+
"support": 79.0
|
| 1099 |
},
|
| 1100 |
+
"accuracy": 0.9642126789366053,
|
| 1101 |
"macro avg": {
|
| 1102 |
+
"precision": 0.8633575424477378,
|
| 1103 |
+
"recall": 0.9170315822080793,
|
| 1104 |
+
"f1-score": 0.8878568971448229,
|
| 1105 |
+
"support": 978.0
|
| 1106 |
},
|
| 1107 |
"weighted avg": {
|
| 1108 |
+
"precision": 0.967515240081077,
|
| 1109 |
+
"recall": 0.9642126789366053,
|
| 1110 |
+
"f1-score": 0.9654426977263119,
|
| 1111 |
+
"support": 978.0
|
| 1112 |
}
|
| 1113 |
},
|
| 1114 |
+
"roc_auc": 0.970269356950761,
|
| 1115 |
+
"average_precision": 0.8739151313075953
|
| 1116 |
},
|
| 1117 |
"validation_optimal_threshold": {
|
| 1118 |
+
"threshold": 0.8530579209327698,
|
| 1119 |
+
"accuracy": 0.9703476482617587,
|
| 1120 |
+
"precision": 0.8125,
|
| 1121 |
+
"recall": 0.8227848101265823,
|
| 1122 |
+
"f1": 0.8176100628930818,
|
| 1123 |
"confusion_matrix": [
|
| 1124 |
[
|
| 1125 |
+
884,
|
| 1126 |
+
15
|
| 1127 |
],
|
| 1128 |
[
|
| 1129 |
+
14,
|
| 1130 |
+
65
|
| 1131 |
]
|
| 1132 |
],
|
| 1133 |
"classification_report": {
|
| 1134 |
"NOT_RELEVANT": {
|
| 1135 |
+
"precision": 0.9844097995545658,
|
| 1136 |
+
"recall": 0.9833147942157954,
|
| 1137 |
+
"f1-score": 0.9838619922092376,
|
| 1138 |
+
"support": 899.0
|
| 1139 |
},
|
| 1140 |
"RELEVANT": {
|
| 1141 |
+
"precision": 0.8125,
|
| 1142 |
+
"recall": 0.8227848101265823,
|
| 1143 |
+
"f1-score": 0.8176100628930818,
|
| 1144 |
+
"support": 79.0
|
| 1145 |
},
|
| 1146 |
+
"accuracy": 0.9703476482617587,
|
| 1147 |
"macro avg": {
|
| 1148 |
+
"precision": 0.8984548997772829,
|
| 1149 |
+
"recall": 0.9030498021711888,
|
| 1150 |
+
"f1-score": 0.9007360275511598,
|
| 1151 |
+
"support": 978.0
|
| 1152 |
},
|
| 1153 |
"weighted avg": {
|
| 1154 |
+
"precision": 0.9705234251529189,
|
| 1155 |
+
"recall": 0.9703476482617587,
|
| 1156 |
+
"f1-score": 0.9704326441356423,
|
| 1157 |
+
"support": 978.0
|
| 1158 |
}
|
| 1159 |
},
|
| 1160 |
+
"roc_auc": 0.970269356950761,
|
| 1161 |
+
"average_precision": 0.8739151313075953
|
| 1162 |
},
|
| 1163 |
"test_default_0_5": {
|
| 1164 |
"threshold": 0.5,
|
| 1165 |
+
"accuracy": 0.9389763779527559,
|
| 1166 |
+
"precision": 0.6893939393939394,
|
| 1167 |
+
"recall": 0.8125,
|
| 1168 |
+
"f1": 0.7459016393442623,
|
| 1169 |
"confusion_matrix": [
|
| 1170 |
[
|
| 1171 |
+
863,
|
| 1172 |
+
41
|
| 1173 |
],
|
| 1174 |
[
|
| 1175 |
+
21,
|
| 1176 |
+
91
|
| 1177 |
]
|
| 1178 |
],
|
| 1179 |
"classification_report": {
|
| 1180 |
"NOT_RELEVANT": {
|
| 1181 |
+
"precision": 0.9762443438914027,
|
| 1182 |
+
"recall": 0.9546460176991151,
|
| 1183 |
+
"f1-score": 0.9653243847874721,
|
| 1184 |
+
"support": 904.0
|
| 1185 |
},
|
| 1186 |
"RELEVANT": {
|
| 1187 |
+
"precision": 0.6893939393939394,
|
| 1188 |
+
"recall": 0.8125,
|
| 1189 |
+
"f1-score": 0.7459016393442623,
|
| 1190 |
+
"support": 112.0
|
| 1191 |
},
|
| 1192 |
+
"accuracy": 0.9389763779527559,
|
| 1193 |
"macro avg": {
|
| 1194 |
+
"precision": 0.8328191416426711,
|
| 1195 |
+
"recall": 0.8835730088495575,
|
| 1196 |
+
"f1-score": 0.8556130120658672,
|
| 1197 |
+
"support": 1016.0
|
| 1198 |
},
|
| 1199 |
"weighted avg": {
|
| 1200 |
+
"precision": 0.9446230394586115,
|
| 1201 |
+
"recall": 0.9389763779527559,
|
| 1202 |
+
"f1-score": 0.9411360506441261,
|
| 1203 |
+
"support": 1016.0
|
| 1204 |
}
|
| 1205 |
},
|
| 1206 |
+
"roc_auc": 0.9680438132111251,
|
| 1207 |
+
"average_precision": 0.7939198461060525
|
| 1208 |
},
|
| 1209 |
"test_optimal_threshold": {
|
| 1210 |
+
"threshold": 0.8530579209327698,
|
| 1211 |
+
"accuracy": 0.9468503937007874,
|
| 1212 |
+
"precision": 0.7543859649122807,
|
| 1213 |
+
"recall": 0.7678571428571429,
|
| 1214 |
+
"f1": 0.7610619469026548,
|
| 1215 |
"confusion_matrix": [
|
| 1216 |
[
|
| 1217 |
+
876,
|
| 1218 |
+
28
|
| 1219 |
],
|
| 1220 |
[
|
| 1221 |
+
26,
|
| 1222 |
+
86
|
| 1223 |
]
|
| 1224 |
],
|
| 1225 |
"classification_report": {
|
| 1226 |
"NOT_RELEVANT": {
|
| 1227 |
+
"precision": 0.9711751662971175,
|
| 1228 |
+
"recall": 0.9690265486725663,
|
| 1229 |
+
"f1-score": 0.9700996677740864,
|
| 1230 |
+
"support": 904.0
|
| 1231 |
},
|
| 1232 |
"RELEVANT": {
|
| 1233 |
+
"precision": 0.7543859649122807,
|
| 1234 |
+
"recall": 0.7678571428571429,
|
| 1235 |
+
"f1-score": 0.7610619469026548,
|
| 1236 |
+
"support": 112.0
|
| 1237 |
},
|
| 1238 |
+
"accuracy": 0.9468503937007874,
|
| 1239 |
"macro avg": {
|
| 1240 |
+
"precision": 0.8627805656046992,
|
| 1241 |
+
"recall": 0.8684418457648546,
|
| 1242 |
+
"f1-score": 0.8655808073383706,
|
| 1243 |
+
"support": 1016.0
|
| 1244 |
},
|
| 1245 |
"weighted avg": {
|
| 1246 |
+
"precision": 0.9472771440972143,
|
| 1247 |
+
"recall": 0.9468503937007874,
|
| 1248 |
+
"f1-score": 0.9470561394890468,
|
| 1249 |
+
"support": 1016.0
|
| 1250 |
}
|
| 1251 |
},
|
| 1252 |
+
"roc_auc": 0.9680438132111251,
|
| 1253 |
+
"average_precision": 0.7939198461060525
|
| 1254 |
}
|
| 1255 |
}
|
| 1256 |
]
|
transformer/checkpoint-1220/config.json
CHANGED
|
@@ -32,7 +32,7 @@
|
|
| 32 |
"position_embedding_type": "absolute",
|
| 33 |
"problem_type": "single_label_classification",
|
| 34 |
"tie_word_embeddings": true,
|
| 35 |
-
"transformers_version": "5.
|
| 36 |
"type_vocab_size": 1,
|
| 37 |
"use_cache": false,
|
| 38 |
"vocab_size": 250002
|
|
|
|
| 32 |
"position_embedding_type": "absolute",
|
| 33 |
"problem_type": "single_label_classification",
|
| 34 |
"tie_word_embeddings": true,
|
| 35 |
+
"transformers_version": "5.11.0",
|
| 36 |
"type_vocab_size": 1,
|
| 37 |
"use_cache": false,
|
| 38 |
"vocab_size": 250002
|
transformer/checkpoint-1220/model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1112205008
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48543c03a6d419a8f3d0749c13b5d0de59f4008a7582f216ab13a0ed436bae82
|
| 3 |
size 1112205008
|
transformer/checkpoint-1220/optimizer.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2224532875
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:689c019a35a3b07613661189234eef12454ec5f3efac37409895ed61c11a7f3a
|
| 3 |
size 2224532875
|
transformer/checkpoint-1220/rng_state.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 14645
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e47023fdf7fee85f2c66207ee2960719b8bf1b11c2d946d75e0d2fe33113c7ce
|
| 3 |
size 14645
|
transformer/checkpoint-1220/scaler.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1383
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d50e15c360f5b08b915764c3557462bc0de90a0cf5f2f02120db3cc3a9e1b3c
|
| 3 |
size 1383
|
transformer/checkpoint-1220/scheduler.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1465
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6adfd2a8e363fb5adf050a01658d698ef3da72d5e9b197063c5e3b6a0fe9333
|
| 3 |
size 1465
|
transformer/checkpoint-1220/trainer_state.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
-
"best_global_step":
|
| 3 |
-
"best_metric": 0.
|
| 4 |
-
"best_model_checkpoint": "/content/agri-utilization-classifier/transformer/checkpoint-
|
| 5 |
-
"epoch":
|
| 6 |
"eval_steps": 500,
|
| 7 |
"global_step": 1220,
|
| 8 |
"is_hyper_param_search": false,
|
|
@@ -10,370 +10,396 @@
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
-
"epoch": 0.
|
| 14 |
-
"grad_norm": 3.
|
| 15 |
-
"learning_rate":
|
| 16 |
-
"loss": 0.
|
| 17 |
"step": 25
|
| 18 |
},
|
| 19 |
{
|
| 20 |
-
"epoch": 0.
|
| 21 |
-
"grad_norm":
|
| 22 |
-
"learning_rate":
|
| 23 |
-
"loss": 0.
|
| 24 |
"step": 50
|
| 25 |
},
|
| 26 |
{
|
| 27 |
-
"epoch": 0.
|
| 28 |
-
"grad_norm":
|
| 29 |
-
"learning_rate":
|
| 30 |
-
"loss": 0.
|
| 31 |
"step": 75
|
| 32 |
},
|
| 33 |
{
|
| 34 |
-
"epoch": 0.
|
| 35 |
-
"grad_norm":
|
| 36 |
-
"learning_rate":
|
| 37 |
-
"loss": 0.
|
| 38 |
"step": 100
|
| 39 |
},
|
| 40 |
{
|
| 41 |
-
"epoch": 0.
|
| 42 |
-
"grad_norm":
|
| 43 |
-
"learning_rate":
|
| 44 |
-
"loss": 0.
|
| 45 |
"step": 125
|
| 46 |
},
|
| 47 |
{
|
| 48 |
-
"epoch": 0.
|
| 49 |
-
"grad_norm":
|
| 50 |
-
"learning_rate":
|
| 51 |
-
"loss": 0.
|
| 52 |
"step": 150
|
| 53 |
},
|
| 54 |
{
|
| 55 |
-
"epoch": 0.
|
| 56 |
-
"grad_norm":
|
| 57 |
-
"learning_rate": 1.
|
| 58 |
-
"loss": 0.
|
| 59 |
"step": 175
|
| 60 |
},
|
| 61 |
{
|
| 62 |
-
"epoch": 0.
|
| 63 |
-
"grad_norm":
|
| 64 |
-
"learning_rate": 1.
|
| 65 |
-
"loss": 0.
|
| 66 |
"step": 200
|
| 67 |
},
|
| 68 |
{
|
| 69 |
-
"epoch": 0.
|
| 70 |
-
"grad_norm":
|
| 71 |
-
"learning_rate": 1.
|
| 72 |
-
"loss": 0.
|
| 73 |
"step": 225
|
| 74 |
},
|
| 75 |
{
|
| 76 |
-
"epoch": 0.
|
| 77 |
-
"grad_norm":
|
| 78 |
-
"learning_rate": 1.
|
| 79 |
-
"loss": 0.
|
| 80 |
"step": 250
|
| 81 |
},
|
| 82 |
{
|
| 83 |
-
"epoch": 0.
|
| 84 |
-
"grad_norm":
|
| 85 |
-
"learning_rate": 1.
|
| 86 |
-
"loss": 0.
|
| 87 |
"step": 275
|
| 88 |
},
|
| 89 |
{
|
| 90 |
-
"epoch": 0.
|
| 91 |
-
"grad_norm":
|
| 92 |
-
"learning_rate": 1.
|
| 93 |
-
"loss": 0.
|
| 94 |
"step": 300
|
| 95 |
},
|
| 96 |
{
|
| 97 |
-
"epoch":
|
| 98 |
-
"
|
| 99 |
-
"
|
| 100 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
"step": 325
|
| 102 |
},
|
| 103 |
{
|
| 104 |
-
"epoch":
|
| 105 |
-
"grad_norm":
|
| 106 |
-
"learning_rate": 1.
|
| 107 |
-
"loss": 0.
|
| 108 |
"step": 350
|
| 109 |
},
|
| 110 |
{
|
| 111 |
-
"epoch":
|
| 112 |
-
"grad_norm":
|
| 113 |
-
"learning_rate": 1.
|
| 114 |
-
"loss": 0.
|
| 115 |
"step": 375
|
| 116 |
},
|
| 117 |
{
|
| 118 |
-
"epoch":
|
| 119 |
-
"grad_norm":
|
| 120 |
-
"learning_rate": 1.
|
| 121 |
-
"loss": 0.
|
| 122 |
"step": 400
|
| 123 |
},
|
| 124 |
{
|
| 125 |
-
"epoch":
|
| 126 |
-
"grad_norm":
|
| 127 |
-
"learning_rate": 1.
|
| 128 |
-
"loss": 0.
|
| 129 |
"step": 425
|
| 130 |
},
|
| 131 |
{
|
| 132 |
-
"epoch":
|
| 133 |
-
"grad_norm":
|
| 134 |
-
"learning_rate": 1.
|
| 135 |
-
"loss": 0.
|
| 136 |
"step": 450
|
| 137 |
},
|
| 138 |
{
|
| 139 |
-
"epoch":
|
| 140 |
-
"grad_norm":
|
| 141 |
-
"learning_rate": 1.
|
| 142 |
-
"loss": 0.
|
| 143 |
"step": 475
|
| 144 |
},
|
| 145 |
{
|
| 146 |
-
"epoch":
|
| 147 |
-
"grad_norm":
|
| 148 |
-
"learning_rate": 1.
|
| 149 |
-
"loss": 0.
|
| 150 |
"step": 500
|
| 151 |
},
|
| 152 |
{
|
| 153 |
-
"epoch":
|
| 154 |
-
"grad_norm": 0.
|
| 155 |
-
"learning_rate": 1.
|
| 156 |
-
"loss": 0.
|
| 157 |
"step": 525
|
| 158 |
},
|
| 159 |
{
|
| 160 |
-
"epoch":
|
| 161 |
-
"grad_norm":
|
| 162 |
-
"learning_rate": 1.
|
| 163 |
-
"loss": 0.
|
| 164 |
"step": 550
|
| 165 |
},
|
| 166 |
{
|
| 167 |
-
"epoch":
|
| 168 |
-
"grad_norm":
|
| 169 |
-
"learning_rate": 1.
|
| 170 |
-
"loss": 0.
|
| 171 |
"step": 575
|
| 172 |
},
|
| 173 |
{
|
| 174 |
-
"epoch":
|
| 175 |
-
"grad_norm": 1.
|
| 176 |
-
"learning_rate": 1.
|
| 177 |
-
"loss": 0.
|
| 178 |
"step": 600
|
| 179 |
},
|
| 180 |
{
|
| 181 |
-
"epoch":
|
| 182 |
-
"eval_accuracy": 0.
|
| 183 |
-
"eval_f1": 0.
|
| 184 |
-
"eval_loss": 0.
|
| 185 |
-
"eval_precision": 0.
|
| 186 |
-
"eval_recall": 0.
|
| 187 |
-
"eval_roc_auc": 0.
|
| 188 |
-
"eval_runtime":
|
| 189 |
-
"eval_samples_per_second":
|
| 190 |
-
"eval_steps_per_second": 7.
|
| 191 |
"step": 610
|
| 192 |
},
|
| 193 |
{
|
| 194 |
-
"epoch":
|
| 195 |
-
"grad_norm":
|
| 196 |
-
"learning_rate": 1.
|
| 197 |
-
"loss": 0.
|
| 198 |
"step": 625
|
| 199 |
},
|
| 200 |
{
|
| 201 |
-
"epoch":
|
| 202 |
-
"grad_norm":
|
| 203 |
-
"learning_rate": 1.
|
| 204 |
-
"loss": 0.
|
| 205 |
"step": 650
|
| 206 |
},
|
| 207 |
{
|
| 208 |
-
"epoch":
|
| 209 |
-
"grad_norm": 6.
|
| 210 |
-
"learning_rate": 1.
|
| 211 |
-
"loss": 0.
|
| 212 |
"step": 675
|
| 213 |
},
|
| 214 |
{
|
| 215 |
-
"epoch":
|
| 216 |
-
"grad_norm":
|
| 217 |
-
"learning_rate": 1.
|
| 218 |
-
"loss": 0.
|
| 219 |
"step": 700
|
| 220 |
},
|
| 221 |
{
|
| 222 |
-
"epoch":
|
| 223 |
-
"grad_norm": 0.
|
| 224 |
-
"learning_rate": 1.
|
| 225 |
-
"loss": 0.
|
| 226 |
"step": 725
|
| 227 |
},
|
| 228 |
{
|
| 229 |
-
"epoch":
|
| 230 |
-
"grad_norm":
|
| 231 |
-
"learning_rate": 1.
|
| 232 |
-
"loss": 0.
|
| 233 |
"step": 750
|
| 234 |
},
|
| 235 |
{
|
| 236 |
-
"epoch":
|
| 237 |
-
"grad_norm":
|
| 238 |
-
"learning_rate": 1.
|
| 239 |
-
"loss": 0.
|
| 240 |
"step": 775
|
| 241 |
},
|
| 242 |
{
|
| 243 |
-
"epoch":
|
| 244 |
-
"grad_norm":
|
| 245 |
-
"learning_rate": 1.
|
| 246 |
-
"loss": 0.
|
| 247 |
"step": 800
|
| 248 |
},
|
| 249 |
{
|
| 250 |
-
"epoch":
|
| 251 |
-
"grad_norm": 0.
|
| 252 |
-
"learning_rate": 1.
|
| 253 |
-
"loss": 0.
|
| 254 |
"step": 825
|
| 255 |
},
|
| 256 |
{
|
| 257 |
-
"epoch":
|
| 258 |
-
"grad_norm": 0.
|
| 259 |
-
"learning_rate":
|
| 260 |
-
"loss": 0.
|
| 261 |
"step": 850
|
| 262 |
},
|
| 263 |
{
|
| 264 |
-
"epoch":
|
| 265 |
-
"grad_norm": 0.
|
| 266 |
-
"learning_rate":
|
| 267 |
-
"loss": 0.
|
| 268 |
"step": 875
|
| 269 |
},
|
| 270 |
{
|
| 271 |
-
"epoch":
|
| 272 |
-
"grad_norm": 0.
|
| 273 |
-
"learning_rate":
|
| 274 |
-
"loss": 0.
|
| 275 |
"step": 900
|
| 276 |
},
|
| 277 |
{
|
| 278 |
-
"epoch":
|
| 279 |
-
"
|
| 280 |
-
"
|
| 281 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 282 |
"step": 925
|
| 283 |
},
|
| 284 |
{
|
| 285 |
-
"epoch":
|
| 286 |
-
"grad_norm":
|
| 287 |
-
"learning_rate":
|
| 288 |
-
"loss": 0.
|
| 289 |
"step": 950
|
| 290 |
},
|
| 291 |
{
|
| 292 |
-
"epoch":
|
| 293 |
-
"grad_norm":
|
| 294 |
-
"learning_rate":
|
| 295 |
-
"loss": 0.
|
| 296 |
"step": 975
|
| 297 |
},
|
| 298 |
{
|
| 299 |
-
"epoch":
|
| 300 |
-
"grad_norm":
|
| 301 |
-
"learning_rate":
|
| 302 |
-
"loss": 0.
|
| 303 |
"step": 1000
|
| 304 |
},
|
| 305 |
{
|
| 306 |
-
"epoch":
|
| 307 |
-
"grad_norm":
|
| 308 |
-
"learning_rate":
|
| 309 |
-
"loss": 0.
|
| 310 |
"step": 1025
|
| 311 |
},
|
| 312 |
{
|
| 313 |
-
"epoch":
|
| 314 |
-
"grad_norm":
|
| 315 |
-
"learning_rate":
|
| 316 |
-
"loss": 0.
|
| 317 |
"step": 1050
|
| 318 |
},
|
| 319 |
{
|
| 320 |
-
"epoch":
|
| 321 |
-
"grad_norm":
|
| 322 |
-
"learning_rate":
|
| 323 |
-
"loss": 0.
|
| 324 |
"step": 1075
|
| 325 |
},
|
| 326 |
{
|
| 327 |
-
"epoch":
|
| 328 |
-
"grad_norm": 0.
|
| 329 |
-
"learning_rate":
|
| 330 |
-
"loss": 0.
|
| 331 |
"step": 1100
|
| 332 |
},
|
| 333 |
{
|
| 334 |
-
"epoch":
|
| 335 |
-
"grad_norm":
|
| 336 |
-
"learning_rate":
|
| 337 |
-
"loss": 0.
|
| 338 |
"step": 1125
|
| 339 |
},
|
| 340 |
{
|
| 341 |
-
"epoch":
|
| 342 |
-
"grad_norm":
|
| 343 |
-
"learning_rate":
|
| 344 |
-
"loss": 0.
|
| 345 |
"step": 1150
|
| 346 |
},
|
| 347 |
{
|
| 348 |
-
"epoch":
|
| 349 |
-
"grad_norm":
|
| 350 |
-
"learning_rate":
|
| 351 |
-
"loss": 0.
|
| 352 |
"step": 1175
|
| 353 |
},
|
| 354 |
{
|
| 355 |
-
"epoch":
|
| 356 |
-
"grad_norm":
|
| 357 |
-
"learning_rate":
|
| 358 |
-
"loss": 0.
|
| 359 |
"step": 1200
|
| 360 |
},
|
| 361 |
{
|
| 362 |
-
"epoch":
|
| 363 |
-
"eval_accuracy": 0.
|
| 364 |
-
"eval_f1": 0.
|
| 365 |
-
"eval_loss": 0.
|
| 366 |
-
"eval_precision": 0.
|
| 367 |
-
"eval_recall": 0.
|
| 368 |
-
"eval_roc_auc": 0.
|
| 369 |
-
"eval_runtime":
|
| 370 |
-
"eval_samples_per_second":
|
| 371 |
-
"eval_steps_per_second": 7.
|
| 372 |
"step": 1220
|
| 373 |
}
|
| 374 |
],
|
| 375 |
"logging_steps": 25,
|
| 376 |
-
"max_steps":
|
| 377 |
"num_input_tokens_seen": 0,
|
| 378 |
"num_train_epochs": 5,
|
| 379 |
"save_steps": 500,
|
|
@@ -384,7 +410,7 @@
|
|
| 384 |
"early_stopping_threshold": 0.0
|
| 385 |
},
|
| 386 |
"attributes": {
|
| 387 |
-
"early_stopping_patience_counter":
|
| 388 |
}
|
| 389 |
},
|
| 390 |
"TrainerControl": {
|
|
@@ -398,7 +424,7 @@
|
|
| 398 |
"attributes": {}
|
| 399 |
}
|
| 400 |
},
|
| 401 |
-
"total_flos":
|
| 402 |
"train_batch_size": 16,
|
| 403 |
"trial_name": null,
|
| 404 |
"trial_params": null
|
|
|
|
| 1 |
{
|
| 2 |
+
"best_global_step": 1220,
|
| 3 |
+
"best_metric": 0.7953216374269005,
|
| 4 |
+
"best_model_checkpoint": "/content/agri-utilization-classifier/transformer/checkpoint-1220",
|
| 5 |
+
"epoch": 4.0,
|
| 6 |
"eval_steps": 500,
|
| 7 |
"global_step": 1220,
|
| 8 |
"is_hyper_param_search": false,
|
|
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
+
"epoch": 0.08196721311475409,
|
| 14 |
+
"grad_norm": 3.737260103225708,
|
| 15 |
+
"learning_rate": 3.157894736842105e-06,
|
| 16 |
+
"loss": 0.5265155029296875,
|
| 17 |
"step": 25
|
| 18 |
},
|
| 19 |
{
|
| 20 |
+
"epoch": 0.16393442622950818,
|
| 21 |
+
"grad_norm": 3.5834667682647705,
|
| 22 |
+
"learning_rate": 6.447368421052632e-06,
|
| 23 |
+
"loss": 0.46113067626953125,
|
| 24 |
"step": 50
|
| 25 |
},
|
| 26 |
{
|
| 27 |
+
"epoch": 0.2459016393442623,
|
| 28 |
+
"grad_norm": 4.713325500488281,
|
| 29 |
+
"learning_rate": 9.736842105263159e-06,
|
| 30 |
+
"loss": 0.36277122497558595,
|
| 31 |
"step": 75
|
| 32 |
},
|
| 33 |
{
|
| 34 |
+
"epoch": 0.32786885245901637,
|
| 35 |
+
"grad_norm": 5.049388885498047,
|
| 36 |
+
"learning_rate": 1.3026315789473684e-05,
|
| 37 |
+
"loss": 0.2863706398010254,
|
| 38 |
"step": 100
|
| 39 |
},
|
| 40 |
{
|
| 41 |
+
"epoch": 0.4098360655737705,
|
| 42 |
+
"grad_norm": 3.5716683864593506,
|
| 43 |
+
"learning_rate": 1.6315789473684213e-05,
|
| 44 |
+
"loss": 0.30932790756225587,
|
| 45 |
"step": 125
|
| 46 |
},
|
| 47 |
{
|
| 48 |
+
"epoch": 0.4918032786885246,
|
| 49 |
+
"grad_norm": 3.1771602630615234,
|
| 50 |
+
"learning_rate": 1.960526315789474e-05,
|
| 51 |
+
"loss": 0.34346282958984375,
|
| 52 |
"step": 150
|
| 53 |
},
|
| 54 |
{
|
| 55 |
+
"epoch": 0.5737704918032787,
|
| 56 |
+
"grad_norm": 13.294544219970703,
|
| 57 |
+
"learning_rate": 1.9679533867443555e-05,
|
| 58 |
+
"loss": 0.2966791343688965,
|
| 59 |
"step": 175
|
| 60 |
},
|
| 61 |
{
|
| 62 |
+
"epoch": 0.6557377049180327,
|
| 63 |
+
"grad_norm": 4.51957893371582,
|
| 64 |
+
"learning_rate": 1.9315367807720323e-05,
|
| 65 |
+
"loss": 0.3470170211791992,
|
| 66 |
"step": 200
|
| 67 |
},
|
| 68 |
{
|
| 69 |
+
"epoch": 0.7377049180327869,
|
| 70 |
+
"grad_norm": 2.978902816772461,
|
| 71 |
+
"learning_rate": 1.8951201747997088e-05,
|
| 72 |
+
"loss": 0.33052406311035154,
|
| 73 |
"step": 225
|
| 74 |
},
|
| 75 |
{
|
| 76 |
+
"epoch": 0.819672131147541,
|
| 77 |
+
"grad_norm": 3.3191263675689697,
|
| 78 |
+
"learning_rate": 1.8587035688273852e-05,
|
| 79 |
+
"loss": 0.21728967666625976,
|
| 80 |
"step": 250
|
| 81 |
},
|
| 82 |
{
|
| 83 |
+
"epoch": 0.9016393442622951,
|
| 84 |
+
"grad_norm": 3.7143661975860596,
|
| 85 |
+
"learning_rate": 1.822286962855062e-05,
|
| 86 |
+
"loss": 0.23666904449462892,
|
| 87 |
"step": 275
|
| 88 |
},
|
| 89 |
{
|
| 90 |
+
"epoch": 0.9836065573770492,
|
| 91 |
+
"grad_norm": 1.896660566329956,
|
| 92 |
+
"learning_rate": 1.7858703568827385e-05,
|
| 93 |
+
"loss": 0.21057628631591796,
|
| 94 |
"step": 300
|
| 95 |
},
|
| 96 |
{
|
| 97 |
+
"epoch": 1.0,
|
| 98 |
+
"eval_accuracy": 0.9611451942740287,
|
| 99 |
+
"eval_f1": 0.7205882352941176,
|
| 100 |
+
"eval_loss": 0.1562921404838562,
|
| 101 |
+
"eval_precision": 0.8596491228070176,
|
| 102 |
+
"eval_recall": 0.620253164556962,
|
| 103 |
+
"eval_roc_auc": 0.9517677869925796,
|
| 104 |
+
"eval_runtime": 3.9768,
|
| 105 |
+
"eval_samples_per_second": 245.924,
|
| 106 |
+
"eval_steps_per_second": 7.795,
|
| 107 |
+
"step": 305
|
| 108 |
+
},
|
| 109 |
+
{
|
| 110 |
+
"epoch": 1.0655737704918034,
|
| 111 |
+
"grad_norm": 1.421042561531067,
|
| 112 |
+
"learning_rate": 1.7494537509104153e-05,
|
| 113 |
+
"loss": 0.16764232635498047,
|
| 114 |
"step": 325
|
| 115 |
},
|
| 116 |
{
|
| 117 |
+
"epoch": 1.1475409836065573,
|
| 118 |
+
"grad_norm": 11.789098739624023,
|
| 119 |
+
"learning_rate": 1.7130371449380918e-05,
|
| 120 |
+
"loss": 0.20644237518310546,
|
| 121 |
"step": 350
|
| 122 |
},
|
| 123 |
{
|
| 124 |
+
"epoch": 1.2295081967213115,
|
| 125 |
+
"grad_norm": 0.6719069480895996,
|
| 126 |
+
"learning_rate": 1.6766205389657686e-05,
|
| 127 |
+
"loss": 0.1565106964111328,
|
| 128 |
"step": 375
|
| 129 |
},
|
| 130 |
{
|
| 131 |
+
"epoch": 1.3114754098360657,
|
| 132 |
+
"grad_norm": 3.198103666305542,
|
| 133 |
+
"learning_rate": 1.640203932993445e-05,
|
| 134 |
+
"loss": 0.13691966056823732,
|
| 135 |
"step": 400
|
| 136 |
},
|
| 137 |
{
|
| 138 |
+
"epoch": 1.3934426229508197,
|
| 139 |
+
"grad_norm": 0.4345323145389557,
|
| 140 |
+
"learning_rate": 1.603787327021122e-05,
|
| 141 |
+
"loss": 0.15782511711120606,
|
| 142 |
"step": 425
|
| 143 |
},
|
| 144 |
{
|
| 145 |
+
"epoch": 1.4754098360655736,
|
| 146 |
+
"grad_norm": 2.469116449356079,
|
| 147 |
+
"learning_rate": 1.5673707210487983e-05,
|
| 148 |
+
"loss": 0.14868577003479003,
|
| 149 |
"step": 450
|
| 150 |
},
|
| 151 |
{
|
| 152 |
+
"epoch": 1.5573770491803278,
|
| 153 |
+
"grad_norm": 1.4203808307647705,
|
| 154 |
+
"learning_rate": 1.530954115076475e-05,
|
| 155 |
+
"loss": 0.1306503391265869,
|
| 156 |
"step": 475
|
| 157 |
},
|
| 158 |
{
|
| 159 |
+
"epoch": 1.639344262295082,
|
| 160 |
+
"grad_norm": 1.1811524629592896,
|
| 161 |
+
"learning_rate": 1.4945375091041516e-05,
|
| 162 |
+
"loss": 0.1715664291381836,
|
| 163 |
"step": 500
|
| 164 |
},
|
| 165 |
{
|
| 166 |
+
"epoch": 1.721311475409836,
|
| 167 |
+
"grad_norm": 0.7283220887184143,
|
| 168 |
+
"learning_rate": 1.4581209031318282e-05,
|
| 169 |
+
"loss": 0.176502742767334,
|
| 170 |
"step": 525
|
| 171 |
},
|
| 172 |
{
|
| 173 |
+
"epoch": 1.8032786885245902,
|
| 174 |
+
"grad_norm": 4.3972930908203125,
|
| 175 |
+
"learning_rate": 1.4217042971595047e-05,
|
| 176 |
+
"loss": 0.19116065979003907,
|
| 177 |
"step": 550
|
| 178 |
},
|
| 179 |
{
|
| 180 |
+
"epoch": 1.8852459016393444,
|
| 181 |
+
"grad_norm": 22.928813934326172,
|
| 182 |
+
"learning_rate": 1.3852876911871815e-05,
|
| 183 |
+
"loss": 0.11317115783691406,
|
| 184 |
"step": 575
|
| 185 |
},
|
| 186 |
{
|
| 187 |
+
"epoch": 1.9672131147540983,
|
| 188 |
+
"grad_norm": 1.4874694347381592,
|
| 189 |
+
"learning_rate": 1.3488710852148582e-05,
|
| 190 |
+
"loss": 0.19129184722900391,
|
| 191 |
"step": 600
|
| 192 |
},
|
| 193 |
{
|
| 194 |
+
"epoch": 2.0,
|
| 195 |
+
"eval_accuracy": 0.9652351738241309,
|
| 196 |
+
"eval_f1": 0.7571428571428571,
|
| 197 |
+
"eval_loss": 0.14743675291538239,
|
| 198 |
+
"eval_precision": 0.8688524590163934,
|
| 199 |
+
"eval_recall": 0.6708860759493671,
|
| 200 |
+
"eval_roc_auc": 0.963426310527872,
|
| 201 |
+
"eval_runtime": 4.0109,
|
| 202 |
+
"eval_samples_per_second": 243.834,
|
| 203 |
+
"eval_steps_per_second": 7.729,
|
| 204 |
"step": 610
|
| 205 |
},
|
| 206 |
{
|
| 207 |
+
"epoch": 2.0491803278688523,
|
| 208 |
+
"grad_norm": 12.971587181091309,
|
| 209 |
+
"learning_rate": 1.3124544792425346e-05,
|
| 210 |
+
"loss": 0.12445893287658691,
|
| 211 |
"step": 625
|
| 212 |
},
|
| 213 |
{
|
| 214 |
+
"epoch": 2.1311475409836067,
|
| 215 |
+
"grad_norm": 25.91712760925293,
|
| 216 |
+
"learning_rate": 1.2760378732702113e-05,
|
| 217 |
+
"loss": 0.12887270927429198,
|
| 218 |
"step": 650
|
| 219 |
},
|
| 220 |
{
|
| 221 |
+
"epoch": 2.2131147540983607,
|
| 222 |
+
"grad_norm": 6.632810592651367,
|
| 223 |
+
"learning_rate": 1.239621267297888e-05,
|
| 224 |
+
"loss": 0.11674688339233398,
|
| 225 |
"step": 675
|
| 226 |
},
|
| 227 |
{
|
| 228 |
+
"epoch": 2.2950819672131146,
|
| 229 |
+
"grad_norm": 7.63377046585083,
|
| 230 |
+
"learning_rate": 1.2032046613255645e-05,
|
| 231 |
+
"loss": 0.09968890190124512,
|
| 232 |
"step": 700
|
| 233 |
},
|
| 234 |
{
|
| 235 |
+
"epoch": 2.3770491803278686,
|
| 236 |
+
"grad_norm": 0.24016129970550537,
|
| 237 |
+
"learning_rate": 1.1667880553532412e-05,
|
| 238 |
+
"loss": 0.1278015899658203,
|
| 239 |
"step": 725
|
| 240 |
},
|
| 241 |
{
|
| 242 |
+
"epoch": 2.459016393442623,
|
| 243 |
+
"grad_norm": 13.630209922790527,
|
| 244 |
+
"learning_rate": 1.1303714493809176e-05,
|
| 245 |
+
"loss": 0.11038578987121582,
|
| 246 |
"step": 750
|
| 247 |
},
|
| 248 |
{
|
| 249 |
+
"epoch": 2.540983606557377,
|
| 250 |
+
"grad_norm": 3.605466842651367,
|
| 251 |
+
"learning_rate": 1.0939548434085944e-05,
|
| 252 |
+
"loss": 0.09141416549682617,
|
| 253 |
"step": 775
|
| 254 |
},
|
| 255 |
{
|
| 256 |
+
"epoch": 2.6229508196721314,
|
| 257 |
+
"grad_norm": 9.083756446838379,
|
| 258 |
+
"learning_rate": 1.057538237436271e-05,
|
| 259 |
+
"loss": 0.12407379150390625,
|
| 260 |
"step": 800
|
| 261 |
},
|
| 262 |
{
|
| 263 |
+
"epoch": 2.7049180327868854,
|
| 264 |
+
"grad_norm": 0.1447029560804367,
|
| 265 |
+
"learning_rate": 1.0211216314639475e-05,
|
| 266 |
+
"loss": 0.10234562873840332,
|
| 267 |
"step": 825
|
| 268 |
},
|
| 269 |
{
|
| 270 |
+
"epoch": 2.7868852459016393,
|
| 271 |
+
"grad_norm": 0.6932273507118225,
|
| 272 |
+
"learning_rate": 9.847050254916243e-06,
|
| 273 |
+
"loss": 0.09410433769226074,
|
| 274 |
"step": 850
|
| 275 |
},
|
| 276 |
{
|
| 277 |
+
"epoch": 2.8688524590163933,
|
| 278 |
+
"grad_norm": 0.053487662225961685,
|
| 279 |
+
"learning_rate": 9.482884195193008e-06,
|
| 280 |
+
"loss": 0.12300247192382813,
|
| 281 |
"step": 875
|
| 282 |
},
|
| 283 |
{
|
| 284 |
+
"epoch": 2.9508196721311473,
|
| 285 |
+
"grad_norm": 0.46310335397720337,
|
| 286 |
+
"learning_rate": 9.118718135469774e-06,
|
| 287 |
+
"loss": 0.11163784980773926,
|
| 288 |
"step": 900
|
| 289 |
},
|
| 290 |
{
|
| 291 |
+
"epoch": 3.0,
|
| 292 |
+
"eval_accuracy": 0.9591002044989775,
|
| 293 |
+
"eval_f1": 0.7727272727272727,
|
| 294 |
+
"eval_loss": 0.13372264802455902,
|
| 295 |
+
"eval_precision": 0.7010309278350515,
|
| 296 |
+
"eval_recall": 0.8607594936708861,
|
| 297 |
+
"eval_roc_auc": 0.9666295884315906,
|
| 298 |
+
"eval_runtime": 3.9748,
|
| 299 |
+
"eval_samples_per_second": 246.051,
|
| 300 |
+
"eval_steps_per_second": 7.799,
|
| 301 |
+
"step": 915
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"epoch": 3.0327868852459017,
|
| 305 |
+
"grad_norm": 0.38893452286720276,
|
| 306 |
+
"learning_rate": 8.754552075746541e-06,
|
| 307 |
+
"loss": 0.07861940383911133,
|
| 308 |
"step": 925
|
| 309 |
},
|
| 310 |
{
|
| 311 |
+
"epoch": 3.1147540983606556,
|
| 312 |
+
"grad_norm": 0.1529499739408493,
|
| 313 |
+
"learning_rate": 8.390386016023307e-06,
|
| 314 |
+
"loss": 0.0873807716369629,
|
| 315 |
"step": 950
|
| 316 |
},
|
| 317 |
{
|
| 318 |
+
"epoch": 3.19672131147541,
|
| 319 |
+
"grad_norm": 0.042547326534986496,
|
| 320 |
+
"learning_rate": 8.026219956300074e-06,
|
| 321 |
+
"loss": 0.09024697303771972,
|
| 322 |
"step": 975
|
| 323 |
},
|
| 324 |
{
|
| 325 |
+
"epoch": 3.278688524590164,
|
| 326 |
+
"grad_norm": 1.9330065250396729,
|
| 327 |
+
"learning_rate": 7.66205389657684e-06,
|
| 328 |
+
"loss": 0.06100567817687988,
|
| 329 |
"step": 1000
|
| 330 |
},
|
| 331 |
{
|
| 332 |
+
"epoch": 3.360655737704918,
|
| 333 |
+
"grad_norm": 0.11758341640233994,
|
| 334 |
+
"learning_rate": 7.2978878368536055e-06,
|
| 335 |
+
"loss": 0.08453927040100098,
|
| 336 |
"step": 1025
|
| 337 |
},
|
| 338 |
{
|
| 339 |
+
"epoch": 3.442622950819672,
|
| 340 |
+
"grad_norm": 3.271782875061035,
|
| 341 |
+
"learning_rate": 6.933721777130372e-06,
|
| 342 |
+
"loss": 0.13461392402648925,
|
| 343 |
"step": 1050
|
| 344 |
},
|
| 345 |
{
|
| 346 |
+
"epoch": 3.5245901639344264,
|
| 347 |
+
"grad_norm": 0.4164356291294098,
|
| 348 |
+
"learning_rate": 6.569555717407138e-06,
|
| 349 |
+
"loss": 0.11135642051696777,
|
| 350 |
"step": 1075
|
| 351 |
},
|
| 352 |
{
|
| 353 |
+
"epoch": 3.6065573770491803,
|
| 354 |
+
"grad_norm": 0.11387842148542404,
|
| 355 |
+
"learning_rate": 6.2053896576839045e-06,
|
| 356 |
+
"loss": 0.07281729221343994,
|
| 357 |
"step": 1100
|
| 358 |
},
|
| 359 |
{
|
| 360 |
+
"epoch": 3.6885245901639343,
|
| 361 |
+
"grad_norm": 0.08642543852329254,
|
| 362 |
+
"learning_rate": 5.84122359796067e-06,
|
| 363 |
+
"loss": 0.07367591381072998,
|
| 364 |
"step": 1125
|
| 365 |
},
|
| 366 |
{
|
| 367 |
+
"epoch": 3.7704918032786887,
|
| 368 |
+
"grad_norm": 1.8669590950012207,
|
| 369 |
+
"learning_rate": 5.477057538237437e-06,
|
| 370 |
+
"loss": 0.07471850395202637,
|
| 371 |
"step": 1150
|
| 372 |
},
|
| 373 |
{
|
| 374 |
+
"epoch": 3.8524590163934427,
|
| 375 |
+
"grad_norm": 4.208413124084473,
|
| 376 |
+
"learning_rate": 5.112891478514203e-06,
|
| 377 |
+
"loss": 0.08314379692077636,
|
| 378 |
"step": 1175
|
| 379 |
},
|
| 380 |
{
|
| 381 |
+
"epoch": 3.9344262295081966,
|
| 382 |
+
"grad_norm": 0.028365109115839005,
|
| 383 |
+
"learning_rate": 4.748725418790969e-06,
|
| 384 |
+
"loss": 0.05273099899291992,
|
| 385 |
"step": 1200
|
| 386 |
},
|
| 387 |
{
|
| 388 |
+
"epoch": 4.0,
|
| 389 |
+
"eval_accuracy": 0.9642126789366053,
|
| 390 |
+
"eval_f1": 0.7953216374269005,
|
| 391 |
+
"eval_loss": 0.13287556171417236,
|
| 392 |
+
"eval_precision": 0.7391304347826086,
|
| 393 |
+
"eval_recall": 0.8607594936708861,
|
| 394 |
+
"eval_roc_auc": 0.970269356950761,
|
| 395 |
+
"eval_runtime": 3.9222,
|
| 396 |
+
"eval_samples_per_second": 249.351,
|
| 397 |
+
"eval_steps_per_second": 7.904,
|
| 398 |
"step": 1220
|
| 399 |
}
|
| 400 |
],
|
| 401 |
"logging_steps": 25,
|
| 402 |
+
"max_steps": 1525,
|
| 403 |
"num_input_tokens_seen": 0,
|
| 404 |
"num_train_epochs": 5,
|
| 405 |
"save_steps": 500,
|
|
|
|
| 410 |
"early_stopping_threshold": 0.0
|
| 411 |
},
|
| 412 |
"attributes": {
|
| 413 |
+
"early_stopping_patience_counter": 0
|
| 414 |
}
|
| 415 |
},
|
| 416 |
"TrainerControl": {
|
|
|
|
| 424 |
"attributes": {}
|
| 425 |
}
|
| 426 |
},
|
| 427 |
+
"total_flos": 2566385233981440.0,
|
| 428 |
"train_batch_size": 16,
|
| 429 |
"trial_name": null,
|
| 430 |
"trial_params": null
|
transformer/checkpoint-1220/training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5201
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d052a78a205856b0fb5f7f6bf70bfa1f4e42f119d70cd50149db16fae6be9220
|
| 3 |
size 5201
|
transformer/checkpoint-1525/config.json
CHANGED
|
@@ -32,7 +32,7 @@
|
|
| 32 |
"position_embedding_type": "absolute",
|
| 33 |
"problem_type": "single_label_classification",
|
| 34 |
"tie_word_embeddings": true,
|
| 35 |
-
"transformers_version": "5.
|
| 36 |
"type_vocab_size": 1,
|
| 37 |
"use_cache": false,
|
| 38 |
"vocab_size": 250002
|
|
|
|
| 32 |
"position_embedding_type": "absolute",
|
| 33 |
"problem_type": "single_label_classification",
|
| 34 |
"tie_word_embeddings": true,
|
| 35 |
+
"transformers_version": "5.11.0",
|
| 36 |
"type_vocab_size": 1,
|
| 37 |
"use_cache": false,
|
| 38 |
"vocab_size": 250002
|
transformer/checkpoint-1525/model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1112205008
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5bcd27e4ed18aadc523a80034512d4853a824c449c347f9d3543ef244333edbb
|
| 3 |
size 1112205008
|
transformer/checkpoint-1525/optimizer.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2224532875
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:813a9eada2227d678ee2f1ad4e6845267dd29400b17b776c2acee8cf1ee5c447
|
| 3 |
size 2224532875
|
transformer/checkpoint-1525/scaler.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1383
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c6739dc81928adc627175528e85cf6be8b853e804212b5c6b728eb9537996b3
|
| 3 |
size 1383
|
transformer/checkpoint-1525/trainer_state.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
-
"best_global_step":
|
| 3 |
-
"best_metric": 0.
|
| 4 |
-
"best_model_checkpoint": "/content/agri-utilization-classifier/transformer/checkpoint-
|
| 5 |
"epoch": 5.0,
|
| 6 |
"eval_steps": 500,
|
| 7 |
"global_step": 1525,
|
|
@@ -11,494 +11,494 @@
|
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
"epoch": 0.08196721311475409,
|
| 14 |
-
"grad_norm":
|
| 15 |
"learning_rate": 3.157894736842105e-06,
|
| 16 |
-
"loss": 0.
|
| 17 |
"step": 25
|
| 18 |
},
|
| 19 |
{
|
| 20 |
"epoch": 0.16393442622950818,
|
| 21 |
-
"grad_norm":
|
| 22 |
"learning_rate": 6.447368421052632e-06,
|
| 23 |
-
"loss": 0.
|
| 24 |
"step": 50
|
| 25 |
},
|
| 26 |
{
|
| 27 |
"epoch": 0.2459016393442623,
|
| 28 |
-
"grad_norm":
|
| 29 |
"learning_rate": 9.736842105263159e-06,
|
| 30 |
-
"loss": 0.
|
| 31 |
"step": 75
|
| 32 |
},
|
| 33 |
{
|
| 34 |
"epoch": 0.32786885245901637,
|
| 35 |
-
"grad_norm":
|
| 36 |
"learning_rate": 1.3026315789473684e-05,
|
| 37 |
-
"loss": 0.
|
| 38 |
"step": 100
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"epoch": 0.4098360655737705,
|
| 42 |
-
"grad_norm":
|
| 43 |
"learning_rate": 1.6315789473684213e-05,
|
| 44 |
-
"loss": 0.
|
| 45 |
"step": 125
|
| 46 |
},
|
| 47 |
{
|
| 48 |
"epoch": 0.4918032786885246,
|
| 49 |
-
"grad_norm":
|
| 50 |
"learning_rate": 1.960526315789474e-05,
|
| 51 |
-
"loss": 0.
|
| 52 |
"step": 150
|
| 53 |
},
|
| 54 |
{
|
| 55 |
"epoch": 0.5737704918032787,
|
| 56 |
-
"grad_norm":
|
| 57 |
"learning_rate": 1.9679533867443555e-05,
|
| 58 |
-
"loss": 0.
|
| 59 |
"step": 175
|
| 60 |
},
|
| 61 |
{
|
| 62 |
"epoch": 0.6557377049180327,
|
| 63 |
-
"grad_norm":
|
| 64 |
"learning_rate": 1.9315367807720323e-05,
|
| 65 |
-
"loss": 0.
|
| 66 |
"step": 200
|
| 67 |
},
|
| 68 |
{
|
| 69 |
"epoch": 0.7377049180327869,
|
| 70 |
-
"grad_norm":
|
| 71 |
"learning_rate": 1.8951201747997088e-05,
|
| 72 |
-
"loss": 0.
|
| 73 |
"step": 225
|
| 74 |
},
|
| 75 |
{
|
| 76 |
"epoch": 0.819672131147541,
|
| 77 |
-
"grad_norm":
|
| 78 |
"learning_rate": 1.8587035688273852e-05,
|
| 79 |
-
"loss": 0.
|
| 80 |
"step": 250
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"epoch": 0.9016393442622951,
|
| 84 |
-
"grad_norm":
|
| 85 |
"learning_rate": 1.822286962855062e-05,
|
| 86 |
-
"loss": 0.
|
| 87 |
"step": 275
|
| 88 |
},
|
| 89 |
{
|
| 90 |
"epoch": 0.9836065573770492,
|
| 91 |
-
"grad_norm":
|
| 92 |
"learning_rate": 1.7858703568827385e-05,
|
| 93 |
-
"loss": 0.
|
| 94 |
"step": 300
|
| 95 |
},
|
| 96 |
{
|
| 97 |
"epoch": 1.0,
|
| 98 |
-
"eval_accuracy": 0.
|
| 99 |
-
"eval_f1": 0.
|
| 100 |
-
"eval_loss": 0.
|
| 101 |
-
"eval_precision": 0.
|
| 102 |
-
"eval_recall": 0.
|
| 103 |
-
"eval_roc_auc": 0.
|
| 104 |
-
"eval_runtime": 3.
|
| 105 |
-
"eval_samples_per_second":
|
| 106 |
-
"eval_steps_per_second":
|
| 107 |
"step": 305
|
| 108 |
},
|
| 109 |
{
|
| 110 |
"epoch": 1.0655737704918034,
|
| 111 |
-
"grad_norm":
|
| 112 |
"learning_rate": 1.7494537509104153e-05,
|
| 113 |
-
"loss": 0.
|
| 114 |
"step": 325
|
| 115 |
},
|
| 116 |
{
|
| 117 |
"epoch": 1.1475409836065573,
|
| 118 |
-
"grad_norm":
|
| 119 |
"learning_rate": 1.7130371449380918e-05,
|
| 120 |
-
"loss": 0.
|
| 121 |
"step": 350
|
| 122 |
},
|
| 123 |
{
|
| 124 |
"epoch": 1.2295081967213115,
|
| 125 |
-
"grad_norm": 0.
|
| 126 |
"learning_rate": 1.6766205389657686e-05,
|
| 127 |
-
"loss": 0.
|
| 128 |
"step": 375
|
| 129 |
},
|
| 130 |
{
|
| 131 |
"epoch": 1.3114754098360657,
|
| 132 |
-
"grad_norm":
|
| 133 |
"learning_rate": 1.640203932993445e-05,
|
| 134 |
-
"loss": 0.
|
| 135 |
"step": 400
|
| 136 |
},
|
| 137 |
{
|
| 138 |
"epoch": 1.3934426229508197,
|
| 139 |
-
"grad_norm":
|
| 140 |
"learning_rate": 1.603787327021122e-05,
|
| 141 |
-
"loss": 0.
|
| 142 |
"step": 425
|
| 143 |
},
|
| 144 |
{
|
| 145 |
"epoch": 1.4754098360655736,
|
| 146 |
-
"grad_norm":
|
| 147 |
"learning_rate": 1.5673707210487983e-05,
|
| 148 |
-
"loss": 0.
|
| 149 |
"step": 450
|
| 150 |
},
|
| 151 |
{
|
| 152 |
"epoch": 1.5573770491803278,
|
| 153 |
-
"grad_norm":
|
| 154 |
"learning_rate": 1.530954115076475e-05,
|
| 155 |
-
"loss": 0.
|
| 156 |
"step": 475
|
| 157 |
},
|
| 158 |
{
|
| 159 |
"epoch": 1.639344262295082,
|
| 160 |
-
"grad_norm":
|
| 161 |
"learning_rate": 1.4945375091041516e-05,
|
| 162 |
-
"loss": 0.
|
| 163 |
"step": 500
|
| 164 |
},
|
| 165 |
{
|
| 166 |
"epoch": 1.721311475409836,
|
| 167 |
-
"grad_norm": 0.
|
| 168 |
"learning_rate": 1.4581209031318282e-05,
|
| 169 |
-
"loss": 0.
|
| 170 |
"step": 525
|
| 171 |
},
|
| 172 |
{
|
| 173 |
"epoch": 1.8032786885245902,
|
| 174 |
-
"grad_norm":
|
| 175 |
"learning_rate": 1.4217042971595047e-05,
|
| 176 |
-
"loss": 0.
|
| 177 |
"step": 550
|
| 178 |
},
|
| 179 |
{
|
| 180 |
"epoch": 1.8852459016393444,
|
| 181 |
-
"grad_norm":
|
| 182 |
"learning_rate": 1.3852876911871815e-05,
|
| 183 |
-
"loss": 0.
|
| 184 |
"step": 575
|
| 185 |
},
|
| 186 |
{
|
| 187 |
"epoch": 1.9672131147540983,
|
| 188 |
-
"grad_norm":
|
| 189 |
"learning_rate": 1.3488710852148582e-05,
|
| 190 |
-
"loss": 0.
|
| 191 |
"step": 600
|
| 192 |
},
|
| 193 |
{
|
| 194 |
"epoch": 2.0,
|
| 195 |
-
"eval_accuracy": 0.
|
| 196 |
-
"eval_f1": 0.
|
| 197 |
-
"eval_loss": 0.
|
| 198 |
-
"eval_precision": 0.
|
| 199 |
-
"eval_recall": 0.
|
| 200 |
-
"eval_roc_auc": 0.
|
| 201 |
-
"eval_runtime":
|
| 202 |
-
"eval_samples_per_second":
|
| 203 |
-
"eval_steps_per_second":
|
| 204 |
"step": 610
|
| 205 |
},
|
| 206 |
{
|
| 207 |
"epoch": 2.0491803278688523,
|
| 208 |
-
"grad_norm":
|
| 209 |
"learning_rate": 1.3124544792425346e-05,
|
| 210 |
-
"loss": 0.
|
| 211 |
"step": 625
|
| 212 |
},
|
| 213 |
{
|
| 214 |
"epoch": 2.1311475409836067,
|
| 215 |
-
"grad_norm":
|
| 216 |
"learning_rate": 1.2760378732702113e-05,
|
| 217 |
-
"loss": 0.
|
| 218 |
"step": 650
|
| 219 |
},
|
| 220 |
{
|
| 221 |
"epoch": 2.2131147540983607,
|
| 222 |
-
"grad_norm":
|
| 223 |
"learning_rate": 1.239621267297888e-05,
|
| 224 |
-
"loss": 0.
|
| 225 |
"step": 675
|
| 226 |
},
|
| 227 |
{
|
| 228 |
"epoch": 2.2950819672131146,
|
| 229 |
-
"grad_norm":
|
| 230 |
"learning_rate": 1.2032046613255645e-05,
|
| 231 |
-
"loss": 0.
|
| 232 |
"step": 700
|
| 233 |
},
|
| 234 |
{
|
| 235 |
"epoch": 2.3770491803278686,
|
| 236 |
-
"grad_norm": 0.
|
| 237 |
"learning_rate": 1.1667880553532412e-05,
|
| 238 |
-
"loss": 0.
|
| 239 |
"step": 725
|
| 240 |
},
|
| 241 |
{
|
| 242 |
"epoch": 2.459016393442623,
|
| 243 |
-
"grad_norm":
|
| 244 |
"learning_rate": 1.1303714493809176e-05,
|
| 245 |
-
"loss": 0.
|
| 246 |
"step": 750
|
| 247 |
},
|
| 248 |
{
|
| 249 |
"epoch": 2.540983606557377,
|
| 250 |
-
"grad_norm":
|
| 251 |
"learning_rate": 1.0939548434085944e-05,
|
| 252 |
-
"loss": 0.
|
| 253 |
"step": 775
|
| 254 |
},
|
| 255 |
{
|
| 256 |
"epoch": 2.6229508196721314,
|
| 257 |
-
"grad_norm":
|
| 258 |
"learning_rate": 1.057538237436271e-05,
|
| 259 |
-
"loss": 0.
|
| 260 |
"step": 800
|
| 261 |
},
|
| 262 |
{
|
| 263 |
"epoch": 2.7049180327868854,
|
| 264 |
-
"grad_norm": 0.
|
| 265 |
"learning_rate": 1.0211216314639475e-05,
|
| 266 |
-
"loss": 0.
|
| 267 |
"step": 825
|
| 268 |
},
|
| 269 |
{
|
| 270 |
"epoch": 2.7868852459016393,
|
| 271 |
-
"grad_norm":
|
| 272 |
"learning_rate": 9.847050254916243e-06,
|
| 273 |
-
"loss": 0.
|
| 274 |
"step": 850
|
| 275 |
},
|
| 276 |
{
|
| 277 |
"epoch": 2.8688524590163933,
|
| 278 |
-
"grad_norm": 0.
|
| 279 |
"learning_rate": 9.482884195193008e-06,
|
| 280 |
-
"loss": 0.
|
| 281 |
"step": 875
|
| 282 |
},
|
| 283 |
{
|
| 284 |
"epoch": 2.9508196721311473,
|
| 285 |
-
"grad_norm": 0.
|
| 286 |
"learning_rate": 9.118718135469774e-06,
|
| 287 |
-
"loss": 0.
|
| 288 |
"step": 900
|
| 289 |
},
|
| 290 |
{
|
| 291 |
"epoch": 3.0,
|
| 292 |
-
"eval_accuracy": 0.
|
| 293 |
-
"eval_f1": 0.
|
| 294 |
-
"eval_loss": 0.
|
| 295 |
-
"eval_precision": 0.
|
| 296 |
-
"eval_recall": 0.
|
| 297 |
-
"eval_roc_auc": 0.
|
| 298 |
-
"eval_runtime": 3.
|
| 299 |
-
"eval_samples_per_second":
|
| 300 |
-
"eval_steps_per_second":
|
| 301 |
"step": 915
|
| 302 |
},
|
| 303 |
{
|
| 304 |
"epoch": 3.0327868852459017,
|
| 305 |
-
"grad_norm":
|
| 306 |
"learning_rate": 8.754552075746541e-06,
|
| 307 |
-
"loss": 0.
|
| 308 |
"step": 925
|
| 309 |
},
|
| 310 |
{
|
| 311 |
"epoch": 3.1147540983606556,
|
| 312 |
-
"grad_norm": 0.
|
| 313 |
"learning_rate": 8.390386016023307e-06,
|
| 314 |
-
"loss": 0.
|
| 315 |
"step": 950
|
| 316 |
},
|
| 317 |
{
|
| 318 |
"epoch": 3.19672131147541,
|
| 319 |
-
"grad_norm": 0.
|
| 320 |
"learning_rate": 8.026219956300074e-06,
|
| 321 |
-
"loss": 0.
|
| 322 |
"step": 975
|
| 323 |
},
|
| 324 |
{
|
| 325 |
"epoch": 3.278688524590164,
|
| 326 |
-
"grad_norm": 1.
|
| 327 |
"learning_rate": 7.66205389657684e-06,
|
| 328 |
-
"loss": 0.
|
| 329 |
"step": 1000
|
| 330 |
},
|
| 331 |
{
|
| 332 |
"epoch": 3.360655737704918,
|
| 333 |
-
"grad_norm": 0.
|
| 334 |
"learning_rate": 7.2978878368536055e-06,
|
| 335 |
-
"loss": 0.
|
| 336 |
"step": 1025
|
| 337 |
},
|
| 338 |
{
|
| 339 |
"epoch": 3.442622950819672,
|
| 340 |
-
"grad_norm":
|
| 341 |
"learning_rate": 6.933721777130372e-06,
|
| 342 |
-
"loss": 0.
|
| 343 |
"step": 1050
|
| 344 |
},
|
| 345 |
{
|
| 346 |
"epoch": 3.5245901639344264,
|
| 347 |
-
"grad_norm":
|
| 348 |
"learning_rate": 6.569555717407138e-06,
|
| 349 |
-
"loss": 0.
|
| 350 |
"step": 1075
|
| 351 |
},
|
| 352 |
{
|
| 353 |
"epoch": 3.6065573770491803,
|
| 354 |
-
"grad_norm": 0.
|
| 355 |
"learning_rate": 6.2053896576839045e-06,
|
| 356 |
-
"loss": 0.
|
| 357 |
"step": 1100
|
| 358 |
},
|
| 359 |
{
|
| 360 |
"epoch": 3.6885245901639343,
|
| 361 |
-
"grad_norm": 0.
|
| 362 |
"learning_rate": 5.84122359796067e-06,
|
| 363 |
-
"loss": 0.
|
| 364 |
"step": 1125
|
| 365 |
},
|
| 366 |
{
|
| 367 |
"epoch": 3.7704918032786887,
|
| 368 |
-
"grad_norm":
|
| 369 |
"learning_rate": 5.477057538237437e-06,
|
| 370 |
-
"loss": 0.
|
| 371 |
"step": 1150
|
| 372 |
},
|
| 373 |
{
|
| 374 |
"epoch": 3.8524590163934427,
|
| 375 |
-
"grad_norm":
|
| 376 |
"learning_rate": 5.112891478514203e-06,
|
| 377 |
-
"loss": 0.
|
| 378 |
"step": 1175
|
| 379 |
},
|
| 380 |
{
|
| 381 |
"epoch": 3.9344262295081966,
|
| 382 |
-
"grad_norm": 0.
|
| 383 |
"learning_rate": 4.748725418790969e-06,
|
| 384 |
-
"loss": 0.
|
| 385 |
"step": 1200
|
| 386 |
},
|
| 387 |
{
|
| 388 |
"epoch": 4.0,
|
| 389 |
-
"eval_accuracy": 0.
|
| 390 |
-
"eval_f1": 0.
|
| 391 |
-
"eval_loss": 0.
|
| 392 |
-
"eval_precision": 0.
|
| 393 |
"eval_recall": 0.8607594936708861,
|
| 394 |
-
"eval_roc_auc": 0.
|
| 395 |
-
"eval_runtime": 3.
|
| 396 |
-
"eval_samples_per_second":
|
| 397 |
-
"eval_steps_per_second":
|
| 398 |
"step": 1220
|
| 399 |
},
|
| 400 |
{
|
| 401 |
"epoch": 4.016393442622951,
|
| 402 |
-
"grad_norm": 2.
|
| 403 |
"learning_rate": 4.3845593590677355e-06,
|
| 404 |
-
"loss": 0.
|
| 405 |
"step": 1225
|
| 406 |
},
|
| 407 |
{
|
| 408 |
"epoch": 4.098360655737705,
|
| 409 |
-
"grad_norm":
|
| 410 |
"learning_rate": 4.020393299344502e-06,
|
| 411 |
-
"loss": 0.
|
| 412 |
"step": 1250
|
| 413 |
},
|
| 414 |
{
|
| 415 |
"epoch": 4.180327868852459,
|
| 416 |
-
"grad_norm": 0.
|
| 417 |
"learning_rate": 3.656227239621268e-06,
|
| 418 |
-
"loss": 0.
|
| 419 |
"step": 1275
|
| 420 |
},
|
| 421 |
{
|
| 422 |
"epoch": 4.262295081967213,
|
| 423 |
-
"grad_norm": 0.
|
| 424 |
"learning_rate": 3.292061179898034e-06,
|
| 425 |
-
"loss": 0.
|
| 426 |
"step": 1300
|
| 427 |
},
|
| 428 |
{
|
| 429 |
"epoch": 4.344262295081967,
|
| 430 |
-
"grad_norm": 0.
|
| 431 |
"learning_rate": 2.9278951201748e-06,
|
| 432 |
-
"loss": 0.
|
| 433 |
"step": 1325
|
| 434 |
},
|
| 435 |
{
|
| 436 |
"epoch": 4.426229508196721,
|
| 437 |
-
"grad_norm": 0.
|
| 438 |
"learning_rate": 2.5637290604515665e-06,
|
| 439 |
-
"loss": 0.
|
| 440 |
"step": 1350
|
| 441 |
},
|
| 442 |
{
|
| 443 |
"epoch": 4.508196721311475,
|
| 444 |
-
"grad_norm": 0.
|
| 445 |
"learning_rate": 2.1995630007283324e-06,
|
| 446 |
-
"loss": 0.
|
| 447 |
"step": 1375
|
| 448 |
},
|
| 449 |
{
|
| 450 |
"epoch": 4.590163934426229,
|
| 451 |
-
"grad_norm":
|
| 452 |
"learning_rate": 1.8353969410050983e-06,
|
| 453 |
-
"loss": 0.
|
| 454 |
"step": 1400
|
| 455 |
},
|
| 456 |
{
|
| 457 |
"epoch": 4.672131147540983,
|
| 458 |
-
"grad_norm":
|
| 459 |
"learning_rate": 1.4712308812818645e-06,
|
| 460 |
-
"loss": 0.
|
| 461 |
"step": 1425
|
| 462 |
},
|
| 463 |
{
|
| 464 |
"epoch": 4.754098360655737,
|
| 465 |
-
"grad_norm":
|
| 466 |
"learning_rate": 1.1070648215586309e-06,
|
| 467 |
-
"loss": 0.
|
| 468 |
"step": 1450
|
| 469 |
},
|
| 470 |
{
|
| 471 |
"epoch": 4.836065573770492,
|
| 472 |
-
"grad_norm": 0.
|
| 473 |
"learning_rate": 7.428987618353969e-07,
|
| 474 |
-
"loss": 0.
|
| 475 |
"step": 1475
|
| 476 |
},
|
| 477 |
{
|
| 478 |
"epoch": 4.918032786885246,
|
| 479 |
-
"grad_norm": 0.
|
| 480 |
"learning_rate": 3.787327021121632e-07,
|
| 481 |
-
"loss": 0.
|
| 482 |
"step": 1500
|
| 483 |
},
|
| 484 |
{
|
| 485 |
"epoch": 5.0,
|
| 486 |
-
"grad_norm": 0.
|
| 487 |
"learning_rate": 1.4566642388929353e-08,
|
| 488 |
-
"loss": 0.
|
| 489 |
"step": 1525
|
| 490 |
},
|
| 491 |
{
|
| 492 |
"epoch": 5.0,
|
| 493 |
-
"eval_accuracy": 0.
|
| 494 |
-
"eval_f1": 0.
|
| 495 |
-
"eval_loss": 0.
|
| 496 |
-
"eval_precision": 0.
|
| 497 |
-
"eval_recall": 0.
|
| 498 |
-
"eval_roc_auc": 0.
|
| 499 |
-
"eval_runtime": 3.
|
| 500 |
-
"eval_samples_per_second":
|
| 501 |
-
"eval_steps_per_second":
|
| 502 |
"step": 1525
|
| 503 |
}
|
| 504 |
],
|
|
@@ -514,7 +514,7 @@
|
|
| 514 |
"early_stopping_threshold": 0.0
|
| 515 |
},
|
| 516 |
"attributes": {
|
| 517 |
-
"early_stopping_patience_counter":
|
| 518 |
}
|
| 519 |
},
|
| 520 |
"TrainerControl": {
|
|
|
|
| 1 |
{
|
| 2 |
+
"best_global_step": 1220,
|
| 3 |
+
"best_metric": 0.7953216374269005,
|
| 4 |
+
"best_model_checkpoint": "/content/agri-utilization-classifier/transformer/checkpoint-1220",
|
| 5 |
"epoch": 5.0,
|
| 6 |
"eval_steps": 500,
|
| 7 |
"global_step": 1525,
|
|
|
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
"epoch": 0.08196721311475409,
|
| 14 |
+
"grad_norm": 3.737260103225708,
|
| 15 |
"learning_rate": 3.157894736842105e-06,
|
| 16 |
+
"loss": 0.5265155029296875,
|
| 17 |
"step": 25
|
| 18 |
},
|
| 19 |
{
|
| 20 |
"epoch": 0.16393442622950818,
|
| 21 |
+
"grad_norm": 3.5834667682647705,
|
| 22 |
"learning_rate": 6.447368421052632e-06,
|
| 23 |
+
"loss": 0.46113067626953125,
|
| 24 |
"step": 50
|
| 25 |
},
|
| 26 |
{
|
| 27 |
"epoch": 0.2459016393442623,
|
| 28 |
+
"grad_norm": 4.713325500488281,
|
| 29 |
"learning_rate": 9.736842105263159e-06,
|
| 30 |
+
"loss": 0.36277122497558595,
|
| 31 |
"step": 75
|
| 32 |
},
|
| 33 |
{
|
| 34 |
"epoch": 0.32786885245901637,
|
| 35 |
+
"grad_norm": 5.049388885498047,
|
| 36 |
"learning_rate": 1.3026315789473684e-05,
|
| 37 |
+
"loss": 0.2863706398010254,
|
| 38 |
"step": 100
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"epoch": 0.4098360655737705,
|
| 42 |
+
"grad_norm": 3.5716683864593506,
|
| 43 |
"learning_rate": 1.6315789473684213e-05,
|
| 44 |
+
"loss": 0.30932790756225587,
|
| 45 |
"step": 125
|
| 46 |
},
|
| 47 |
{
|
| 48 |
"epoch": 0.4918032786885246,
|
| 49 |
+
"grad_norm": 3.1771602630615234,
|
| 50 |
"learning_rate": 1.960526315789474e-05,
|
| 51 |
+
"loss": 0.34346282958984375,
|
| 52 |
"step": 150
|
| 53 |
},
|
| 54 |
{
|
| 55 |
"epoch": 0.5737704918032787,
|
| 56 |
+
"grad_norm": 13.294544219970703,
|
| 57 |
"learning_rate": 1.9679533867443555e-05,
|
| 58 |
+
"loss": 0.2966791343688965,
|
| 59 |
"step": 175
|
| 60 |
},
|
| 61 |
{
|
| 62 |
"epoch": 0.6557377049180327,
|
| 63 |
+
"grad_norm": 4.51957893371582,
|
| 64 |
"learning_rate": 1.9315367807720323e-05,
|
| 65 |
+
"loss": 0.3470170211791992,
|
| 66 |
"step": 200
|
| 67 |
},
|
| 68 |
{
|
| 69 |
"epoch": 0.7377049180327869,
|
| 70 |
+
"grad_norm": 2.978902816772461,
|
| 71 |
"learning_rate": 1.8951201747997088e-05,
|
| 72 |
+
"loss": 0.33052406311035154,
|
| 73 |
"step": 225
|
| 74 |
},
|
| 75 |
{
|
| 76 |
"epoch": 0.819672131147541,
|
| 77 |
+
"grad_norm": 3.3191263675689697,
|
| 78 |
"learning_rate": 1.8587035688273852e-05,
|
| 79 |
+
"loss": 0.21728967666625976,
|
| 80 |
"step": 250
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"epoch": 0.9016393442622951,
|
| 84 |
+
"grad_norm": 3.7143661975860596,
|
| 85 |
"learning_rate": 1.822286962855062e-05,
|
| 86 |
+
"loss": 0.23666904449462892,
|
| 87 |
"step": 275
|
| 88 |
},
|
| 89 |
{
|
| 90 |
"epoch": 0.9836065573770492,
|
| 91 |
+
"grad_norm": 1.896660566329956,
|
| 92 |
"learning_rate": 1.7858703568827385e-05,
|
| 93 |
+
"loss": 0.21057628631591796,
|
| 94 |
"step": 300
|
| 95 |
},
|
| 96 |
{
|
| 97 |
"epoch": 1.0,
|
| 98 |
+
"eval_accuracy": 0.9611451942740287,
|
| 99 |
+
"eval_f1": 0.7205882352941176,
|
| 100 |
+
"eval_loss": 0.1562921404838562,
|
| 101 |
+
"eval_precision": 0.8596491228070176,
|
| 102 |
+
"eval_recall": 0.620253164556962,
|
| 103 |
+
"eval_roc_auc": 0.9517677869925796,
|
| 104 |
+
"eval_runtime": 3.9768,
|
| 105 |
+
"eval_samples_per_second": 245.924,
|
| 106 |
+
"eval_steps_per_second": 7.795,
|
| 107 |
"step": 305
|
| 108 |
},
|
| 109 |
{
|
| 110 |
"epoch": 1.0655737704918034,
|
| 111 |
+
"grad_norm": 1.421042561531067,
|
| 112 |
"learning_rate": 1.7494537509104153e-05,
|
| 113 |
+
"loss": 0.16764232635498047,
|
| 114 |
"step": 325
|
| 115 |
},
|
| 116 |
{
|
| 117 |
"epoch": 1.1475409836065573,
|
| 118 |
+
"grad_norm": 11.789098739624023,
|
| 119 |
"learning_rate": 1.7130371449380918e-05,
|
| 120 |
+
"loss": 0.20644237518310546,
|
| 121 |
"step": 350
|
| 122 |
},
|
| 123 |
{
|
| 124 |
"epoch": 1.2295081967213115,
|
| 125 |
+
"grad_norm": 0.6719069480895996,
|
| 126 |
"learning_rate": 1.6766205389657686e-05,
|
| 127 |
+
"loss": 0.1565106964111328,
|
| 128 |
"step": 375
|
| 129 |
},
|
| 130 |
{
|
| 131 |
"epoch": 1.3114754098360657,
|
| 132 |
+
"grad_norm": 3.198103666305542,
|
| 133 |
"learning_rate": 1.640203932993445e-05,
|
| 134 |
+
"loss": 0.13691966056823732,
|
| 135 |
"step": 400
|
| 136 |
},
|
| 137 |
{
|
| 138 |
"epoch": 1.3934426229508197,
|
| 139 |
+
"grad_norm": 0.4345323145389557,
|
| 140 |
"learning_rate": 1.603787327021122e-05,
|
| 141 |
+
"loss": 0.15782511711120606,
|
| 142 |
"step": 425
|
| 143 |
},
|
| 144 |
{
|
| 145 |
"epoch": 1.4754098360655736,
|
| 146 |
+
"grad_norm": 2.469116449356079,
|
| 147 |
"learning_rate": 1.5673707210487983e-05,
|
| 148 |
+
"loss": 0.14868577003479003,
|
| 149 |
"step": 450
|
| 150 |
},
|
| 151 |
{
|
| 152 |
"epoch": 1.5573770491803278,
|
| 153 |
+
"grad_norm": 1.4203808307647705,
|
| 154 |
"learning_rate": 1.530954115076475e-05,
|
| 155 |
+
"loss": 0.1306503391265869,
|
| 156 |
"step": 475
|
| 157 |
},
|
| 158 |
{
|
| 159 |
"epoch": 1.639344262295082,
|
| 160 |
+
"grad_norm": 1.1811524629592896,
|
| 161 |
"learning_rate": 1.4945375091041516e-05,
|
| 162 |
+
"loss": 0.1715664291381836,
|
| 163 |
"step": 500
|
| 164 |
},
|
| 165 |
{
|
| 166 |
"epoch": 1.721311475409836,
|
| 167 |
+
"grad_norm": 0.7283220887184143,
|
| 168 |
"learning_rate": 1.4581209031318282e-05,
|
| 169 |
+
"loss": 0.176502742767334,
|
| 170 |
"step": 525
|
| 171 |
},
|
| 172 |
{
|
| 173 |
"epoch": 1.8032786885245902,
|
| 174 |
+
"grad_norm": 4.3972930908203125,
|
| 175 |
"learning_rate": 1.4217042971595047e-05,
|
| 176 |
+
"loss": 0.19116065979003907,
|
| 177 |
"step": 550
|
| 178 |
},
|
| 179 |
{
|
| 180 |
"epoch": 1.8852459016393444,
|
| 181 |
+
"grad_norm": 22.928813934326172,
|
| 182 |
"learning_rate": 1.3852876911871815e-05,
|
| 183 |
+
"loss": 0.11317115783691406,
|
| 184 |
"step": 575
|
| 185 |
},
|
| 186 |
{
|
| 187 |
"epoch": 1.9672131147540983,
|
| 188 |
+
"grad_norm": 1.4874694347381592,
|
| 189 |
"learning_rate": 1.3488710852148582e-05,
|
| 190 |
+
"loss": 0.19129184722900391,
|
| 191 |
"step": 600
|
| 192 |
},
|
| 193 |
{
|
| 194 |
"epoch": 2.0,
|
| 195 |
+
"eval_accuracy": 0.9652351738241309,
|
| 196 |
+
"eval_f1": 0.7571428571428571,
|
| 197 |
+
"eval_loss": 0.14743675291538239,
|
| 198 |
+
"eval_precision": 0.8688524590163934,
|
| 199 |
+
"eval_recall": 0.6708860759493671,
|
| 200 |
+
"eval_roc_auc": 0.963426310527872,
|
| 201 |
+
"eval_runtime": 4.0109,
|
| 202 |
+
"eval_samples_per_second": 243.834,
|
| 203 |
+
"eval_steps_per_second": 7.729,
|
| 204 |
"step": 610
|
| 205 |
},
|
| 206 |
{
|
| 207 |
"epoch": 2.0491803278688523,
|
| 208 |
+
"grad_norm": 12.971587181091309,
|
| 209 |
"learning_rate": 1.3124544792425346e-05,
|
| 210 |
+
"loss": 0.12445893287658691,
|
| 211 |
"step": 625
|
| 212 |
},
|
| 213 |
{
|
| 214 |
"epoch": 2.1311475409836067,
|
| 215 |
+
"grad_norm": 25.91712760925293,
|
| 216 |
"learning_rate": 1.2760378732702113e-05,
|
| 217 |
+
"loss": 0.12887270927429198,
|
| 218 |
"step": 650
|
| 219 |
},
|
| 220 |
{
|
| 221 |
"epoch": 2.2131147540983607,
|
| 222 |
+
"grad_norm": 6.632810592651367,
|
| 223 |
"learning_rate": 1.239621267297888e-05,
|
| 224 |
+
"loss": 0.11674688339233398,
|
| 225 |
"step": 675
|
| 226 |
},
|
| 227 |
{
|
| 228 |
"epoch": 2.2950819672131146,
|
| 229 |
+
"grad_norm": 7.63377046585083,
|
| 230 |
"learning_rate": 1.2032046613255645e-05,
|
| 231 |
+
"loss": 0.09968890190124512,
|
| 232 |
"step": 700
|
| 233 |
},
|
| 234 |
{
|
| 235 |
"epoch": 2.3770491803278686,
|
| 236 |
+
"grad_norm": 0.24016129970550537,
|
| 237 |
"learning_rate": 1.1667880553532412e-05,
|
| 238 |
+
"loss": 0.1278015899658203,
|
| 239 |
"step": 725
|
| 240 |
},
|
| 241 |
{
|
| 242 |
"epoch": 2.459016393442623,
|
| 243 |
+
"grad_norm": 13.630209922790527,
|
| 244 |
"learning_rate": 1.1303714493809176e-05,
|
| 245 |
+
"loss": 0.11038578987121582,
|
| 246 |
"step": 750
|
| 247 |
},
|
| 248 |
{
|
| 249 |
"epoch": 2.540983606557377,
|
| 250 |
+
"grad_norm": 3.605466842651367,
|
| 251 |
"learning_rate": 1.0939548434085944e-05,
|
| 252 |
+
"loss": 0.09141416549682617,
|
| 253 |
"step": 775
|
| 254 |
},
|
| 255 |
{
|
| 256 |
"epoch": 2.6229508196721314,
|
| 257 |
+
"grad_norm": 9.083756446838379,
|
| 258 |
"learning_rate": 1.057538237436271e-05,
|
| 259 |
+
"loss": 0.12407379150390625,
|
| 260 |
"step": 800
|
| 261 |
},
|
| 262 |
{
|
| 263 |
"epoch": 2.7049180327868854,
|
| 264 |
+
"grad_norm": 0.1447029560804367,
|
| 265 |
"learning_rate": 1.0211216314639475e-05,
|
| 266 |
+
"loss": 0.10234562873840332,
|
| 267 |
"step": 825
|
| 268 |
},
|
| 269 |
{
|
| 270 |
"epoch": 2.7868852459016393,
|
| 271 |
+
"grad_norm": 0.6932273507118225,
|
| 272 |
"learning_rate": 9.847050254916243e-06,
|
| 273 |
+
"loss": 0.09410433769226074,
|
| 274 |
"step": 850
|
| 275 |
},
|
| 276 |
{
|
| 277 |
"epoch": 2.8688524590163933,
|
| 278 |
+
"grad_norm": 0.053487662225961685,
|
| 279 |
"learning_rate": 9.482884195193008e-06,
|
| 280 |
+
"loss": 0.12300247192382813,
|
| 281 |
"step": 875
|
| 282 |
},
|
| 283 |
{
|
| 284 |
"epoch": 2.9508196721311473,
|
| 285 |
+
"grad_norm": 0.46310335397720337,
|
| 286 |
"learning_rate": 9.118718135469774e-06,
|
| 287 |
+
"loss": 0.11163784980773926,
|
| 288 |
"step": 900
|
| 289 |
},
|
| 290 |
{
|
| 291 |
"epoch": 3.0,
|
| 292 |
+
"eval_accuracy": 0.9591002044989775,
|
| 293 |
+
"eval_f1": 0.7727272727272727,
|
| 294 |
+
"eval_loss": 0.13372264802455902,
|
| 295 |
+
"eval_precision": 0.7010309278350515,
|
| 296 |
+
"eval_recall": 0.8607594936708861,
|
| 297 |
+
"eval_roc_auc": 0.9666295884315906,
|
| 298 |
+
"eval_runtime": 3.9748,
|
| 299 |
+
"eval_samples_per_second": 246.051,
|
| 300 |
+
"eval_steps_per_second": 7.799,
|
| 301 |
"step": 915
|
| 302 |
},
|
| 303 |
{
|
| 304 |
"epoch": 3.0327868852459017,
|
| 305 |
+
"grad_norm": 0.38893452286720276,
|
| 306 |
"learning_rate": 8.754552075746541e-06,
|
| 307 |
+
"loss": 0.07861940383911133,
|
| 308 |
"step": 925
|
| 309 |
},
|
| 310 |
{
|
| 311 |
"epoch": 3.1147540983606556,
|
| 312 |
+
"grad_norm": 0.1529499739408493,
|
| 313 |
"learning_rate": 8.390386016023307e-06,
|
| 314 |
+
"loss": 0.0873807716369629,
|
| 315 |
"step": 950
|
| 316 |
},
|
| 317 |
{
|
| 318 |
"epoch": 3.19672131147541,
|
| 319 |
+
"grad_norm": 0.042547326534986496,
|
| 320 |
"learning_rate": 8.026219956300074e-06,
|
| 321 |
+
"loss": 0.09024697303771972,
|
| 322 |
"step": 975
|
| 323 |
},
|
| 324 |
{
|
| 325 |
"epoch": 3.278688524590164,
|
| 326 |
+
"grad_norm": 1.9330065250396729,
|
| 327 |
"learning_rate": 7.66205389657684e-06,
|
| 328 |
+
"loss": 0.06100567817687988,
|
| 329 |
"step": 1000
|
| 330 |
},
|
| 331 |
{
|
| 332 |
"epoch": 3.360655737704918,
|
| 333 |
+
"grad_norm": 0.11758341640233994,
|
| 334 |
"learning_rate": 7.2978878368536055e-06,
|
| 335 |
+
"loss": 0.08453927040100098,
|
| 336 |
"step": 1025
|
| 337 |
},
|
| 338 |
{
|
| 339 |
"epoch": 3.442622950819672,
|
| 340 |
+
"grad_norm": 3.271782875061035,
|
| 341 |
"learning_rate": 6.933721777130372e-06,
|
| 342 |
+
"loss": 0.13461392402648925,
|
| 343 |
"step": 1050
|
| 344 |
},
|
| 345 |
{
|
| 346 |
"epoch": 3.5245901639344264,
|
| 347 |
+
"grad_norm": 0.4164356291294098,
|
| 348 |
"learning_rate": 6.569555717407138e-06,
|
| 349 |
+
"loss": 0.11135642051696777,
|
| 350 |
"step": 1075
|
| 351 |
},
|
| 352 |
{
|
| 353 |
"epoch": 3.6065573770491803,
|
| 354 |
+
"grad_norm": 0.11387842148542404,
|
| 355 |
"learning_rate": 6.2053896576839045e-06,
|
| 356 |
+
"loss": 0.07281729221343994,
|
| 357 |
"step": 1100
|
| 358 |
},
|
| 359 |
{
|
| 360 |
"epoch": 3.6885245901639343,
|
| 361 |
+
"grad_norm": 0.08642543852329254,
|
| 362 |
"learning_rate": 5.84122359796067e-06,
|
| 363 |
+
"loss": 0.07367591381072998,
|
| 364 |
"step": 1125
|
| 365 |
},
|
| 366 |
{
|
| 367 |
"epoch": 3.7704918032786887,
|
| 368 |
+
"grad_norm": 1.8669590950012207,
|
| 369 |
"learning_rate": 5.477057538237437e-06,
|
| 370 |
+
"loss": 0.07471850395202637,
|
| 371 |
"step": 1150
|
| 372 |
},
|
| 373 |
{
|
| 374 |
"epoch": 3.8524590163934427,
|
| 375 |
+
"grad_norm": 4.208413124084473,
|
| 376 |
"learning_rate": 5.112891478514203e-06,
|
| 377 |
+
"loss": 0.08314379692077636,
|
| 378 |
"step": 1175
|
| 379 |
},
|
| 380 |
{
|
| 381 |
"epoch": 3.9344262295081966,
|
| 382 |
+
"grad_norm": 0.028365109115839005,
|
| 383 |
"learning_rate": 4.748725418790969e-06,
|
| 384 |
+
"loss": 0.05273099899291992,
|
| 385 |
"step": 1200
|
| 386 |
},
|
| 387 |
{
|
| 388 |
"epoch": 4.0,
|
| 389 |
+
"eval_accuracy": 0.9642126789366053,
|
| 390 |
+
"eval_f1": 0.7953216374269005,
|
| 391 |
+
"eval_loss": 0.13287556171417236,
|
| 392 |
+
"eval_precision": 0.7391304347826086,
|
| 393 |
"eval_recall": 0.8607594936708861,
|
| 394 |
+
"eval_roc_auc": 0.970269356950761,
|
| 395 |
+
"eval_runtime": 3.9222,
|
| 396 |
+
"eval_samples_per_second": 249.351,
|
| 397 |
+
"eval_steps_per_second": 7.904,
|
| 398 |
"step": 1220
|
| 399 |
},
|
| 400 |
{
|
| 401 |
"epoch": 4.016393442622951,
|
| 402 |
+
"grad_norm": 2.0253684520721436,
|
| 403 |
"learning_rate": 4.3845593590677355e-06,
|
| 404 |
+
"loss": 0.08014700889587402,
|
| 405 |
"step": 1225
|
| 406 |
},
|
| 407 |
{
|
| 408 |
"epoch": 4.098360655737705,
|
| 409 |
+
"grad_norm": 3.355590343475342,
|
| 410 |
"learning_rate": 4.020393299344502e-06,
|
| 411 |
+
"loss": 0.03761215686798096,
|
| 412 |
"step": 1250
|
| 413 |
},
|
| 414 |
{
|
| 415 |
"epoch": 4.180327868852459,
|
| 416 |
+
"grad_norm": 0.07855895161628723,
|
| 417 |
"learning_rate": 3.656227239621268e-06,
|
| 418 |
+
"loss": 0.05990780830383301,
|
| 419 |
"step": 1275
|
| 420 |
},
|
| 421 |
{
|
| 422 |
"epoch": 4.262295081967213,
|
| 423 |
+
"grad_norm": 0.051775768399238586,
|
| 424 |
"learning_rate": 3.292061179898034e-06,
|
| 425 |
+
"loss": 0.04332004070281983,
|
| 426 |
"step": 1300
|
| 427 |
},
|
| 428 |
{
|
| 429 |
"epoch": 4.344262295081967,
|
| 430 |
+
"grad_norm": 0.022426214069128036,
|
| 431 |
"learning_rate": 2.9278951201748e-06,
|
| 432 |
+
"loss": 0.05158641815185547,
|
| 433 |
"step": 1325
|
| 434 |
},
|
| 435 |
{
|
| 436 |
"epoch": 4.426229508196721,
|
| 437 |
+
"grad_norm": 0.05757160484790802,
|
| 438 |
"learning_rate": 2.5637290604515665e-06,
|
| 439 |
+
"loss": 0.06199075698852539,
|
| 440 |
"step": 1350
|
| 441 |
},
|
| 442 |
{
|
| 443 |
"epoch": 4.508196721311475,
|
| 444 |
+
"grad_norm": 0.021524911746382713,
|
| 445 |
"learning_rate": 2.1995630007283324e-06,
|
| 446 |
+
"loss": 0.07642561912536622,
|
| 447 |
"step": 1375
|
| 448 |
},
|
| 449 |
{
|
| 450 |
"epoch": 4.590163934426229,
|
| 451 |
+
"grad_norm": 20.346662521362305,
|
| 452 |
"learning_rate": 1.8353969410050983e-06,
|
| 453 |
+
"loss": 0.07573038578033447,
|
| 454 |
"step": 1400
|
| 455 |
},
|
| 456 |
{
|
| 457 |
"epoch": 4.672131147540983,
|
| 458 |
+
"grad_norm": 35.3530158996582,
|
| 459 |
"learning_rate": 1.4712308812818645e-06,
|
| 460 |
+
"loss": 0.06790618896484375,
|
| 461 |
"step": 1425
|
| 462 |
},
|
| 463 |
{
|
| 464 |
"epoch": 4.754098360655737,
|
| 465 |
+
"grad_norm": 19.704309463500977,
|
| 466 |
"learning_rate": 1.1070648215586309e-06,
|
| 467 |
+
"loss": 0.055903663635253904,
|
| 468 |
"step": 1450
|
| 469 |
},
|
| 470 |
{
|
| 471 |
"epoch": 4.836065573770492,
|
| 472 |
+
"grad_norm": 0.05249848961830139,
|
| 473 |
"learning_rate": 7.428987618353969e-07,
|
| 474 |
+
"loss": 0.015570777654647826,
|
| 475 |
"step": 1475
|
| 476 |
},
|
| 477 |
{
|
| 478 |
"epoch": 4.918032786885246,
|
| 479 |
+
"grad_norm": 0.04541374370455742,
|
| 480 |
"learning_rate": 3.787327021121632e-07,
|
| 481 |
+
"loss": 0.07807952880859376,
|
| 482 |
"step": 1500
|
| 483 |
},
|
| 484 |
{
|
| 485 |
"epoch": 5.0,
|
| 486 |
+
"grad_norm": 0.029257308691740036,
|
| 487 |
"learning_rate": 1.4566642388929353e-08,
|
| 488 |
+
"loss": 0.08001264572143554,
|
| 489 |
"step": 1525
|
| 490 |
},
|
| 491 |
{
|
| 492 |
"epoch": 5.0,
|
| 493 |
+
"eval_accuracy": 0.9621676891615542,
|
| 494 |
+
"eval_f1": 0.7861271676300579,
|
| 495 |
+
"eval_loss": 0.14306730031967163,
|
| 496 |
+
"eval_precision": 0.723404255319149,
|
| 497 |
+
"eval_recall": 0.8607594936708861,
|
| 498 |
+
"eval_roc_auc": 0.9705439236282226,
|
| 499 |
+
"eval_runtime": 3.8887,
|
| 500 |
+
"eval_samples_per_second": 251.5,
|
| 501 |
+
"eval_steps_per_second": 7.972,
|
| 502 |
"step": 1525
|
| 503 |
}
|
| 504 |
],
|
|
|
|
| 514 |
"early_stopping_threshold": 0.0
|
| 515 |
},
|
| 516 |
"attributes": {
|
| 517 |
+
"early_stopping_patience_counter": 1
|
| 518 |
}
|
| 519 |
},
|
| 520 |
"TrainerControl": {
|
transformer/checkpoint-1525/training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d052a78a205856b0fb5f7f6bf70bfa1f4e42f119d70cd50149db16fae6be9220
|
| 3 |
+
size 5201
|
transformer/checkpoint-305/config.json
CHANGED
|
@@ -32,7 +32,7 @@
|
|
| 32 |
"position_embedding_type": "absolute",
|
| 33 |
"problem_type": "single_label_classification",
|
| 34 |
"tie_word_embeddings": true,
|
| 35 |
-
"transformers_version": "5.
|
| 36 |
"type_vocab_size": 1,
|
| 37 |
"use_cache": false,
|
| 38 |
"vocab_size": 250002
|
|
|
|
| 32 |
"position_embedding_type": "absolute",
|
| 33 |
"problem_type": "single_label_classification",
|
| 34 |
"tie_word_embeddings": true,
|
| 35 |
+
"transformers_version": "5.11.0",
|
| 36 |
"type_vocab_size": 1,
|
| 37 |
"use_cache": false,
|
| 38 |
"vocab_size": 250002
|
transformer/checkpoint-305/model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1112205008
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1db88ba2b6ced98640e6a0db0b1aa0a36ddbc0511b7f71306986dca52ec29eb6
|
| 3 |
size 1112205008
|
transformer/checkpoint-305/optimizer.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2224532875
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4be0c8719b4adf0f181db004022b0aa487254a81c73fa8c604ad290bd49389c1
|
| 3 |
size 2224532875
|
transformer/checkpoint-305/scaler.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1383
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a85bfb35ac6281d9cadab2dfa6918c7100c7517cc2965175846647e0e13a9090
|
| 3 |
size 1383
|
transformer/checkpoint-305/trainer_state.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"best_global_step": 305,
|
| 3 |
-
"best_metric": 0.
|
| 4 |
"best_model_checkpoint": "/content/agri-utilization-classifier/transformer/checkpoint-305",
|
| 5 |
"epoch": 1.0,
|
| 6 |
"eval_steps": 500,
|
|
@@ -11,99 +11,99 @@
|
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
"epoch": 0.08196721311475409,
|
| 14 |
-
"grad_norm":
|
| 15 |
"learning_rate": 3.157894736842105e-06,
|
| 16 |
-
"loss": 0.
|
| 17 |
"step": 25
|
| 18 |
},
|
| 19 |
{
|
| 20 |
"epoch": 0.16393442622950818,
|
| 21 |
-
"grad_norm":
|
| 22 |
"learning_rate": 6.447368421052632e-06,
|
| 23 |
-
"loss": 0.
|
| 24 |
"step": 50
|
| 25 |
},
|
| 26 |
{
|
| 27 |
"epoch": 0.2459016393442623,
|
| 28 |
-
"grad_norm":
|
| 29 |
"learning_rate": 9.736842105263159e-06,
|
| 30 |
-
"loss": 0.
|
| 31 |
"step": 75
|
| 32 |
},
|
| 33 |
{
|
| 34 |
"epoch": 0.32786885245901637,
|
| 35 |
-
"grad_norm":
|
| 36 |
"learning_rate": 1.3026315789473684e-05,
|
| 37 |
-
"loss": 0.
|
| 38 |
"step": 100
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"epoch": 0.4098360655737705,
|
| 42 |
-
"grad_norm":
|
| 43 |
"learning_rate": 1.6315789473684213e-05,
|
| 44 |
-
"loss": 0.
|
| 45 |
"step": 125
|
| 46 |
},
|
| 47 |
{
|
| 48 |
"epoch": 0.4918032786885246,
|
| 49 |
-
"grad_norm":
|
| 50 |
"learning_rate": 1.960526315789474e-05,
|
| 51 |
-
"loss": 0.
|
| 52 |
"step": 150
|
| 53 |
},
|
| 54 |
{
|
| 55 |
"epoch": 0.5737704918032787,
|
| 56 |
-
"grad_norm":
|
| 57 |
"learning_rate": 1.9679533867443555e-05,
|
| 58 |
-
"loss": 0.
|
| 59 |
"step": 175
|
| 60 |
},
|
| 61 |
{
|
| 62 |
"epoch": 0.6557377049180327,
|
| 63 |
-
"grad_norm":
|
| 64 |
"learning_rate": 1.9315367807720323e-05,
|
| 65 |
-
"loss": 0.
|
| 66 |
"step": 200
|
| 67 |
},
|
| 68 |
{
|
| 69 |
"epoch": 0.7377049180327869,
|
| 70 |
-
"grad_norm":
|
| 71 |
"learning_rate": 1.8951201747997088e-05,
|
| 72 |
-
"loss": 0.
|
| 73 |
"step": 225
|
| 74 |
},
|
| 75 |
{
|
| 76 |
"epoch": 0.819672131147541,
|
| 77 |
-
"grad_norm":
|
| 78 |
"learning_rate": 1.8587035688273852e-05,
|
| 79 |
-
"loss": 0.
|
| 80 |
"step": 250
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"epoch": 0.9016393442622951,
|
| 84 |
-
"grad_norm":
|
| 85 |
"learning_rate": 1.822286962855062e-05,
|
| 86 |
-
"loss": 0.
|
| 87 |
"step": 275
|
| 88 |
},
|
| 89 |
{
|
| 90 |
"epoch": 0.9836065573770492,
|
| 91 |
-
"grad_norm":
|
| 92 |
"learning_rate": 1.7858703568827385e-05,
|
| 93 |
-
"loss": 0.
|
| 94 |
"step": 300
|
| 95 |
},
|
| 96 |
{
|
| 97 |
"epoch": 1.0,
|
| 98 |
-
"eval_accuracy": 0.
|
| 99 |
-
"eval_f1": 0.
|
| 100 |
-
"eval_loss": 0.
|
| 101 |
-
"eval_precision": 0.
|
| 102 |
-
"eval_recall": 0.
|
| 103 |
-
"eval_roc_auc": 0.
|
| 104 |
-
"eval_runtime": 3.
|
| 105 |
-
"eval_samples_per_second":
|
| 106 |
-
"eval_steps_per_second":
|
| 107 |
"step": 305
|
| 108 |
}
|
| 109 |
],
|
|
|
|
| 1 |
{
|
| 2 |
"best_global_step": 305,
|
| 3 |
+
"best_metric": 0.7205882352941176,
|
| 4 |
"best_model_checkpoint": "/content/agri-utilization-classifier/transformer/checkpoint-305",
|
| 5 |
"epoch": 1.0,
|
| 6 |
"eval_steps": 500,
|
|
|
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
"epoch": 0.08196721311475409,
|
| 14 |
+
"grad_norm": 3.737260103225708,
|
| 15 |
"learning_rate": 3.157894736842105e-06,
|
| 16 |
+
"loss": 0.5265155029296875,
|
| 17 |
"step": 25
|
| 18 |
},
|
| 19 |
{
|
| 20 |
"epoch": 0.16393442622950818,
|
| 21 |
+
"grad_norm": 3.5834667682647705,
|
| 22 |
"learning_rate": 6.447368421052632e-06,
|
| 23 |
+
"loss": 0.46113067626953125,
|
| 24 |
"step": 50
|
| 25 |
},
|
| 26 |
{
|
| 27 |
"epoch": 0.2459016393442623,
|
| 28 |
+
"grad_norm": 4.713325500488281,
|
| 29 |
"learning_rate": 9.736842105263159e-06,
|
| 30 |
+
"loss": 0.36277122497558595,
|
| 31 |
"step": 75
|
| 32 |
},
|
| 33 |
{
|
| 34 |
"epoch": 0.32786885245901637,
|
| 35 |
+
"grad_norm": 5.049388885498047,
|
| 36 |
"learning_rate": 1.3026315789473684e-05,
|
| 37 |
+
"loss": 0.2863706398010254,
|
| 38 |
"step": 100
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"epoch": 0.4098360655737705,
|
| 42 |
+
"grad_norm": 3.5716683864593506,
|
| 43 |
"learning_rate": 1.6315789473684213e-05,
|
| 44 |
+
"loss": 0.30932790756225587,
|
| 45 |
"step": 125
|
| 46 |
},
|
| 47 |
{
|
| 48 |
"epoch": 0.4918032786885246,
|
| 49 |
+
"grad_norm": 3.1771602630615234,
|
| 50 |
"learning_rate": 1.960526315789474e-05,
|
| 51 |
+
"loss": 0.34346282958984375,
|
| 52 |
"step": 150
|
| 53 |
},
|
| 54 |
{
|
| 55 |
"epoch": 0.5737704918032787,
|
| 56 |
+
"grad_norm": 13.294544219970703,
|
| 57 |
"learning_rate": 1.9679533867443555e-05,
|
| 58 |
+
"loss": 0.2966791343688965,
|
| 59 |
"step": 175
|
| 60 |
},
|
| 61 |
{
|
| 62 |
"epoch": 0.6557377049180327,
|
| 63 |
+
"grad_norm": 4.51957893371582,
|
| 64 |
"learning_rate": 1.9315367807720323e-05,
|
| 65 |
+
"loss": 0.3470170211791992,
|
| 66 |
"step": 200
|
| 67 |
},
|
| 68 |
{
|
| 69 |
"epoch": 0.7377049180327869,
|
| 70 |
+
"grad_norm": 2.978902816772461,
|
| 71 |
"learning_rate": 1.8951201747997088e-05,
|
| 72 |
+
"loss": 0.33052406311035154,
|
| 73 |
"step": 225
|
| 74 |
},
|
| 75 |
{
|
| 76 |
"epoch": 0.819672131147541,
|
| 77 |
+
"grad_norm": 3.3191263675689697,
|
| 78 |
"learning_rate": 1.8587035688273852e-05,
|
| 79 |
+
"loss": 0.21728967666625976,
|
| 80 |
"step": 250
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"epoch": 0.9016393442622951,
|
| 84 |
+
"grad_norm": 3.7143661975860596,
|
| 85 |
"learning_rate": 1.822286962855062e-05,
|
| 86 |
+
"loss": 0.23666904449462892,
|
| 87 |
"step": 275
|
| 88 |
},
|
| 89 |
{
|
| 90 |
"epoch": 0.9836065573770492,
|
| 91 |
+
"grad_norm": 1.896660566329956,
|
| 92 |
"learning_rate": 1.7858703568827385e-05,
|
| 93 |
+
"loss": 0.21057628631591796,
|
| 94 |
"step": 300
|
| 95 |
},
|
| 96 |
{
|
| 97 |
"epoch": 1.0,
|
| 98 |
+
"eval_accuracy": 0.9611451942740287,
|
| 99 |
+
"eval_f1": 0.7205882352941176,
|
| 100 |
+
"eval_loss": 0.1562921404838562,
|
| 101 |
+
"eval_precision": 0.8596491228070176,
|
| 102 |
+
"eval_recall": 0.620253164556962,
|
| 103 |
+
"eval_roc_auc": 0.9517677869925796,
|
| 104 |
+
"eval_runtime": 3.9768,
|
| 105 |
+
"eval_samples_per_second": 245.924,
|
| 106 |
+
"eval_steps_per_second": 7.795,
|
| 107 |
"step": 305
|
| 108 |
}
|
| 109 |
],
|
transformer/checkpoint-305/training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d052a78a205856b0fb5f7f6bf70bfa1f4e42f119d70cd50149db16fae6be9220
|
| 3 |
+
size 5201
|
transformer/checkpoint-610/config.json
CHANGED
|
@@ -32,7 +32,7 @@
|
|
| 32 |
"position_embedding_type": "absolute",
|
| 33 |
"problem_type": "single_label_classification",
|
| 34 |
"tie_word_embeddings": true,
|
| 35 |
-
"transformers_version": "5.
|
| 36 |
"type_vocab_size": 1,
|
| 37 |
"use_cache": false,
|
| 38 |
"vocab_size": 250002
|
|
|
|
| 32 |
"position_embedding_type": "absolute",
|
| 33 |
"problem_type": "single_label_classification",
|
| 34 |
"tie_word_embeddings": true,
|
| 35 |
+
"transformers_version": "5.11.0",
|
| 36 |
"type_vocab_size": 1,
|
| 37 |
"use_cache": false,
|
| 38 |
"vocab_size": 250002
|
transformer/checkpoint-610/model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1112205008
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:691eda03fc8e6996f9e1ada495f340c41d9c12cb5cb4e1be32e909ffd0deb0c4
|
| 3 |
size 1112205008
|
transformer/checkpoint-610/optimizer.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2224532875
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:647bd20e31efe4dba487704464f48c235c3447fc5977c91095bc666b8ea72eed
|
| 3 |
size 2224532875
|
transformer/checkpoint-610/rng_state.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 14645
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fafd9c24dc9711309db2e4113a63ff7120e22ca104346dfb40523f00ae210f76
|
| 3 |
size 14645
|
transformer/checkpoint-610/scaler.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1383
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:846d46bc2a01e7969fd885162e4dd7e09c2d3211f2b8298034269d9d20829840
|
| 3 |
size 1383
|
transformer/checkpoint-610/scheduler.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1465
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d364349216cf58d042027a258508346e7afb967d9966c7e61a3b5de011c04767
|
| 3 |
size 1465
|
transformer/checkpoint-610/trainer_state.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"best_global_step": 610,
|
| 3 |
-
"best_metric": 0.
|
| 4 |
"best_model_checkpoint": "/content/agri-utilization-classifier/transformer/checkpoint-610",
|
| 5 |
-
"epoch":
|
| 6 |
"eval_steps": 500,
|
| 7 |
"global_step": 610,
|
| 8 |
"is_hyper_param_search": false,
|
|
@@ -10,189 +10,202 @@
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
-
"epoch": 0.
|
| 14 |
-
"grad_norm": 3.
|
| 15 |
-
"learning_rate":
|
| 16 |
-
"loss": 0.
|
| 17 |
"step": 25
|
| 18 |
},
|
| 19 |
{
|
| 20 |
-
"epoch": 0.
|
| 21 |
-
"grad_norm":
|
| 22 |
-
"learning_rate":
|
| 23 |
-
"loss": 0.
|
| 24 |
"step": 50
|
| 25 |
},
|
| 26 |
{
|
| 27 |
-
"epoch": 0.
|
| 28 |
-
"grad_norm":
|
| 29 |
-
"learning_rate":
|
| 30 |
-
"loss": 0.
|
| 31 |
"step": 75
|
| 32 |
},
|
| 33 |
{
|
| 34 |
-
"epoch": 0.
|
| 35 |
-
"grad_norm":
|
| 36 |
-
"learning_rate":
|
| 37 |
-
"loss": 0.
|
| 38 |
"step": 100
|
| 39 |
},
|
| 40 |
{
|
| 41 |
-
"epoch": 0.
|
| 42 |
-
"grad_norm":
|
| 43 |
-
"learning_rate":
|
| 44 |
-
"loss": 0.
|
| 45 |
"step": 125
|
| 46 |
},
|
| 47 |
{
|
| 48 |
-
"epoch": 0.
|
| 49 |
-
"grad_norm":
|
| 50 |
-
"learning_rate":
|
| 51 |
-
"loss": 0.
|
| 52 |
"step": 150
|
| 53 |
},
|
| 54 |
{
|
| 55 |
-
"epoch": 0.
|
| 56 |
-
"grad_norm":
|
| 57 |
-
"learning_rate": 1.
|
| 58 |
-
"loss": 0.
|
| 59 |
"step": 175
|
| 60 |
},
|
| 61 |
{
|
| 62 |
-
"epoch": 0.
|
| 63 |
-
"grad_norm":
|
| 64 |
-
"learning_rate": 1.
|
| 65 |
-
"loss": 0.
|
| 66 |
"step": 200
|
| 67 |
},
|
| 68 |
{
|
| 69 |
-
"epoch": 0.
|
| 70 |
-
"grad_norm":
|
| 71 |
-
"learning_rate": 1.
|
| 72 |
-
"loss": 0.
|
| 73 |
"step": 225
|
| 74 |
},
|
| 75 |
{
|
| 76 |
-
"epoch": 0.
|
| 77 |
-
"grad_norm":
|
| 78 |
-
"learning_rate": 1.
|
| 79 |
-
"loss": 0.
|
| 80 |
"step": 250
|
| 81 |
},
|
| 82 |
{
|
| 83 |
-
"epoch": 0.
|
| 84 |
-
"grad_norm":
|
| 85 |
-
"learning_rate": 1.
|
| 86 |
-
"loss": 0.
|
| 87 |
"step": 275
|
| 88 |
},
|
| 89 |
{
|
| 90 |
-
"epoch": 0.
|
| 91 |
-
"grad_norm":
|
| 92 |
-
"learning_rate": 1.
|
| 93 |
-
"loss": 0.
|
| 94 |
"step": 300
|
| 95 |
},
|
| 96 |
{
|
| 97 |
-
"epoch":
|
| 98 |
-
"
|
| 99 |
-
"
|
| 100 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
"step": 325
|
| 102 |
},
|
| 103 |
{
|
| 104 |
-
"epoch":
|
| 105 |
-
"grad_norm":
|
| 106 |
-
"learning_rate": 1.
|
| 107 |
-
"loss": 0.
|
| 108 |
"step": 350
|
| 109 |
},
|
| 110 |
{
|
| 111 |
-
"epoch":
|
| 112 |
-
"grad_norm":
|
| 113 |
-
"learning_rate": 1.
|
| 114 |
-
"loss": 0.
|
| 115 |
"step": 375
|
| 116 |
},
|
| 117 |
{
|
| 118 |
-
"epoch":
|
| 119 |
-
"grad_norm":
|
| 120 |
-
"learning_rate": 1.
|
| 121 |
-
"loss": 0.
|
| 122 |
"step": 400
|
| 123 |
},
|
| 124 |
{
|
| 125 |
-
"epoch":
|
| 126 |
-
"grad_norm":
|
| 127 |
-
"learning_rate": 1.
|
| 128 |
-
"loss": 0.
|
| 129 |
"step": 425
|
| 130 |
},
|
| 131 |
{
|
| 132 |
-
"epoch":
|
| 133 |
-
"grad_norm":
|
| 134 |
-
"learning_rate": 1.
|
| 135 |
-
"loss": 0.
|
| 136 |
"step": 450
|
| 137 |
},
|
| 138 |
{
|
| 139 |
-
"epoch":
|
| 140 |
-
"grad_norm":
|
| 141 |
-
"learning_rate": 1.
|
| 142 |
-
"loss": 0.
|
| 143 |
"step": 475
|
| 144 |
},
|
| 145 |
{
|
| 146 |
-
"epoch":
|
| 147 |
-
"grad_norm":
|
| 148 |
-
"learning_rate": 1.
|
| 149 |
-
"loss": 0.
|
| 150 |
"step": 500
|
| 151 |
},
|
| 152 |
{
|
| 153 |
-
"epoch":
|
| 154 |
-
"grad_norm": 0.
|
| 155 |
-
"learning_rate": 1.
|
| 156 |
-
"loss": 0.
|
| 157 |
"step": 525
|
| 158 |
},
|
| 159 |
{
|
| 160 |
-
"epoch":
|
| 161 |
-
"grad_norm":
|
| 162 |
-
"learning_rate": 1.
|
| 163 |
-
"loss": 0.
|
| 164 |
"step": 550
|
| 165 |
},
|
| 166 |
{
|
| 167 |
-
"epoch":
|
| 168 |
-
"grad_norm":
|
| 169 |
-
"learning_rate": 1.
|
| 170 |
-
"loss": 0.
|
| 171 |
"step": 575
|
| 172 |
},
|
| 173 |
{
|
| 174 |
-
"epoch":
|
| 175 |
-
"grad_norm": 1.
|
| 176 |
-
"learning_rate": 1.
|
| 177 |
-
"loss": 0.
|
| 178 |
"step": 600
|
| 179 |
},
|
| 180 |
{
|
| 181 |
-
"epoch":
|
| 182 |
-
"eval_accuracy": 0.
|
| 183 |
-
"eval_f1": 0.
|
| 184 |
-
"eval_loss": 0.
|
| 185 |
-
"eval_precision": 0.
|
| 186 |
-
"eval_recall": 0.
|
| 187 |
-
"eval_roc_auc": 0.
|
| 188 |
-
"eval_runtime":
|
| 189 |
-
"eval_samples_per_second":
|
| 190 |
-
"eval_steps_per_second": 7.
|
| 191 |
"step": 610
|
| 192 |
}
|
| 193 |
],
|
| 194 |
"logging_steps": 25,
|
| 195 |
-
"max_steps":
|
| 196 |
"num_input_tokens_seen": 0,
|
| 197 |
"num_train_epochs": 5,
|
| 198 |
"save_steps": 500,
|
|
@@ -217,7 +230,7 @@
|
|
| 217 |
"attributes": {}
|
| 218 |
}
|
| 219 |
},
|
| 220 |
-
"total_flos":
|
| 221 |
"train_batch_size": 16,
|
| 222 |
"trial_name": null,
|
| 223 |
"trial_params": null
|
|
|
|
| 1 |
{
|
| 2 |
"best_global_step": 610,
|
| 3 |
+
"best_metric": 0.7571428571428571,
|
| 4 |
"best_model_checkpoint": "/content/agri-utilization-classifier/transformer/checkpoint-610",
|
| 5 |
+
"epoch": 2.0,
|
| 6 |
"eval_steps": 500,
|
| 7 |
"global_step": 610,
|
| 8 |
"is_hyper_param_search": false,
|
|
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
+
"epoch": 0.08196721311475409,
|
| 14 |
+
"grad_norm": 3.737260103225708,
|
| 15 |
+
"learning_rate": 3.157894736842105e-06,
|
| 16 |
+
"loss": 0.5265155029296875,
|
| 17 |
"step": 25
|
| 18 |
},
|
| 19 |
{
|
| 20 |
+
"epoch": 0.16393442622950818,
|
| 21 |
+
"grad_norm": 3.5834667682647705,
|
| 22 |
+
"learning_rate": 6.447368421052632e-06,
|
| 23 |
+
"loss": 0.46113067626953125,
|
| 24 |
"step": 50
|
| 25 |
},
|
| 26 |
{
|
| 27 |
+
"epoch": 0.2459016393442623,
|
| 28 |
+
"grad_norm": 4.713325500488281,
|
| 29 |
+
"learning_rate": 9.736842105263159e-06,
|
| 30 |
+
"loss": 0.36277122497558595,
|
| 31 |
"step": 75
|
| 32 |
},
|
| 33 |
{
|
| 34 |
+
"epoch": 0.32786885245901637,
|
| 35 |
+
"grad_norm": 5.049388885498047,
|
| 36 |
+
"learning_rate": 1.3026315789473684e-05,
|
| 37 |
+
"loss": 0.2863706398010254,
|
| 38 |
"step": 100
|
| 39 |
},
|
| 40 |
{
|
| 41 |
+
"epoch": 0.4098360655737705,
|
| 42 |
+
"grad_norm": 3.5716683864593506,
|
| 43 |
+
"learning_rate": 1.6315789473684213e-05,
|
| 44 |
+
"loss": 0.30932790756225587,
|
| 45 |
"step": 125
|
| 46 |
},
|
| 47 |
{
|
| 48 |
+
"epoch": 0.4918032786885246,
|
| 49 |
+
"grad_norm": 3.1771602630615234,
|
| 50 |
+
"learning_rate": 1.960526315789474e-05,
|
| 51 |
+
"loss": 0.34346282958984375,
|
| 52 |
"step": 150
|
| 53 |
},
|
| 54 |
{
|
| 55 |
+
"epoch": 0.5737704918032787,
|
| 56 |
+
"grad_norm": 13.294544219970703,
|
| 57 |
+
"learning_rate": 1.9679533867443555e-05,
|
| 58 |
+
"loss": 0.2966791343688965,
|
| 59 |
"step": 175
|
| 60 |
},
|
| 61 |
{
|
| 62 |
+
"epoch": 0.6557377049180327,
|
| 63 |
+
"grad_norm": 4.51957893371582,
|
| 64 |
+
"learning_rate": 1.9315367807720323e-05,
|
| 65 |
+
"loss": 0.3470170211791992,
|
| 66 |
"step": 200
|
| 67 |
},
|
| 68 |
{
|
| 69 |
+
"epoch": 0.7377049180327869,
|
| 70 |
+
"grad_norm": 2.978902816772461,
|
| 71 |
+
"learning_rate": 1.8951201747997088e-05,
|
| 72 |
+
"loss": 0.33052406311035154,
|
| 73 |
"step": 225
|
| 74 |
},
|
| 75 |
{
|
| 76 |
+
"epoch": 0.819672131147541,
|
| 77 |
+
"grad_norm": 3.3191263675689697,
|
| 78 |
+
"learning_rate": 1.8587035688273852e-05,
|
| 79 |
+
"loss": 0.21728967666625976,
|
| 80 |
"step": 250
|
| 81 |
},
|
| 82 |
{
|
| 83 |
+
"epoch": 0.9016393442622951,
|
| 84 |
+
"grad_norm": 3.7143661975860596,
|
| 85 |
+
"learning_rate": 1.822286962855062e-05,
|
| 86 |
+
"loss": 0.23666904449462892,
|
| 87 |
"step": 275
|
| 88 |
},
|
| 89 |
{
|
| 90 |
+
"epoch": 0.9836065573770492,
|
| 91 |
+
"grad_norm": 1.896660566329956,
|
| 92 |
+
"learning_rate": 1.7858703568827385e-05,
|
| 93 |
+
"loss": 0.21057628631591796,
|
| 94 |
"step": 300
|
| 95 |
},
|
| 96 |
{
|
| 97 |
+
"epoch": 1.0,
|
| 98 |
+
"eval_accuracy": 0.9611451942740287,
|
| 99 |
+
"eval_f1": 0.7205882352941176,
|
| 100 |
+
"eval_loss": 0.1562921404838562,
|
| 101 |
+
"eval_precision": 0.8596491228070176,
|
| 102 |
+
"eval_recall": 0.620253164556962,
|
| 103 |
+
"eval_roc_auc": 0.9517677869925796,
|
| 104 |
+
"eval_runtime": 3.9768,
|
| 105 |
+
"eval_samples_per_second": 245.924,
|
| 106 |
+
"eval_steps_per_second": 7.795,
|
| 107 |
+
"step": 305
|
| 108 |
+
},
|
| 109 |
+
{
|
| 110 |
+
"epoch": 1.0655737704918034,
|
| 111 |
+
"grad_norm": 1.421042561531067,
|
| 112 |
+
"learning_rate": 1.7494537509104153e-05,
|
| 113 |
+
"loss": 0.16764232635498047,
|
| 114 |
"step": 325
|
| 115 |
},
|
| 116 |
{
|
| 117 |
+
"epoch": 1.1475409836065573,
|
| 118 |
+
"grad_norm": 11.789098739624023,
|
| 119 |
+
"learning_rate": 1.7130371449380918e-05,
|
| 120 |
+
"loss": 0.20644237518310546,
|
| 121 |
"step": 350
|
| 122 |
},
|
| 123 |
{
|
| 124 |
+
"epoch": 1.2295081967213115,
|
| 125 |
+
"grad_norm": 0.6719069480895996,
|
| 126 |
+
"learning_rate": 1.6766205389657686e-05,
|
| 127 |
+
"loss": 0.1565106964111328,
|
| 128 |
"step": 375
|
| 129 |
},
|
| 130 |
{
|
| 131 |
+
"epoch": 1.3114754098360657,
|
| 132 |
+
"grad_norm": 3.198103666305542,
|
| 133 |
+
"learning_rate": 1.640203932993445e-05,
|
| 134 |
+
"loss": 0.13691966056823732,
|
| 135 |
"step": 400
|
| 136 |
},
|
| 137 |
{
|
| 138 |
+
"epoch": 1.3934426229508197,
|
| 139 |
+
"grad_norm": 0.4345323145389557,
|
| 140 |
+
"learning_rate": 1.603787327021122e-05,
|
| 141 |
+
"loss": 0.15782511711120606,
|
| 142 |
"step": 425
|
| 143 |
},
|
| 144 |
{
|
| 145 |
+
"epoch": 1.4754098360655736,
|
| 146 |
+
"grad_norm": 2.469116449356079,
|
| 147 |
+
"learning_rate": 1.5673707210487983e-05,
|
| 148 |
+
"loss": 0.14868577003479003,
|
| 149 |
"step": 450
|
| 150 |
},
|
| 151 |
{
|
| 152 |
+
"epoch": 1.5573770491803278,
|
| 153 |
+
"grad_norm": 1.4203808307647705,
|
| 154 |
+
"learning_rate": 1.530954115076475e-05,
|
| 155 |
+
"loss": 0.1306503391265869,
|
| 156 |
"step": 475
|
| 157 |
},
|
| 158 |
{
|
| 159 |
+
"epoch": 1.639344262295082,
|
| 160 |
+
"grad_norm": 1.1811524629592896,
|
| 161 |
+
"learning_rate": 1.4945375091041516e-05,
|
| 162 |
+
"loss": 0.1715664291381836,
|
| 163 |
"step": 500
|
| 164 |
},
|
| 165 |
{
|
| 166 |
+
"epoch": 1.721311475409836,
|
| 167 |
+
"grad_norm": 0.7283220887184143,
|
| 168 |
+
"learning_rate": 1.4581209031318282e-05,
|
| 169 |
+
"loss": 0.176502742767334,
|
| 170 |
"step": 525
|
| 171 |
},
|
| 172 |
{
|
| 173 |
+
"epoch": 1.8032786885245902,
|
| 174 |
+
"grad_norm": 4.3972930908203125,
|
| 175 |
+
"learning_rate": 1.4217042971595047e-05,
|
| 176 |
+
"loss": 0.19116065979003907,
|
| 177 |
"step": 550
|
| 178 |
},
|
| 179 |
{
|
| 180 |
+
"epoch": 1.8852459016393444,
|
| 181 |
+
"grad_norm": 22.928813934326172,
|
| 182 |
+
"learning_rate": 1.3852876911871815e-05,
|
| 183 |
+
"loss": 0.11317115783691406,
|
| 184 |
"step": 575
|
| 185 |
},
|
| 186 |
{
|
| 187 |
+
"epoch": 1.9672131147540983,
|
| 188 |
+
"grad_norm": 1.4874694347381592,
|
| 189 |
+
"learning_rate": 1.3488710852148582e-05,
|
| 190 |
+
"loss": 0.19129184722900391,
|
| 191 |
"step": 600
|
| 192 |
},
|
| 193 |
{
|
| 194 |
+
"epoch": 2.0,
|
| 195 |
+
"eval_accuracy": 0.9652351738241309,
|
| 196 |
+
"eval_f1": 0.7571428571428571,
|
| 197 |
+
"eval_loss": 0.14743675291538239,
|
| 198 |
+
"eval_precision": 0.8688524590163934,
|
| 199 |
+
"eval_recall": 0.6708860759493671,
|
| 200 |
+
"eval_roc_auc": 0.963426310527872,
|
| 201 |
+
"eval_runtime": 4.0109,
|
| 202 |
+
"eval_samples_per_second": 243.834,
|
| 203 |
+
"eval_steps_per_second": 7.729,
|
| 204 |
"step": 610
|
| 205 |
}
|
| 206 |
],
|
| 207 |
"logging_steps": 25,
|
| 208 |
+
"max_steps": 1525,
|
| 209 |
"num_input_tokens_seen": 0,
|
| 210 |
"num_train_epochs": 5,
|
| 211 |
"save_steps": 500,
|
|
|
|
| 230 |
"attributes": {}
|
| 231 |
}
|
| 232 |
},
|
| 233 |
+
"total_flos": 1283192616990720.0,
|
| 234 |
"train_batch_size": 16,
|
| 235 |
"trial_name": null,
|
| 236 |
"trial_params": null
|
transformer/checkpoint-610/training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5201
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d052a78a205856b0fb5f7f6bf70bfa1f4e42f119d70cd50149db16fae6be9220
|
| 3 |
size 5201
|
transformer/checkpoint-915/config.json
CHANGED
|
@@ -32,7 +32,7 @@
|
|
| 32 |
"position_embedding_type": "absolute",
|
| 33 |
"problem_type": "single_label_classification",
|
| 34 |
"tie_word_embeddings": true,
|
| 35 |
-
"transformers_version": "5.
|
| 36 |
"type_vocab_size": 1,
|
| 37 |
"use_cache": false,
|
| 38 |
"vocab_size": 250002
|
|
|
|
| 32 |
"position_embedding_type": "absolute",
|
| 33 |
"problem_type": "single_label_classification",
|
| 34 |
"tie_word_embeddings": true,
|
| 35 |
+
"transformers_version": "5.11.0",
|
| 36 |
"type_vocab_size": 1,
|
| 37 |
"use_cache": false,
|
| 38 |
"vocab_size": 250002
|
transformer/checkpoint-915/model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1112205008
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ffbee78257e985cc2a19917d994b0b03942dd23f210ff3c7743bba23fffe733
|
| 3 |
size 1112205008
|
transformer/checkpoint-915/optimizer.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2224532875
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f7c157642ceff1bead8f220f3da380ca04221176168b33506a0fc6af8f44063
|
| 3 |
size 2224532875
|
transformer/checkpoint-915/scaler.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1383
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8eb20af9a67cacc2134af0708f7f2689e6b95e2643b54e2e14a6fbbbe00dff76
|
| 3 |
size 1383
|