Views
No views yet
EvoLenTokenizer/evolen-200k-sft-checkpoints.EvoLenTokenizer/base-200k.
Tokenizer: standard BPE, vocab 5,120 — not the EvoLen tokenizer.model_max_length, precision and checkpoint-selection rule
as its EvoLen-200k counterpart, so the only differences are the tokenizer and the
pretrained model.mouse/*,
all of tf/*, seven EMP/*, splice/reconstructed and allchr_csv — were re-run
specifically to match EvoLen's configuration; several of those had no baseline run at
all, and allchr_csv had previously been run at model_max_length=200 where EvoLen used
512.per_device_batch_size=64 against EvoLen's 128;
coverage.csv records the config used for every task.<SUITE>/<task>/, each with model.safetensors, config.json,
tokenizer.json, tokenizer_config.json, special_tokens_map.json,
trainer_state.json and training_args.bin. Optimizer and scheduler state are stripped.1from transformers import AutoModelForSequenceClassification
2model = AutoModelForSequenceClassification.from_pretrained(
3 "EvoLenTokenizer/base-200k-sft-checkpoints",
4 subfolder="NT/H3K27ac", trust_remote_code=True)coverage.csv lists all 56 tasks with their status (published / batch-size mismatch /
hyperparameter mismatch / no run) and both configs side by side.training_args.bin, per-task
model_max_length from training_args.bin, and sorted(set(...)) label ordering for
multiclass tasks. Tokenize with padding="longest", truncation=True; attention mask is
input_ids.ne(pad_token_id); metric is sklearn.metrics.matthews_corrcoef over argmax
predictions.