Feature Extraction
Transformers
Safetensors
bert
italian
eye-tracking
token-regression
text-embeddings-inference
Instructions to use calogero-jerik-scozzaro/BERT_VDA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use calogero-jerik-scozzaro/BERT_VDA with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="calogero-jerik-scozzaro/BERT_VDA")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("calogero-jerik-scozzaro/BERT_VDA") model = AutoModel.from_pretrained("calogero-jerik-scozzaro/BERT_VDA") - Notebooks
- Google Colab
- Kaggle
BERT_VDA
This repository contains a BERT encoder saved after eye-tracking fine-tuning in the VDA_ET workflow.
The temporary token-level regression head used during training is not included. Load the checkpoint with AutoModel.from_pretrained for downstream encoder analysis or continued fine-tuning.
from transformers import AutoModel, AutoTokenizer
model_id = "calogero-jerik-scozzaro/BERT_VDA"
tokenizer = AutoTokenizer.from_pretrained(model_id, use_fast=True)
model = AutoModel.from_pretrained(model_id)
Training metadata
| Field | Value |
|---|---|
all_train_texts |
lupo, lupoe, ciclisti, ciclistis |
batch_size |
8 |
epochs |
100 |
learning_rate |
2e-05 |
max_length |
256 |
measures |
FFD, FPRT, TFT, RRT, skipped, FPF, RR |
num_train_sentences |
36 |
source_model |
dbmdz/bert-base-italian-uncased |
stage |
1 |
stage_train_texts |
lupo, lupoe, ciclisti, ciclistis |
test_texts |
HumanRights, LearningMobility |
variant |
BERT_VDA |
The uploaded files include et_label_scaler.json, which records the min-max scaling statistics used for the eye-tracking labels.
- Downloads last month
- 107
Model tree for calogero-jerik-scozzaro/BERT_VDA
Base model
dbmdz/bert-base-italian-uncased