Pushing fine-tuned model to Hugging Face Hub
Browse files- README.md +48 -0
- config.json +46 -0
- emissions.csv +2 -0
- evaluation_results.csv +4 -0
- model.safetensors +3 -0
- run_experiment.log +387 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +56 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
language:
|
| 4 |
+
- pt
|
| 5 |
+
- en
|
| 6 |
+
tags:
|
| 7 |
+
- aes
|
| 8 |
+
datasets:
|
| 9 |
+
- kamel-usp/aes_enem_dataset
|
| 10 |
+
base_model: google-bert/bert-base-multilingual-cased
|
| 11 |
+
metrics:
|
| 12 |
+
- accuracy
|
| 13 |
+
- qwk
|
| 14 |
+
library_name: transformers
|
| 15 |
+
model-index:
|
| 16 |
+
- name: bert-base-multilingual-cased-encoder_classification-C3-essay_only
|
| 17 |
+
results:
|
| 18 |
+
- task:
|
| 19 |
+
type: text-classification
|
| 20 |
+
name: Automated Essay Score
|
| 21 |
+
dataset:
|
| 22 |
+
name: Automated Essay Score ENEM Dataset
|
| 23 |
+
type: kamel-usp/aes_enem_dataset
|
| 24 |
+
config: JBCS2025
|
| 25 |
+
split: test
|
| 26 |
+
metrics:
|
| 27 |
+
- name: Macro F1
|
| 28 |
+
type: f1
|
| 29 |
+
value: 0.2245231652826589
|
| 30 |
+
- name: QWK
|
| 31 |
+
type: qwk
|
| 32 |
+
value: 0.3586046018449793
|
| 33 |
+
- name: Weighted Macro F1
|
| 34 |
+
type: f1
|
| 35 |
+
value: 0.3210121894546771
|
| 36 |
+
---
|
| 37 |
+
# Model ID: bert-base-multilingual-cased-encoder_classification-C3-essay_only
|
| 38 |
+
## Results
|
| 39 |
+
| | test_data |
|
| 40 |
+
|:-----------------|------------:|
|
| 41 |
+
| eval_accuracy | 0.318841 |
|
| 42 |
+
| eval_RMSE | 55.2202 |
|
| 43 |
+
| eval_QWK | 0.358605 |
|
| 44 |
+
| eval_Macro_F1 | 0.224523 |
|
| 45 |
+
| eval_Weighted_F1 | 0.321012 |
|
| 46 |
+
| eval_Micro_F1 | 0.318841 |
|
| 47 |
+
| eval_HDIV | 0.0869565 |
|
| 48 |
+
|
config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"BertForSequenceClassification"
|
| 4 |
+
],
|
| 5 |
+
"attention_probs_dropout_prob": 0.1,
|
| 6 |
+
"classifier_dropout": null,
|
| 7 |
+
"directionality": "bidi",
|
| 8 |
+
"hidden_act": "gelu",
|
| 9 |
+
"hidden_dropout_prob": 0.1,
|
| 10 |
+
"hidden_size": 768,
|
| 11 |
+
"id2label": {
|
| 12 |
+
"0": 0,
|
| 13 |
+
"1": 40,
|
| 14 |
+
"2": 80,
|
| 15 |
+
"3": 120,
|
| 16 |
+
"4": 160,
|
| 17 |
+
"5": 200
|
| 18 |
+
},
|
| 19 |
+
"initializer_range": 0.02,
|
| 20 |
+
"intermediate_size": 3072,
|
| 21 |
+
"label2id": {
|
| 22 |
+
"0": 0,
|
| 23 |
+
"40": 1,
|
| 24 |
+
"80": 2,
|
| 25 |
+
"120": 3,
|
| 26 |
+
"160": 4,
|
| 27 |
+
"200": 5
|
| 28 |
+
},
|
| 29 |
+
"layer_norm_eps": 1e-12,
|
| 30 |
+
"max_position_embeddings": 512,
|
| 31 |
+
"model_type": "bert",
|
| 32 |
+
"num_attention_heads": 12,
|
| 33 |
+
"num_hidden_layers": 12,
|
| 34 |
+
"pad_token_id": 0,
|
| 35 |
+
"pooler_fc_size": 768,
|
| 36 |
+
"pooler_num_attention_heads": 12,
|
| 37 |
+
"pooler_num_fc_layers": 3,
|
| 38 |
+
"pooler_size_per_head": 128,
|
| 39 |
+
"pooler_type": "first_token_transform",
|
| 40 |
+
"position_embedding_type": "absolute",
|
| 41 |
+
"torch_dtype": "float32",
|
| 42 |
+
"transformers_version": "4.53.1",
|
| 43 |
+
"type_vocab_size": 2,
|
| 44 |
+
"use_cache": true,
|
| 45 |
+
"vocab_size": 119547
|
| 46 |
+
}
|
emissions.csv
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
timestamp,project_name,run_id,experiment_id,duration,emissions,emissions_rate,cpu_power,gpu_power,ram_power,cpu_energy,gpu_energy,ram_energy,energy_consumed,country_name,country_iso_code,region,cloud_provider,cloud_region,os,python_version,codecarbon_version,cpu_count,cpu_model,gpu_count,gpu_model,longitude,latitude,ram_total_size,tracking_mode,on_cloud,pue
|
| 2 |
+
2025-07-09T17:16:25,jbcs2025,08774bae-90bc-487d-a94a-31fab5a1acd3,bert-base-multilingual-cased-encoder_classification-C3-essay_only,128.87568475597072,0.002477183599012129,1.9221497086147297e-05,47.09875,122.32799163750946,58.0,0.0015115457615074949,0.006749469010682851,0.0020355714330366594,0.010296586205227007,Romania,ROU,gorj county,,,Linux-5.15.0-143-generic-x86_64-with-glibc2.35,3.12.11,3.0.2,36,Intel(R) Xeon(R) Gold 6248R CPU @ 3.00GHz,1,1 x NVIDIA RTX A6000,23.2904,45.0489,393.6063117980957,machine,N,1.0
|
evaluation_results.csv
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
eval_loss,eval_model_preparation_time,eval_accuracy,eval_RMSE,eval_QWK,eval_HDIV,eval_Macro_F1,eval_Micro_F1,eval_Weighted_F1,eval_TP_0,eval_TN_0,eval_FP_0,eval_FN_0,eval_TP_1,eval_TN_1,eval_FP_1,eval_FN_1,eval_TP_2,eval_TN_2,eval_FP_2,eval_FN_2,eval_TP_3,eval_TN_3,eval_FP_3,eval_FN_3,eval_TP_4,eval_TN_4,eval_FP_4,eval_FN_4,eval_TP_5,eval_TN_5,eval_FP_5,eval_FN_5,eval_runtime,eval_samples_per_second,eval_steps_per_second,epoch,reference,timestamp,id
|
| 2 |
+
1.796027660369873,0.0021,0.22727272727272727,67.23995925944722,0.08456046407853635,0.19696969696969702,0.09612058314801086,0.22727272727272727,0.12372801401711706,0,131,0,1,0,108,0,24,0,126,0,6,0,79,0,53,26,16,76,14,4,98,26,4,0.6133,215.236,14.675,-1,validation_before_training,2025-07-09 17:14:26,bert-base-multilingual-cased-encoder_classification-C3-essay_only
|
| 3 |
+
1.781539797782898,0.0021,0.3409090909090909,50.572480239511265,0.43200913614487313,0.06818181818181823,0.25636222910216716,0.3409090909090909,0.32550520686743595,0,131,0,1,2,100,8,22,4,98,28,2,11,68,11,42,23,63,29,17,5,113,11,3,0.4169,316.605,21.587,13.0,validation_after_training,2025-07-09 17:14:26,bert-base-multilingual-cased-encoder_classification-C3-essay_only
|
| 4 |
+
1.8821938037872314,0.0021,0.3188405797101449,55.22024413490799,0.35860460184497933,0.08695652173913049,0.22452316528265895,0.3188405797101449,0.3210121894546771,0,137,0,1,8,91,18,21,8,96,24,10,12,71,22,33,16,80,20,22,0,121,10,7,0.4153,332.255,21.669,13.0,test_results,2025-07-09 17:14:26,bert-base-multilingual-cased-encoder_classification-C3-essay_only
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c99a221910443740e4d949a46c7b824962e5a6a93f4c40f3b0152f2ef41147b
|
| 3 |
+
size 711455760
|
run_experiment.log
ADDED
|
@@ -0,0 +1,387 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[2025-07-09 17:14:13,621][__main__][INFO] - cache_dir: /tmp/
|
| 2 |
+
dataset:
|
| 3 |
+
name: kamel-usp/aes_enem_dataset
|
| 4 |
+
split: JBCS2025
|
| 5 |
+
training_params:
|
| 6 |
+
seed: 42
|
| 7 |
+
num_train_epochs: 20
|
| 8 |
+
logging_steps: 100
|
| 9 |
+
metric_for_best_model: QWK
|
| 10 |
+
bf16: true
|
| 11 |
+
bootstrap:
|
| 12 |
+
enabled: true
|
| 13 |
+
n_bootstrap: 10000
|
| 14 |
+
bootstrap_seed: 42
|
| 15 |
+
metrics:
|
| 16 |
+
- QWK
|
| 17 |
+
- Macro_F1
|
| 18 |
+
- Weighted_F1
|
| 19 |
+
post_training_results:
|
| 20 |
+
model_path: /workspace/jbcs2025/outputs/2025-03-24/20-42-59
|
| 21 |
+
experiments:
|
| 22 |
+
model:
|
| 23 |
+
name: google-bert/bert-base-multilingual-cased
|
| 24 |
+
type: encoder_classification
|
| 25 |
+
num_labels: 6
|
| 26 |
+
output_dir: ./results/
|
| 27 |
+
logging_dir: ./logs/
|
| 28 |
+
best_model_dir: ./results/best_model
|
| 29 |
+
tokenizer:
|
| 30 |
+
name: google-bert/bert-base-multilingual-cased
|
| 31 |
+
dataset:
|
| 32 |
+
grade_index: 2
|
| 33 |
+
use_full_context: false
|
| 34 |
+
training_params:
|
| 35 |
+
weight_decay: 0.01
|
| 36 |
+
warmup_ratio: 0.1
|
| 37 |
+
learning_rate: 5.0e-05
|
| 38 |
+
train_batch_size: 16
|
| 39 |
+
eval_batch_size: 16
|
| 40 |
+
gradient_accumulation_steps: 1
|
| 41 |
+
gradient_checkpointing: false
|
| 42 |
+
|
| 43 |
+
[2025-07-09 17:14:17,504][__main__][INFO] - GPU 0: NVIDIA RTX A6000 | TDP ≈ 300 W
|
| 44 |
+
[2025-07-09 17:14:17,504][__main__][INFO] - Starting the Fine Tuning training process.
|
| 45 |
+
[2025-07-09 17:14:23,069][transformers.configuration_utils][INFO] - loading configuration file config.json from cache at /tmp/models--google-bert--bert-base-multilingual-cased/snapshots/3f076fdb1ab68d5b2880cb87a0886f315b8146f8/config.json
|
| 46 |
+
[2025-07-09 17:14:23,070][transformers.configuration_utils][INFO] - Model config BertConfig {
|
| 47 |
+
"architectures": [
|
| 48 |
+
"BertForMaskedLM"
|
| 49 |
+
],
|
| 50 |
+
"attention_probs_dropout_prob": 0.1,
|
| 51 |
+
"classifier_dropout": null,
|
| 52 |
+
"directionality": "bidi",
|
| 53 |
+
"hidden_act": "gelu",
|
| 54 |
+
"hidden_dropout_prob": 0.1,
|
| 55 |
+
"hidden_size": 768,
|
| 56 |
+
"initializer_range": 0.02,
|
| 57 |
+
"intermediate_size": 3072,
|
| 58 |
+
"layer_norm_eps": 1e-12,
|
| 59 |
+
"max_position_embeddings": 512,
|
| 60 |
+
"model_type": "bert",
|
| 61 |
+
"num_attention_heads": 12,
|
| 62 |
+
"num_hidden_layers": 12,
|
| 63 |
+
"pad_token_id": 0,
|
| 64 |
+
"pooler_fc_size": 768,
|
| 65 |
+
"pooler_num_attention_heads": 12,
|
| 66 |
+
"pooler_num_fc_layers": 3,
|
| 67 |
+
"pooler_size_per_head": 128,
|
| 68 |
+
"pooler_type": "first_token_transform",
|
| 69 |
+
"position_embedding_type": "absolute",
|
| 70 |
+
"transformers_version": "4.53.1",
|
| 71 |
+
"type_vocab_size": 2,
|
| 72 |
+
"use_cache": true,
|
| 73 |
+
"vocab_size": 119547
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
[2025-07-09 17:14:23,265][transformers.configuration_utils][INFO] - loading configuration file config.json from cache at /tmp/models--google-bert--bert-base-multilingual-cased/snapshots/3f076fdb1ab68d5b2880cb87a0886f315b8146f8/config.json
|
| 77 |
+
[2025-07-09 17:14:23,265][transformers.configuration_utils][INFO] - Model config BertConfig {
|
| 78 |
+
"architectures": [
|
| 79 |
+
"BertForMaskedLM"
|
| 80 |
+
],
|
| 81 |
+
"attention_probs_dropout_prob": 0.1,
|
| 82 |
+
"classifier_dropout": null,
|
| 83 |
+
"directionality": "bidi",
|
| 84 |
+
"hidden_act": "gelu",
|
| 85 |
+
"hidden_dropout_prob": 0.1,
|
| 86 |
+
"hidden_size": 768,
|
| 87 |
+
"initializer_range": 0.02,
|
| 88 |
+
"intermediate_size": 3072,
|
| 89 |
+
"layer_norm_eps": 1e-12,
|
| 90 |
+
"max_position_embeddings": 512,
|
| 91 |
+
"model_type": "bert",
|
| 92 |
+
"num_attention_heads": 12,
|
| 93 |
+
"num_hidden_layers": 12,
|
| 94 |
+
"pad_token_id": 0,
|
| 95 |
+
"pooler_fc_size": 768,
|
| 96 |
+
"pooler_num_attention_heads": 12,
|
| 97 |
+
"pooler_num_fc_layers": 3,
|
| 98 |
+
"pooler_size_per_head": 128,
|
| 99 |
+
"pooler_type": "first_token_transform",
|
| 100 |
+
"position_embedding_type": "absolute",
|
| 101 |
+
"transformers_version": "4.53.1",
|
| 102 |
+
"type_vocab_size": 2,
|
| 103 |
+
"use_cache": true,
|
| 104 |
+
"vocab_size": 119547
|
| 105 |
+
}
|
| 106 |
+
|
| 107 |
+
[2025-07-09 17:14:23,456][transformers.tokenization_utils_base][INFO] - loading file vocab.txt from cache at /tmp/models--google-bert--bert-base-multilingual-cased/snapshots/3f076fdb1ab68d5b2880cb87a0886f315b8146f8/vocab.txt
|
| 108 |
+
[2025-07-09 17:14:23,456][transformers.tokenization_utils_base][INFO] - loading file tokenizer.json from cache at /tmp/models--google-bert--bert-base-multilingual-cased/snapshots/3f076fdb1ab68d5b2880cb87a0886f315b8146f8/tokenizer.json
|
| 109 |
+
[2025-07-09 17:14:23,456][transformers.tokenization_utils_base][INFO] - loading file added_tokens.json from cache at None
|
| 110 |
+
[2025-07-09 17:14:23,456][transformers.tokenization_utils_base][INFO] - loading file special_tokens_map.json from cache at None
|
| 111 |
+
[2025-07-09 17:14:23,456][transformers.tokenization_utils_base][INFO] - loading file tokenizer_config.json from cache at /tmp/models--google-bert--bert-base-multilingual-cased/snapshots/3f076fdb1ab68d5b2880cb87a0886f315b8146f8/tokenizer_config.json
|
| 112 |
+
[2025-07-09 17:14:23,456][transformers.tokenization_utils_base][INFO] - loading file chat_template.jinja from cache at None
|
| 113 |
+
[2025-07-09 17:14:23,456][transformers.configuration_utils][INFO] - loading configuration file config.json from cache at /tmp/models--google-bert--bert-base-multilingual-cased/snapshots/3f076fdb1ab68d5b2880cb87a0886f315b8146f8/config.json
|
| 114 |
+
[2025-07-09 17:14:23,457][transformers.configuration_utils][INFO] - Model config BertConfig {
|
| 115 |
+
"architectures": [
|
| 116 |
+
"BertForMaskedLM"
|
| 117 |
+
],
|
| 118 |
+
"attention_probs_dropout_prob": 0.1,
|
| 119 |
+
"classifier_dropout": null,
|
| 120 |
+
"directionality": "bidi",
|
| 121 |
+
"hidden_act": "gelu",
|
| 122 |
+
"hidden_dropout_prob": 0.1,
|
| 123 |
+
"hidden_size": 768,
|
| 124 |
+
"initializer_range": 0.02,
|
| 125 |
+
"intermediate_size": 3072,
|
| 126 |
+
"layer_norm_eps": 1e-12,
|
| 127 |
+
"max_position_embeddings": 512,
|
| 128 |
+
"model_type": "bert",
|
| 129 |
+
"num_attention_heads": 12,
|
| 130 |
+
"num_hidden_layers": 12,
|
| 131 |
+
"pad_token_id": 0,
|
| 132 |
+
"pooler_fc_size": 768,
|
| 133 |
+
"pooler_num_attention_heads": 12,
|
| 134 |
+
"pooler_num_fc_layers": 3,
|
| 135 |
+
"pooler_size_per_head": 128,
|
| 136 |
+
"pooler_type": "first_token_transform",
|
| 137 |
+
"position_embedding_type": "absolute",
|
| 138 |
+
"transformers_version": "4.53.1",
|
| 139 |
+
"type_vocab_size": 2,
|
| 140 |
+
"use_cache": true,
|
| 141 |
+
"vocab_size": 119547
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
[2025-07-09 17:14:23,736][__main__][INFO] - Tokenizer function parameters- Padding:longest; Truncation: True; Use Full Context: False
|
| 145 |
+
[2025-07-09 17:14:24,512][__main__][INFO] -
|
| 146 |
+
Token statistics for 'train' split:
|
| 147 |
+
[2025-07-09 17:14:24,512][__main__][INFO] - Total examples: 500
|
| 148 |
+
[2025-07-09 17:14:24,513][__main__][INFO] - Min tokens: 512
|
| 149 |
+
[2025-07-09 17:14:24,513][__main__][INFO] - Max tokens: 512
|
| 150 |
+
[2025-07-09 17:14:24,513][__main__][INFO] - Avg tokens: 512.00
|
| 151 |
+
[2025-07-09 17:14:24,513][__main__][INFO] - Std tokens: 0.00
|
| 152 |
+
[2025-07-09 17:14:24,629][__main__][INFO] -
|
| 153 |
+
Token statistics for 'validation' split:
|
| 154 |
+
[2025-07-09 17:14:24,630][__main__][INFO] - Total examples: 132
|
| 155 |
+
[2025-07-09 17:14:24,630][__main__][INFO] - Min tokens: 512
|
| 156 |
+
[2025-07-09 17:14:24,630][__main__][INFO] - Max tokens: 512
|
| 157 |
+
[2025-07-09 17:14:24,630][__main__][INFO] - Avg tokens: 512.00
|
| 158 |
+
[2025-07-09 17:14:24,630][__main__][INFO] - Std tokens: 0.00
|
| 159 |
+
[2025-07-09 17:14:24,746][__main__][INFO] -
|
| 160 |
+
Token statistics for 'test' split:
|
| 161 |
+
[2025-07-09 17:14:24,747][__main__][INFO] - Total examples: 138
|
| 162 |
+
[2025-07-09 17:14:24,747][__main__][INFO] - Min tokens: 512
|
| 163 |
+
[2025-07-09 17:14:24,747][__main__][INFO] - Max tokens: 512
|
| 164 |
+
[2025-07-09 17:14:24,747][__main__][INFO] - Avg tokens: 512.00
|
| 165 |
+
[2025-07-09 17:14:24,747][__main__][INFO] - Std tokens: 0.00
|
| 166 |
+
[2025-07-09 17:14:24,747][__main__][INFO] - If token statistics are the same (max, avg, min) keep in mind that this is due to batched tokenization and padding.
|
| 167 |
+
[2025-07-09 17:14:24,747][__main__][INFO] - Model max length: 512. If it is the same as stats, then there is a high chance that sequences are being truncated.
|
| 168 |
+
[2025-07-09 17:14:24,973][transformers.configuration_utils][INFO] - loading configuration file config.json from cache at /tmp/models--google-bert--bert-base-multilingual-cased/snapshots/3f076fdb1ab68d5b2880cb87a0886f315b8146f8/config.json
|
| 169 |
+
[2025-07-09 17:14:24,974][transformers.configuration_utils][INFO] - Model config BertConfig {
|
| 170 |
+
"architectures": [
|
| 171 |
+
"BertForMaskedLM"
|
| 172 |
+
],
|
| 173 |
+
"attention_probs_dropout_prob": 0.1,
|
| 174 |
+
"classifier_dropout": null,
|
| 175 |
+
"directionality": "bidi",
|
| 176 |
+
"hidden_act": "gelu",
|
| 177 |
+
"hidden_dropout_prob": 0.1,
|
| 178 |
+
"hidden_size": 768,
|
| 179 |
+
"id2label": {
|
| 180 |
+
"0": 0,
|
| 181 |
+
"1": 40,
|
| 182 |
+
"2": 80,
|
| 183 |
+
"3": 120,
|
| 184 |
+
"4": 160,
|
| 185 |
+
"5": 200
|
| 186 |
+
},
|
| 187 |
+
"initializer_range": 0.02,
|
| 188 |
+
"intermediate_size": 3072,
|
| 189 |
+
"label2id": {
|
| 190 |
+
"0": 0,
|
| 191 |
+
"40": 1,
|
| 192 |
+
"80": 2,
|
| 193 |
+
"120": 3,
|
| 194 |
+
"160": 4,
|
| 195 |
+
"200": 5
|
| 196 |
+
},
|
| 197 |
+
"layer_norm_eps": 1e-12,
|
| 198 |
+
"max_position_embeddings": 512,
|
| 199 |
+
"model_type": "bert",
|
| 200 |
+
"num_attention_heads": 12,
|
| 201 |
+
"num_hidden_layers": 12,
|
| 202 |
+
"pad_token_id": 0,
|
| 203 |
+
"pooler_fc_size": 768,
|
| 204 |
+
"pooler_num_attention_heads": 12,
|
| 205 |
+
"pooler_num_fc_layers": 3,
|
| 206 |
+
"pooler_size_per_head": 128,
|
| 207 |
+
"pooler_type": "first_token_transform",
|
| 208 |
+
"position_embedding_type": "absolute",
|
| 209 |
+
"transformers_version": "4.53.1",
|
| 210 |
+
"type_vocab_size": 2,
|
| 211 |
+
"use_cache": true,
|
| 212 |
+
"vocab_size": 119547
|
| 213 |
+
}
|
| 214 |
+
|
| 215 |
+
[2025-07-09 17:14:25,166][transformers.modeling_utils][INFO] - loading weights file model.safetensors from cache at /tmp/models--google-bert--bert-base-multilingual-cased/snapshots/3f076fdb1ab68d5b2880cb87a0886f315b8146f8/model.safetensors
|
| 216 |
+
[2025-07-09 17:14:25,174][transformers.modeling_utils][INFO] - Since the `torch_dtype` attribute can't be found in model's config object, will use torch_dtype={torch_dtype} as derived from model's weights
|
| 217 |
+
[2025-07-09 17:14:25,175][transformers.modeling_utils][INFO] - Instantiating BertForSequenceClassification model under default dtype torch.float32.
|
| 218 |
+
[2025-07-09 17:14:25,371][transformers.modeling_utils][INFO] - A pretrained model of type `BertForSequenceClassification` contains parameters that have been renamed internally (a few are listed below but more are present in the model):
|
| 219 |
+
* `cls.predictions.transform.LayerNorm.beta` -> `cls.predictions.transform.LayerNorm.bias`
|
| 220 |
+
* `cls.predictions.transform.LayerNorm.gamma` -> `cls.predictions.transform.LayerNorm.weight`
|
| 221 |
+
If you are using a model from the Hub, consider submitting a PR to adjust these weights and help future users.
|
| 222 |
+
[2025-07-09 17:14:26,303][transformers.modeling_utils][INFO] - Some weights of the model checkpoint at google-bert/bert-base-multilingual-cased were not used when initializing BertForSequenceClassification: ['cls.predictions.bias', 'cls.predictions.transform.LayerNorm.bias', 'cls.predictions.transform.LayerNorm.weight', 'cls.predictions.transform.dense.bias', 'cls.predictions.transform.dense.weight', 'cls.seq_relationship.bias', 'cls.seq_relationship.weight']
|
| 223 |
+
- This IS expected if you are initializing BertForSequenceClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).
|
| 224 |
+
- This IS NOT expected if you are initializing BertForSequenceClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).
|
| 225 |
+
[2025-07-09 17:14:26,303][transformers.modeling_utils][WARNING] - Some weights of BertForSequenceClassification were not initialized from the model checkpoint at google-bert/bert-base-multilingual-cased and are newly initialized: ['classifier.bias', 'classifier.weight']
|
| 226 |
+
You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.
|
| 227 |
+
[2025-07-09 17:14:26,309][transformers.training_args][INFO] - PyTorch: setting up devices
|
| 228 |
+
[2025-07-09 17:14:26,331][__main__][INFO] - Total steps: 620. Number of warmup steps: 62
|
| 229 |
+
[2025-07-09 17:14:26,339][transformers.trainer][INFO] - You have loaded a model on multiple GPUs. `is_model_parallel` attribute will be force-set to `True` to avoid any unexpected behavior such as device placement mismatching.
|
| 230 |
+
[2025-07-09 17:14:26,364][transformers.trainer][INFO] - Using auto half precision backend
|
| 231 |
+
[2025-07-09 17:14:26,367][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 232 |
+
[2025-07-09 17:14:26,372][transformers.trainer][INFO] -
|
| 233 |
+
***** Running Evaluation *****
|
| 234 |
+
[2025-07-09 17:14:26,372][transformers.trainer][INFO] - Num examples = 132
|
| 235 |
+
[2025-07-09 17:14:26,372][transformers.trainer][INFO] - Batch size = 16
|
| 236 |
+
[2025-07-09 17:14:27,295][transformers.trainer][INFO] - The following columns in the Training set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 237 |
+
[2025-07-09 17:14:27,305][transformers.trainer][INFO] - ***** Running training *****
|
| 238 |
+
[2025-07-09 17:14:27,305][transformers.trainer][INFO] - Num examples = 500
|
| 239 |
+
[2025-07-09 17:14:27,305][transformers.trainer][INFO] - Num Epochs = 20
|
| 240 |
+
[2025-07-09 17:14:27,305][transformers.trainer][INFO] - Instantaneous batch size per device = 16
|
| 241 |
+
[2025-07-09 17:14:27,305][transformers.trainer][INFO] - Total train batch size (w. parallel, distributed & accumulation) = 16
|
| 242 |
+
[2025-07-09 17:14:27,305][transformers.trainer][INFO] - Gradient Accumulation steps = 1
|
| 243 |
+
[2025-07-09 17:14:27,305][transformers.trainer][INFO] - Total optimization steps = 640
|
| 244 |
+
[2025-07-09 17:14:27,305][transformers.trainer][INFO] - Number of trainable parameters = 177,858,054
|
| 245 |
+
[2025-07-09 17:14:32,297][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 246 |
+
[2025-07-09 17:14:32,300][transformers.trainer][INFO] -
|
| 247 |
+
***** Running Evaluation *****
|
| 248 |
+
[2025-07-09 17:14:32,300][transformers.trainer][INFO] - Num examples = 132
|
| 249 |
+
[2025-07-09 17:14:32,300][transformers.trainer][INFO] - Batch size = 16
|
| 250 |
+
[2025-07-09 17:14:32,694][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-32
|
| 251 |
+
[2025-07-09 17:14:32,695][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-32/config.json
|
| 252 |
+
[2025-07-09 17:14:33,919][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-32/model.safetensors
|
| 253 |
+
[2025-07-09 17:14:40,425][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 254 |
+
[2025-07-09 17:14:40,429][transformers.trainer][INFO] -
|
| 255 |
+
***** Running Evaluation *****
|
| 256 |
+
[2025-07-09 17:14:40,429][transformers.trainer][INFO] - Num examples = 132
|
| 257 |
+
[2025-07-09 17:14:40,429][transformers.trainer][INFO] - Batch size = 16
|
| 258 |
+
[2025-07-09 17:14:40,820][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-64
|
| 259 |
+
[2025-07-09 17:14:40,821][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-64/config.json
|
| 260 |
+
[2025-07-09 17:14:42,135][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-64/model.safetensors
|
| 261 |
+
[2025-07-09 17:14:43,757][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-32] due to args.save_total_limit
|
| 262 |
+
[2025-07-09 17:14:48,774][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 263 |
+
[2025-07-09 17:14:48,777][transformers.trainer][INFO] -
|
| 264 |
+
***** Running Evaluation *****
|
| 265 |
+
[2025-07-09 17:14:48,777][transformers.trainer][INFO] - Num examples = 132
|
| 266 |
+
[2025-07-09 17:14:48,777][transformers.trainer][INFO] - Batch size = 16
|
| 267 |
+
[2025-07-09 17:14:49,177][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-96
|
| 268 |
+
[2025-07-09 17:14:49,179][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-96/config.json
|
| 269 |
+
[2025-07-09 17:14:50,716][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-96/model.safetensors
|
| 270 |
+
[2025-07-09 17:14:57,646][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 271 |
+
[2025-07-09 17:14:57,649][transformers.trainer][INFO] -
|
| 272 |
+
***** Running Evaluation *****
|
| 273 |
+
[2025-07-09 17:14:57,649][transformers.trainer][INFO] - Num examples = 132
|
| 274 |
+
[2025-07-09 17:14:57,649][transformers.trainer][INFO] - Batch size = 16
|
| 275 |
+
[2025-07-09 17:14:58,049][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-128
|
| 276 |
+
[2025-07-09 17:14:58,050][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-128/config.json
|
| 277 |
+
[2025-07-09 17:14:59,457][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-128/model.safetensors
|
| 278 |
+
[2025-07-09 17:15:01,555][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-96] due to args.save_total_limit
|
| 279 |
+
[2025-07-09 17:15:06,640][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 280 |
+
[2025-07-09 17:15:06,643][transformers.trainer][INFO] -
|
| 281 |
+
***** Running Evaluation *****
|
| 282 |
+
[2025-07-09 17:15:06,643][transformers.trainer][INFO] - Num examples = 132
|
| 283 |
+
[2025-07-09 17:15:06,643][transformers.trainer][INFO] - Batch size = 16
|
| 284 |
+
[2025-07-09 17:15:07,046][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-160
|
| 285 |
+
[2025-07-09 17:15:07,048][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-160/config.json
|
| 286 |
+
[2025-07-09 17:15:08,445][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-160/model.safetensors
|
| 287 |
+
[2025-07-09 17:15:10,671][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-64] due to args.save_total_limit
|
| 288 |
+
[2025-07-09 17:15:10,793][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-128] due to args.save_total_limit
|
| 289 |
+
[2025-07-09 17:15:15,813][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 290 |
+
[2025-07-09 17:15:15,817][transformers.trainer][INFO] -
|
| 291 |
+
***** Running Evaluation *****
|
| 292 |
+
[2025-07-09 17:15:15,817][transformers.trainer][INFO] - Num examples = 132
|
| 293 |
+
[2025-07-09 17:15:15,817][transformers.trainer][INFO] - Batch size = 16
|
| 294 |
+
[2025-07-09 17:15:16,219][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-192
|
| 295 |
+
[2025-07-09 17:15:16,221][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-192/config.json
|
| 296 |
+
[2025-07-09 17:15:17,720][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-192/model.safetensors
|
| 297 |
+
[2025-07-09 17:15:25,077][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 298 |
+
[2025-07-09 17:15:25,080][transformers.trainer][INFO] -
|
| 299 |
+
***** Running Evaluation *****
|
| 300 |
+
[2025-07-09 17:15:25,081][transformers.trainer][INFO] - Num examples = 132
|
| 301 |
+
[2025-07-09 17:15:25,081][transformers.trainer][INFO] - Batch size = 16
|
| 302 |
+
[2025-07-09 17:15:25,478][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-224
|
| 303 |
+
[2025-07-09 17:15:25,479][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-224/config.json
|
| 304 |
+
[2025-07-09 17:15:26,845][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-224/model.safetensors
|
| 305 |
+
[2025-07-09 17:15:29,329][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-192] due to args.save_total_limit
|
| 306 |
+
[2025-07-09 17:15:34,302][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 307 |
+
[2025-07-09 17:15:34,305][transformers.trainer][INFO] -
|
| 308 |
+
***** Running Evaluation *****
|
| 309 |
+
[2025-07-09 17:15:34,305][transformers.trainer][INFO] - Num examples = 132
|
| 310 |
+
[2025-07-09 17:15:34,305][transformers.trainer][INFO] - Batch size = 16
|
| 311 |
+
[2025-07-09 17:15:34,698][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-256
|
| 312 |
+
[2025-07-09 17:15:34,699][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-256/config.json
|
| 313 |
+
[2025-07-09 17:15:35,873][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-256/model.safetensors
|
| 314 |
+
[2025-07-09 17:15:37,772][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-160] due to args.save_total_limit
|
| 315 |
+
[2025-07-09 17:15:37,945][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-224] due to args.save_total_limit
|
| 316 |
+
[2025-07-09 17:15:42,919][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 317 |
+
[2025-07-09 17:15:42,922][transformers.trainer][INFO] -
|
| 318 |
+
***** Running Evaluation *****
|
| 319 |
+
[2025-07-09 17:15:42,922][transformers.trainer][INFO] - Num examples = 132
|
| 320 |
+
[2025-07-09 17:15:42,922][transformers.trainer][INFO] - Batch size = 16
|
| 321 |
+
[2025-07-09 17:15:43,317][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-288
|
| 322 |
+
[2025-07-09 17:15:43,319][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-288/config.json
|
| 323 |
+
[2025-07-09 17:15:44,554][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-288/model.safetensors
|
| 324 |
+
[2025-07-09 17:15:51,406][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 325 |
+
[2025-07-09 17:15:51,408][transformers.trainer][INFO] -
|
| 326 |
+
***** Running Evaluation *****
|
| 327 |
+
[2025-07-09 17:15:51,408][transformers.trainer][INFO] - Num examples = 132
|
| 328 |
+
[2025-07-09 17:15:51,408][transformers.trainer][INFO] - Batch size = 16
|
| 329 |
+
[2025-07-09 17:15:51,805][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-320
|
| 330 |
+
[2025-07-09 17:15:51,806][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-320/config.json
|
| 331 |
+
[2025-07-09 17:15:53,422][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-320/model.safetensors
|
| 332 |
+
[2025-07-09 17:15:55,534][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-288] due to args.save_total_limit
|
| 333 |
+
[2025-07-09 17:16:00,487][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 334 |
+
[2025-07-09 17:16:00,491][transformers.trainer][INFO] -
|
| 335 |
+
***** Running Evaluation *****
|
| 336 |
+
[2025-07-09 17:16:00,491][transformers.trainer][INFO] - Num examples = 132
|
| 337 |
+
[2025-07-09 17:16:00,491][transformers.trainer][INFO] - Batch size = 16
|
| 338 |
+
[2025-07-09 17:16:00,885][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-352
|
| 339 |
+
[2025-07-09 17:16:00,886][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-352/config.json
|
| 340 |
+
[2025-07-09 17:16:02,213][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-352/model.safetensors
|
| 341 |
+
[2025-07-09 17:16:04,259][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-320] due to args.save_total_limit
|
| 342 |
+
[2025-07-09 17:16:09,238][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 343 |
+
[2025-07-09 17:16:09,242][transformers.trainer][INFO] -
|
| 344 |
+
***** Running Evaluation *****
|
| 345 |
+
[2025-07-09 17:16:09,242][transformers.trainer][INFO] - Num examples = 132
|
| 346 |
+
[2025-07-09 17:16:09,242][transformers.trainer][INFO] - Batch size = 16
|
| 347 |
+
[2025-07-09 17:16:09,639][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-384
|
| 348 |
+
[2025-07-09 17:16:09,641][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-384/config.json
|
| 349 |
+
[2025-07-09 17:16:11,042][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-384/model.safetensors
|
| 350 |
+
[2025-07-09 17:16:13,060][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-352] due to args.save_total_limit
|
| 351 |
+
[2025-07-09 17:16:18,036][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 352 |
+
[2025-07-09 17:16:18,039][transformers.trainer][INFO] -
|
| 353 |
+
***** Running Evaluation *****
|
| 354 |
+
[2025-07-09 17:16:18,039][transformers.trainer][INFO] - Num examples = 132
|
| 355 |
+
[2025-07-09 17:16:18,039][transformers.trainer][INFO] - Batch size = 16
|
| 356 |
+
[2025-07-09 17:16:18,434][transformers.trainer][INFO] - Saving model checkpoint to /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-416
|
| 357 |
+
[2025-07-09 17:16:18,435][transformers.configuration_utils][INFO] - Configuration saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-416/config.json
|
| 358 |
+
[2025-07-09 17:16:20,168][transformers.modeling_utils][INFO] - Model weights saved in /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-416/model.safetensors
|
| 359 |
+
[2025-07-09 17:16:22,058][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-384] due to args.save_total_limit
|
| 360 |
+
[2025-07-09 17:16:22,176][transformers.trainer][INFO] -
|
| 361 |
+
|
| 362 |
+
Training completed. Do not forget to share your model on huggingface.co/models =)
|
| 363 |
+
|
| 364 |
+
|
| 365 |
+
[2025-07-09 17:16:22,176][transformers.trainer][INFO] - Loading best model from /workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-256 (score: 0.43200913614487313).
|
| 366 |
+
[2025-07-09 17:16:22,534][transformers.trainer][INFO] - Deleting older checkpoint [/workspace/jbcs2025/outputs/2025-07-09/17-14-13/results/checkpoint-416] due to args.save_total_limit
|
| 367 |
+
[2025-07-09 17:16:22,692][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 368 |
+
[2025-07-09 17:16:22,695][transformers.trainer][INFO] -
|
| 369 |
+
***** Running Evaluation *****
|
| 370 |
+
[2025-07-09 17:16:22,695][transformers.trainer][INFO] - Num examples = 132
|
| 371 |
+
[2025-07-09 17:16:22,695][transformers.trainer][INFO] - Batch size = 16
|
| 372 |
+
[2025-07-09 17:16:23,118][__main__][INFO] - Training completed successfully.
|
| 373 |
+
[2025-07-09 17:16:23,118][__main__][INFO] - Running on Test
|
| 374 |
+
[2025-07-09 17:16:23,119][transformers.trainer][INFO] - The following columns in the Evaluation set don't have a corresponding argument in `BertForSequenceClassification.forward` and have been ignored: prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference. If prompt, id, grades, supporting_text, essay_year, essay_text, id_prompt, reference are not expected by `BertForSequenceClassification.forward`, you can safely ignore this message.
|
| 375 |
+
[2025-07-09 17:16:23,121][transformers.trainer][INFO] -
|
| 376 |
+
***** Running Evaluation *****
|
| 377 |
+
[2025-07-09 17:16:23,121][transformers.trainer][INFO] - Num examples = 138
|
| 378 |
+
[2025-07-09 17:16:23,121][transformers.trainer][INFO] - Batch size = 16
|
| 379 |
+
[2025-07-09 17:16:23,542][__main__][INFO] - Test metrics: {'eval_loss': 1.8821938037872314, 'eval_model_preparation_time': 0.0021, 'eval_accuracy': 0.3188405797101449, 'eval_RMSE': 55.22024413490799, 'eval_QWK': 0.35860460184497933, 'eval_HDIV': 0.08695652173913049, 'eval_Macro_F1': 0.22452316528265895, 'eval_Micro_F1': 0.3188405797101449, 'eval_Weighted_F1': 0.3210121894546771, 'eval_TP_0': 0, 'eval_TN_0': 137, 'eval_FP_0': 0, 'eval_FN_0': 1, 'eval_TP_1': 8, 'eval_TN_1': 91, 'eval_FP_1': 18, 'eval_FN_1': 21, 'eval_TP_2': 8, 'eval_TN_2': 96, 'eval_FP_2': 24, 'eval_FN_2': 10, 'eval_TP_3': 12, 'eval_TN_3': 71, 'eval_FP_3': 22, 'eval_FN_3': 33, 'eval_TP_4': 16, 'eval_TN_4': 80, 'eval_FP_4': 20, 'eval_FN_4': 22, 'eval_TP_5': 0, 'eval_TN_5': 121, 'eval_FP_5': 10, 'eval_FN_5': 7, 'eval_runtime': 0.4153, 'eval_samples_per_second': 332.255, 'eval_steps_per_second': 21.669, 'epoch': 13.0}
|
| 380 |
+
[2025-07-09 17:16:23,543][transformers.trainer][INFO] - Saving model checkpoint to ./results/best_model
|
| 381 |
+
[2025-07-09 17:16:23,545][transformers.configuration_utils][INFO] - Configuration saved in ./results/best_model/config.json
|
| 382 |
+
[2025-07-09 17:16:25,266][transformers.modeling_utils][INFO] - Model weights saved in ./results/best_model/model.safetensors
|
| 383 |
+
[2025-07-09 17:16:25,268][transformers.tokenization_utils_base][INFO] - tokenizer config file saved in ./results/best_model/tokenizer_config.json
|
| 384 |
+
[2025-07-09 17:16:25,269][transformers.tokenization_utils_base][INFO] - Special tokens file saved in ./results/best_model/special_tokens_map.json
|
| 385 |
+
[2025-07-09 17:16:25,342][__main__][INFO] - Model and tokenizer saved to ./results/best_model
|
| 386 |
+
[2025-07-09 17:16:25,368][__main__][INFO] - Fine Tuning Finished.
|
| 387 |
+
[2025-07-09 17:16:25,879][__main__][INFO] - Total emissions: 0.0025 kg CO2eq
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"cls_token": "[CLS]",
|
| 3 |
+
"mask_token": "[MASK]",
|
| 4 |
+
"pad_token": "[PAD]",
|
| 5 |
+
"sep_token": "[SEP]",
|
| 6 |
+
"unk_token": "[UNK]"
|
| 7 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"0": {
|
| 4 |
+
"content": "[PAD]",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"100": {
|
| 12 |
+
"content": "[UNK]",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"101": {
|
| 20 |
+
"content": "[CLS]",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"102": {
|
| 28 |
+
"content": "[SEP]",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"103": {
|
| 36 |
+
"content": "[MASK]",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
}
|
| 43 |
+
},
|
| 44 |
+
"clean_up_tokenization_spaces": false,
|
| 45 |
+
"cls_token": "[CLS]",
|
| 46 |
+
"do_lower_case": false,
|
| 47 |
+
"extra_special_tokens": {},
|
| 48 |
+
"mask_token": "[MASK]",
|
| 49 |
+
"model_max_length": 512,
|
| 50 |
+
"pad_token": "[PAD]",
|
| 51 |
+
"sep_token": "[SEP]",
|
| 52 |
+
"strip_accents": null,
|
| 53 |
+
"tokenize_chinese_chars": true,
|
| 54 |
+
"tokenizer_class": "BertTokenizer",
|
| 55 |
+
"unk_token": "[UNK]"
|
| 56 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:39ac0ba33512fe2ae794238aca83bc4979e74cb71175b5481d987b702e4e8753
|
| 3 |
+
size 5777
|
vocab.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|