Feature Extraction
Transformers
Safetensors
bert
code
embeddings
file-embedding
r2
repositories
repository-library
research-library
t4_repo
text-embeddings-inference
Instructions to use PeytonT/file-embedding with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use PeytonT/file-embedding with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="PeytonT/file-embedding")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("PeytonT/file-embedding") model = AutoModel.from_pretrained("PeytonT/file-embedding", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload repository_library model package
Browse files- README.md +85 -0
- config.json +25 -0
- model.safetensors +3 -0
- special_tokens_map.json +37 -0
- tokenizer.json +0 -0
- tokenizer_config.json +65 -0
- trainer_state.json +223 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
README.md
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: sentence-transformers/all-MiniLM-L6-v2
|
| 3 |
+
library_name: transformers
|
| 4 |
+
pipeline_tag: feature-extraction
|
| 5 |
+
tags:
|
| 6 |
+
- code
|
| 7 |
+
- embeddings
|
| 8 |
+
- file-embedding
|
| 9 |
+
- r2
|
| 10 |
+
- repositories
|
| 11 |
+
- repository-library
|
| 12 |
+
- research-library
|
| 13 |
+
- t4_repo
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# File Embedding
|
| 17 |
+
|
| 18 |
+
Produces file-level dense representations for retrieval and matching.
|
| 19 |
+
|
| 20 |
+
## Model Details
|
| 21 |
+
|
| 22 |
+
- Artifact type: full fine-tuned model
|
| 23 |
+
- Base model: `sentence-transformers/all-MiniLM-L6-v2`
|
| 24 |
+
- Model ID: `R2`
|
| 25 |
+
- Tier: `T4_repo`
|
| 26 |
+
- Local mirror: `/arxiv/models/repository_library/file-embedding`
|
| 27 |
+
- Source checkpoint: `models/checkpoints/R2`
|
| 28 |
+
|
| 29 |
+
This repository is part of the `repository_library` model stack and is mirrored from `/data/repository_library/models/checkpoints` for publication under the `PeytonT` namespace.
|
| 30 |
+
|
| 31 |
+
## Intended Use
|
| 32 |
+
|
| 33 |
+
- Primary use: Produces file-level dense representations for retrieval and matching.
|
| 34 |
+
- Secondary use: retrieval, ranking, planning, or scientific paper tooling inside the broader Repository Library system, depending on the model family.
|
| 35 |
+
- Out of scope: production safety claims, benchmark claims beyond the bundled experiment config, or use outside the model's narrow training objective without task-specific validation.
|
| 36 |
+
|
| 37 |
+
## Training Data
|
| 38 |
+
|
| 39 |
+
This package was trained from the following declared datasets or corpus sources:
|
| 40 |
+
|
| 41 |
+
- `source:github_repos`
|
| 42 |
+
|
| 43 |
+
## Training Procedure
|
| 44 |
+
|
| 45 |
+
- Sources: `github_repos`
|
| 46 |
+
- Input fields: `file_query`
|
| 47 |
+
- Target fields: `source_chunk`
|
| 48 |
+
- Max samples: `4000`
|
| 49 |
+
- Precision: `bf16`
|
| 50 |
+
- Objective: `contrastive`
|
| 51 |
+
- Batch size: `8`
|
| 52 |
+
- Learning rate: `5e-05`
|
| 53 |
+
- Max source tokens: `256`
|
| 54 |
+
- Max target tokens: `256`
|
| 55 |
+
- Max steps: `1000`
|
| 56 |
+
|
| 57 |
+
## Evaluation
|
| 58 |
+
|
| 59 |
+
- Declared metrics: `recall_at_10, ndcg_at_10`
|
| 60 |
+
- Status: local experiment artifact mirrored for release; external benchmark reporting has not been standardized across the full model family yet.
|
| 61 |
+
|
| 62 |
+
## Usage
|
| 63 |
+
|
| 64 |
+
```python
|
| 65 |
+
from transformers import AutoModel, AutoTokenizer
|
| 66 |
+
|
| 67 |
+
repo_id = "PeytonT/file-embedding"
|
| 68 |
+
|
| 69 |
+
tokenizer = AutoTokenizer.from_pretrained(repo_id)
|
| 70 |
+
model = AutoModel.from_pretrained(repo_id)
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
## Limitations
|
| 74 |
+
|
| 75 |
+
- These model cards reflect the packaged experiment configs and mirrored checkpoint contents, not an independently audited benchmark sheet.
|
| 76 |
+
- Some training datasets are local corpora or exported shards, so reproducibility may require access to the surrounding Repository Library data pipeline.
|
| 77 |
+
- Models in this stack are narrow components of a larger paper-and-repository system and should be validated on downstream tasks before deployment.
|
| 78 |
+
|
| 79 |
+
## Project Context
|
| 80 |
+
|
| 81 |
+
Repository Library is a research system for indexing, retrieving, aligning, and reasoning over scientific papers, structured paper content, repositories, and cross-domain links between them.
|
| 82 |
+
|
| 83 |
+
## Contact
|
| 84 |
+
|
| 85 |
+
Published under `PeytonT` from the local `repository_library` build.
|
config.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"BertModel"
|
| 4 |
+
],
|
| 5 |
+
"attention_probs_dropout_prob": 0.1,
|
| 6 |
+
"classifier_dropout": null,
|
| 7 |
+
"dtype": "float32",
|
| 8 |
+
"gradient_checkpointing": false,
|
| 9 |
+
"hidden_act": "gelu",
|
| 10 |
+
"hidden_dropout_prob": 0.1,
|
| 11 |
+
"hidden_size": 384,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 1536,
|
| 14 |
+
"layer_norm_eps": 1e-12,
|
| 15 |
+
"max_position_embeddings": 512,
|
| 16 |
+
"model_type": "bert",
|
| 17 |
+
"num_attention_heads": 12,
|
| 18 |
+
"num_hidden_layers": 6,
|
| 19 |
+
"pad_token_id": 0,
|
| 20 |
+
"position_embedding_type": "absolute",
|
| 21 |
+
"transformers_version": "4.57.6",
|
| 22 |
+
"type_vocab_size": 2,
|
| 23 |
+
"use_cache": true,
|
| 24 |
+
"vocab_size": 30522
|
| 25 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7174b34a56c70ebe77869d1d1e6ac0d423b81fa9f3dcfa6dd664ae50cd4d8c04
|
| 3 |
+
size 90864192
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"cls_token": {
|
| 3 |
+
"content": "[CLS]",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"mask_token": {
|
| 10 |
+
"content": "[MASK]",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "[PAD]",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"sep_token": {
|
| 24 |
+
"content": "[SEP]",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
},
|
| 30 |
+
"unk_token": {
|
| 31 |
+
"content": "[UNK]",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": false,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
}
|
| 37 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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_basic_tokenize": true,
|
| 47 |
+
"do_lower_case": true,
|
| 48 |
+
"extra_special_tokens": {},
|
| 49 |
+
"mask_token": "[MASK]",
|
| 50 |
+
"max_length": 128,
|
| 51 |
+
"model_max_length": 512,
|
| 52 |
+
"never_split": null,
|
| 53 |
+
"pad_to_multiple_of": null,
|
| 54 |
+
"pad_token": "[PAD]",
|
| 55 |
+
"pad_token_type_id": 0,
|
| 56 |
+
"padding_side": "right",
|
| 57 |
+
"sep_token": "[SEP]",
|
| 58 |
+
"stride": 0,
|
| 59 |
+
"strip_accents": null,
|
| 60 |
+
"tokenize_chinese_chars": true,
|
| 61 |
+
"tokenizer_class": "BertTokenizer",
|
| 62 |
+
"truncation_side": "right",
|
| 63 |
+
"truncation_strategy": "longest_first",
|
| 64 |
+
"unk_token": "[UNK]"
|
| 65 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,223 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 6.666666666666667,
|
| 6 |
+
"eval_steps": 200,
|
| 7 |
+
"global_step": 1000,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.3333333333333333,
|
| 14 |
+
"grad_norm": 0.1161554679274559,
|
| 15 |
+
"learning_rate": 2.45e-05,
|
| 16 |
+
"loss": 0.2385,
|
| 17 |
+
"step": 50
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.6666666666666666,
|
| 21 |
+
"grad_norm": 0.02218211442232132,
|
| 22 |
+
"learning_rate": 4.9500000000000004e-05,
|
| 23 |
+
"loss": 0.1177,
|
| 24 |
+
"step": 100
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 1.0,
|
| 28 |
+
"grad_norm": 0.00968642346560955,
|
| 29 |
+
"learning_rate": 4.727777777777778e-05,
|
| 30 |
+
"loss": 0.116,
|
| 31 |
+
"step": 150
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 1.3333333333333333,
|
| 35 |
+
"grad_norm": 0.007011748850345612,
|
| 36 |
+
"learning_rate": 4.4500000000000004e-05,
|
| 37 |
+
"loss": 0.1083,
|
| 38 |
+
"step": 200
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 1.3333333333333333,
|
| 42 |
+
"eval_loss": 0.06607545167207718,
|
| 43 |
+
"eval_runtime": 5.6176,
|
| 44 |
+
"eval_samples_per_second": 45.571,
|
| 45 |
+
"eval_steps_per_second": 15.309,
|
| 46 |
+
"step": 200
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 1.6666666666666665,
|
| 50 |
+
"grad_norm": 0.006341904401779175,
|
| 51 |
+
"learning_rate": 4.172222222222222e-05,
|
| 52 |
+
"loss": 0.1148,
|
| 53 |
+
"step": 250
|
| 54 |
+
},
|
| 55 |
+
{
|
| 56 |
+
"epoch": 2.0,
|
| 57 |
+
"grad_norm": 0.003990900237113237,
|
| 58 |
+
"learning_rate": 3.894444444444444e-05,
|
| 59 |
+
"loss": 0.1187,
|
| 60 |
+
"step": 300
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"epoch": 2.3333333333333335,
|
| 64 |
+
"grad_norm": 0.002797077177092433,
|
| 65 |
+
"learning_rate": 3.6166666666666674e-05,
|
| 66 |
+
"loss": 0.1147,
|
| 67 |
+
"step": 350
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"epoch": 2.6666666666666665,
|
| 71 |
+
"grad_norm": 0.004016134887933731,
|
| 72 |
+
"learning_rate": 3.338888888888889e-05,
|
| 73 |
+
"loss": 0.1186,
|
| 74 |
+
"step": 400
|
| 75 |
+
},
|
| 76 |
+
{
|
| 77 |
+
"epoch": 2.6666666666666665,
|
| 78 |
+
"eval_loss": 0.0658242404460907,
|
| 79 |
+
"eval_runtime": 5.4416,
|
| 80 |
+
"eval_samples_per_second": 47.045,
|
| 81 |
+
"eval_steps_per_second": 15.804,
|
| 82 |
+
"step": 400
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 3.0,
|
| 86 |
+
"grad_norm": 0.007220633793622255,
|
| 87 |
+
"learning_rate": 3.061111111111111e-05,
|
| 88 |
+
"loss": 0.1079,
|
| 89 |
+
"step": 450
|
| 90 |
+
},
|
| 91 |
+
{
|
| 92 |
+
"epoch": 3.3333333333333335,
|
| 93 |
+
"grad_norm": 0.01633382774889469,
|
| 94 |
+
"learning_rate": 2.7833333333333333e-05,
|
| 95 |
+
"loss": 0.1124,
|
| 96 |
+
"step": 500
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"epoch": 3.6666666666666665,
|
| 100 |
+
"grad_norm": 0.42010870575904846,
|
| 101 |
+
"learning_rate": 2.5055555555555555e-05,
|
| 102 |
+
"loss": 0.113,
|
| 103 |
+
"step": 550
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"epoch": 4.0,
|
| 107 |
+
"grad_norm": 0.009207644499838352,
|
| 108 |
+
"learning_rate": 2.2277777777777778e-05,
|
| 109 |
+
"loss": 0.1064,
|
| 110 |
+
"step": 600
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 4.0,
|
| 114 |
+
"eval_loss": 0.0652749314904213,
|
| 115 |
+
"eval_runtime": 5.5368,
|
| 116 |
+
"eval_samples_per_second": 46.236,
|
| 117 |
+
"eval_steps_per_second": 15.532,
|
| 118 |
+
"step": 600
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 4.333333333333333,
|
| 122 |
+
"grad_norm": 0.2730109393596649,
|
| 123 |
+
"learning_rate": 1.9500000000000003e-05,
|
| 124 |
+
"loss": 0.0993,
|
| 125 |
+
"step": 650
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"epoch": 4.666666666666667,
|
| 129 |
+
"grad_norm": 0.005696973763406277,
|
| 130 |
+
"learning_rate": 1.6722222222222222e-05,
|
| 131 |
+
"loss": 0.0892,
|
| 132 |
+
"step": 700
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"epoch": 5.0,
|
| 136 |
+
"grad_norm": 0.9231644868850708,
|
| 137 |
+
"learning_rate": 1.3944444444444446e-05,
|
| 138 |
+
"loss": 0.0979,
|
| 139 |
+
"step": 750
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"epoch": 5.333333333333333,
|
| 143 |
+
"grad_norm": 0.151046484708786,
|
| 144 |
+
"learning_rate": 1.1166666666666668e-05,
|
| 145 |
+
"loss": 0.0911,
|
| 146 |
+
"step": 800
|
| 147 |
+
},
|
| 148 |
+
{
|
| 149 |
+
"epoch": 5.333333333333333,
|
| 150 |
+
"eval_loss": 0.06247705966234207,
|
| 151 |
+
"eval_runtime": 5.4795,
|
| 152 |
+
"eval_samples_per_second": 46.719,
|
| 153 |
+
"eval_steps_per_second": 15.695,
|
| 154 |
+
"step": 800
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"epoch": 5.666666666666667,
|
| 158 |
+
"grad_norm": 0.051675036549568176,
|
| 159 |
+
"learning_rate": 8.38888888888889e-06,
|
| 160 |
+
"loss": 0.0851,
|
| 161 |
+
"step": 850
|
| 162 |
+
},
|
| 163 |
+
{
|
| 164 |
+
"epoch": 6.0,
|
| 165 |
+
"grad_norm": 0.010107653215527534,
|
| 166 |
+
"learning_rate": 5.611111111111112e-06,
|
| 167 |
+
"loss": 0.0998,
|
| 168 |
+
"step": 900
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"epoch": 6.333333333333333,
|
| 172 |
+
"grad_norm": 0.14959843456745148,
|
| 173 |
+
"learning_rate": 2.8333333333333335e-06,
|
| 174 |
+
"loss": 0.0862,
|
| 175 |
+
"step": 950
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"epoch": 6.666666666666667,
|
| 179 |
+
"grad_norm": 0.1443173885345459,
|
| 180 |
+
"learning_rate": 5.555555555555556e-08,
|
| 181 |
+
"loss": 0.0863,
|
| 182 |
+
"step": 1000
|
| 183 |
+
},
|
| 184 |
+
{
|
| 185 |
+
"epoch": 6.666666666666667,
|
| 186 |
+
"eval_loss": 0.06236131116747856,
|
| 187 |
+
"eval_runtime": 5.5424,
|
| 188 |
+
"eval_samples_per_second": 46.19,
|
| 189 |
+
"eval_steps_per_second": 15.517,
|
| 190 |
+
"step": 1000
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 6.666666666666667,
|
| 194 |
+
"step": 1000,
|
| 195 |
+
"total_flos": 0.0,
|
| 196 |
+
"train_loss": 0.11109923124313355,
|
| 197 |
+
"train_runtime": 166.7816,
|
| 198 |
+
"train_samples_per_second": 143.901,
|
| 199 |
+
"train_steps_per_second": 5.996
|
| 200 |
+
}
|
| 201 |
+
],
|
| 202 |
+
"logging_steps": 50,
|
| 203 |
+
"max_steps": 1000,
|
| 204 |
+
"num_input_tokens_seen": 0,
|
| 205 |
+
"num_train_epochs": 7,
|
| 206 |
+
"save_steps": 200,
|
| 207 |
+
"stateful_callbacks": {
|
| 208 |
+
"TrainerControl": {
|
| 209 |
+
"args": {
|
| 210 |
+
"should_epoch_stop": false,
|
| 211 |
+
"should_evaluate": false,
|
| 212 |
+
"should_log": false,
|
| 213 |
+
"should_save": true,
|
| 214 |
+
"should_training_stop": true
|
| 215 |
+
},
|
| 216 |
+
"attributes": {}
|
| 217 |
+
}
|
| 218 |
+
},
|
| 219 |
+
"total_flos": 0.0,
|
| 220 |
+
"train_batch_size": 24,
|
| 221 |
+
"trial_name": null,
|
| 222 |
+
"trial_params": null
|
| 223 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0486e2ced4478591587cd4f8eeb7b64fad1a0079b70a0b04b78fffefb5775e0b
|
| 3 |
+
size 5841
|
vocab.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|