Initial model upload
Browse files- app.py +48 -0
- config.json +46 -0
- model-00001-of-00004.safetensors +3 -0
- model-00002-of-00004.safetensors +3 -0
- model-00003-of-00004.safetensors +3 -0
- model-00004-of-00004.safetensors +3 -0
- model.safetensors.index.json +785 -0
- requirements.txt +4 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +58 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
app.py
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import gradio as gr
|
| 3 |
+
import torch
|
| 4 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
| 5 |
+
|
| 6 |
+
# Load model from the current directory
|
| 7 |
+
MODEL_PATH = "."
|
| 8 |
+
|
| 9 |
+
LABELS = [
|
| 10 |
+
"Endocrinology Referral", "Nutrition Referral", "Cardiology Referral", "Bariatric Referral",
|
| 11 |
+
"Mental Health Screen", "Food Insecurity Discussion", "GLP-1 Prescription", "Follow-up Scheduled"
|
| 12 |
+
]
|
| 13 |
+
|
| 14 |
+
# Load Model
|
| 15 |
+
print("Loading model...")
|
| 16 |
+
tokenizer = AutoTokenizer.from_pretrained(MODEL_PATH)
|
| 17 |
+
model = AutoModelForSequenceClassification.from_pretrained(MODEL_PATH)
|
| 18 |
+
|
| 19 |
+
def analyze_note(text):
|
| 20 |
+
if not text.strip(): return None
|
| 21 |
+
|
| 22 |
+
inputs = tokenizer(text, return_tensors="pt", truncation=True, padding=True, max_length=320)
|
| 23 |
+
|
| 24 |
+
with torch.no_grad():
|
| 25 |
+
logits = model(**inputs).logits
|
| 26 |
+
|
| 27 |
+
probs = torch.sigmoid(logits).cpu().numpy()[0]
|
| 28 |
+
return {label: float(conf) for label, conf in zip(LABELS, probs)}
|
| 29 |
+
|
| 30 |
+
# Examples for users to click
|
| 31 |
+
examples = [
|
| 32 |
+
["VISIT DATE: 11/20/2025\nSUBJECTIVE: 16yo female presents for weight management. Reports trying to walk more.\nPLAN:\n1. Start Zepbound 2.5mg weekly.\n2. Referral to Pediatric Endocrinology.\n3. Consulting Registered Dietitian."],
|
| 33 |
+
["HPI: Mom is requesting Wegovy today. PLAN: Discussed Wegovy but insurance denied the Prior Authorization. No medication prescribed. Offered referral to nutrition services but family declined."],
|
| 34 |
+
["CC: Ear pain. Social History: Dad mentions he lost his job last week and they are currently using a food pantry. Plan: Amoxicillin."]
|
| 35 |
+
]
|
| 36 |
+
|
| 37 |
+
# The Interface
|
| 38 |
+
demo = gr.Interface(
|
| 39 |
+
fn=analyze_note,
|
| 40 |
+
inputs=gr.Textbox(lines=10, label="Paste Clinical Note Here"),
|
| 41 |
+
outputs=gr.Label(num_top_classes=8, label="Predicted Actions"),
|
| 42 |
+
title="🏥 Clinical Note Analyzer (GatorTron)",
|
| 43 |
+
description="This model identifies referrals, prescriptions, and screenings in unstructured clinical text.",
|
| 44 |
+
examples=examples,
|
| 45 |
+
theme=gr.themes.Soft()
|
| 46 |
+
)
|
| 47 |
+
|
| 48 |
+
demo.launch()
|
config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"MegatronBertForSequenceClassification"
|
| 4 |
+
],
|
| 5 |
+
"attention_probs_dropout_prob": 0.1,
|
| 6 |
+
"dtype": "float32",
|
| 7 |
+
"hidden_act": "gelu",
|
| 8 |
+
"hidden_dropout_prob": 0.1,
|
| 9 |
+
"hidden_size": 2560,
|
| 10 |
+
"id2label": {
|
| 11 |
+
"0": "LABEL_0",
|
| 12 |
+
"1": "LABEL_1",
|
| 13 |
+
"2": "LABEL_2",
|
| 14 |
+
"3": "LABEL_3",
|
| 15 |
+
"4": "LABEL_4",
|
| 16 |
+
"5": "LABEL_5",
|
| 17 |
+
"6": "LABEL_6",
|
| 18 |
+
"7": "LABEL_7"
|
| 19 |
+
},
|
| 20 |
+
"initializer_range": 0.02,
|
| 21 |
+
"intermediate_size": 10240,
|
| 22 |
+
"label2id": {
|
| 23 |
+
"LABEL_0": 0,
|
| 24 |
+
"LABEL_1": 1,
|
| 25 |
+
"LABEL_2": 2,
|
| 26 |
+
"LABEL_3": 3,
|
| 27 |
+
"LABEL_4": 4,
|
| 28 |
+
"LABEL_5": 5,
|
| 29 |
+
"LABEL_6": 6,
|
| 30 |
+
"LABEL_7": 7
|
| 31 |
+
},
|
| 32 |
+
"layer_norm_eps": 1e-12,
|
| 33 |
+
"max_position_embeddings": 512,
|
| 34 |
+
"model_type": "megatron-bert",
|
| 35 |
+
"num_attention_heads": 40,
|
| 36 |
+
"num_hidden_layers": 48,
|
| 37 |
+
"num_layers": 48,
|
| 38 |
+
"pad_token_id": 0,
|
| 39 |
+
"position_embedding_type": "absolute",
|
| 40 |
+
"problem_type": "multi_label_classification",
|
| 41 |
+
"tokenizer_type": "BertWordPieceCase",
|
| 42 |
+
"transformers_version": "4.57.1",
|
| 43 |
+
"type_vocab_size": 2,
|
| 44 |
+
"use_cache": true,
|
| 45 |
+
"vocab_size": 50176
|
| 46 |
+
}
|
model-00001-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d8c94e5f2e566ee36a239f3be55c3a5577eacfce68d0fee594fe5af10396010
|
| 3 |
+
size 4977445672
|
model-00002-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:435165e5e2c81311bedbe31ecde296c735922d051ce7171f5136dab00433aeba
|
| 3 |
+
size 4982875216
|
model-00003-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0553143ad9282d4a9a373c10a9e128dda1d9fe721050d378c72c233560b9619
|
| 3 |
+
size 4930436200
|
model-00004-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc66899581237a3c9b7e213fded56e73ef9ebb891230df4128069757f006ddd6
|
| 3 |
+
size 760611288
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,785 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 3912819208,
|
| 4 |
+
"total_size": 15651276832
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"bert.embeddings.position_embeddings.weight": "model-00001-of-00004.safetensors",
|
| 8 |
+
"bert.embeddings.token_type_embeddings.weight": "model-00001-of-00004.safetensors",
|
| 9 |
+
"bert.embeddings.word_embeddings.weight": "model-00001-of-00004.safetensors",
|
| 10 |
+
"bert.encoder.layer.0.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 11 |
+
"bert.encoder.layer.0.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 12 |
+
"bert.encoder.layer.0.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 13 |
+
"bert.encoder.layer.0.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 14 |
+
"bert.encoder.layer.0.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 15 |
+
"bert.encoder.layer.0.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 16 |
+
"bert.encoder.layer.0.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 17 |
+
"bert.encoder.layer.0.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 18 |
+
"bert.encoder.layer.0.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 19 |
+
"bert.encoder.layer.0.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 20 |
+
"bert.encoder.layer.0.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 21 |
+
"bert.encoder.layer.0.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 22 |
+
"bert.encoder.layer.0.ln.bias": "model-00001-of-00004.safetensors",
|
| 23 |
+
"bert.encoder.layer.0.ln.weight": "model-00001-of-00004.safetensors",
|
| 24 |
+
"bert.encoder.layer.0.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 25 |
+
"bert.encoder.layer.0.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 26 |
+
"bert.encoder.layer.1.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 27 |
+
"bert.encoder.layer.1.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 28 |
+
"bert.encoder.layer.1.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 29 |
+
"bert.encoder.layer.1.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 30 |
+
"bert.encoder.layer.1.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 31 |
+
"bert.encoder.layer.1.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 32 |
+
"bert.encoder.layer.1.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 33 |
+
"bert.encoder.layer.1.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 34 |
+
"bert.encoder.layer.1.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 35 |
+
"bert.encoder.layer.1.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 36 |
+
"bert.encoder.layer.1.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 37 |
+
"bert.encoder.layer.1.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 38 |
+
"bert.encoder.layer.1.ln.bias": "model-00001-of-00004.safetensors",
|
| 39 |
+
"bert.encoder.layer.1.ln.weight": "model-00001-of-00004.safetensors",
|
| 40 |
+
"bert.encoder.layer.1.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 41 |
+
"bert.encoder.layer.1.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 42 |
+
"bert.encoder.layer.10.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 43 |
+
"bert.encoder.layer.10.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 44 |
+
"bert.encoder.layer.10.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 45 |
+
"bert.encoder.layer.10.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 46 |
+
"bert.encoder.layer.10.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 47 |
+
"bert.encoder.layer.10.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 48 |
+
"bert.encoder.layer.10.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 49 |
+
"bert.encoder.layer.10.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 50 |
+
"bert.encoder.layer.10.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 51 |
+
"bert.encoder.layer.10.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 52 |
+
"bert.encoder.layer.10.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 53 |
+
"bert.encoder.layer.10.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 54 |
+
"bert.encoder.layer.10.ln.bias": "model-00001-of-00004.safetensors",
|
| 55 |
+
"bert.encoder.layer.10.ln.weight": "model-00001-of-00004.safetensors",
|
| 56 |
+
"bert.encoder.layer.10.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 57 |
+
"bert.encoder.layer.10.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 58 |
+
"bert.encoder.layer.11.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 59 |
+
"bert.encoder.layer.11.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 60 |
+
"bert.encoder.layer.11.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 61 |
+
"bert.encoder.layer.11.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 62 |
+
"bert.encoder.layer.11.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 63 |
+
"bert.encoder.layer.11.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 64 |
+
"bert.encoder.layer.11.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 65 |
+
"bert.encoder.layer.11.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 66 |
+
"bert.encoder.layer.11.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 67 |
+
"bert.encoder.layer.11.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 68 |
+
"bert.encoder.layer.11.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 69 |
+
"bert.encoder.layer.11.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 70 |
+
"bert.encoder.layer.11.ln.bias": "model-00001-of-00004.safetensors",
|
| 71 |
+
"bert.encoder.layer.11.ln.weight": "model-00001-of-00004.safetensors",
|
| 72 |
+
"bert.encoder.layer.11.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 73 |
+
"bert.encoder.layer.11.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 74 |
+
"bert.encoder.layer.12.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 75 |
+
"bert.encoder.layer.12.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 76 |
+
"bert.encoder.layer.12.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 77 |
+
"bert.encoder.layer.12.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 78 |
+
"bert.encoder.layer.12.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 79 |
+
"bert.encoder.layer.12.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 80 |
+
"bert.encoder.layer.12.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 81 |
+
"bert.encoder.layer.12.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 82 |
+
"bert.encoder.layer.12.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 83 |
+
"bert.encoder.layer.12.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 84 |
+
"bert.encoder.layer.12.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 85 |
+
"bert.encoder.layer.12.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 86 |
+
"bert.encoder.layer.12.ln.bias": "model-00001-of-00004.safetensors",
|
| 87 |
+
"bert.encoder.layer.12.ln.weight": "model-00001-of-00004.safetensors",
|
| 88 |
+
"bert.encoder.layer.12.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 89 |
+
"bert.encoder.layer.12.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 90 |
+
"bert.encoder.layer.13.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 91 |
+
"bert.encoder.layer.13.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 92 |
+
"bert.encoder.layer.13.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 93 |
+
"bert.encoder.layer.13.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 94 |
+
"bert.encoder.layer.13.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 95 |
+
"bert.encoder.layer.13.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 96 |
+
"bert.encoder.layer.13.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 97 |
+
"bert.encoder.layer.13.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 98 |
+
"bert.encoder.layer.13.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 99 |
+
"bert.encoder.layer.13.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 100 |
+
"bert.encoder.layer.13.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 101 |
+
"bert.encoder.layer.13.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 102 |
+
"bert.encoder.layer.13.ln.bias": "model-00001-of-00004.safetensors",
|
| 103 |
+
"bert.encoder.layer.13.ln.weight": "model-00001-of-00004.safetensors",
|
| 104 |
+
"bert.encoder.layer.13.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 105 |
+
"bert.encoder.layer.13.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 106 |
+
"bert.encoder.layer.14.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 107 |
+
"bert.encoder.layer.14.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 108 |
+
"bert.encoder.layer.14.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 109 |
+
"bert.encoder.layer.14.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 110 |
+
"bert.encoder.layer.14.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 111 |
+
"bert.encoder.layer.14.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 112 |
+
"bert.encoder.layer.14.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 113 |
+
"bert.encoder.layer.14.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 114 |
+
"bert.encoder.layer.14.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 115 |
+
"bert.encoder.layer.14.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 116 |
+
"bert.encoder.layer.14.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 117 |
+
"bert.encoder.layer.14.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 118 |
+
"bert.encoder.layer.14.ln.bias": "model-00002-of-00004.safetensors",
|
| 119 |
+
"bert.encoder.layer.14.ln.weight": "model-00002-of-00004.safetensors",
|
| 120 |
+
"bert.encoder.layer.14.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 121 |
+
"bert.encoder.layer.14.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 122 |
+
"bert.encoder.layer.15.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 123 |
+
"bert.encoder.layer.15.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 124 |
+
"bert.encoder.layer.15.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 125 |
+
"bert.encoder.layer.15.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 126 |
+
"bert.encoder.layer.15.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 127 |
+
"bert.encoder.layer.15.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 128 |
+
"bert.encoder.layer.15.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 129 |
+
"bert.encoder.layer.15.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 130 |
+
"bert.encoder.layer.15.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 131 |
+
"bert.encoder.layer.15.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 132 |
+
"bert.encoder.layer.15.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 133 |
+
"bert.encoder.layer.15.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 134 |
+
"bert.encoder.layer.15.ln.bias": "model-00002-of-00004.safetensors",
|
| 135 |
+
"bert.encoder.layer.15.ln.weight": "model-00002-of-00004.safetensors",
|
| 136 |
+
"bert.encoder.layer.15.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 137 |
+
"bert.encoder.layer.15.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 138 |
+
"bert.encoder.layer.16.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 139 |
+
"bert.encoder.layer.16.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 140 |
+
"bert.encoder.layer.16.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 141 |
+
"bert.encoder.layer.16.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 142 |
+
"bert.encoder.layer.16.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 143 |
+
"bert.encoder.layer.16.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 144 |
+
"bert.encoder.layer.16.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 145 |
+
"bert.encoder.layer.16.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 146 |
+
"bert.encoder.layer.16.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 147 |
+
"bert.encoder.layer.16.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 148 |
+
"bert.encoder.layer.16.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 149 |
+
"bert.encoder.layer.16.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 150 |
+
"bert.encoder.layer.16.ln.bias": "model-00002-of-00004.safetensors",
|
| 151 |
+
"bert.encoder.layer.16.ln.weight": "model-00002-of-00004.safetensors",
|
| 152 |
+
"bert.encoder.layer.16.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 153 |
+
"bert.encoder.layer.16.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 154 |
+
"bert.encoder.layer.17.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 155 |
+
"bert.encoder.layer.17.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 156 |
+
"bert.encoder.layer.17.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 157 |
+
"bert.encoder.layer.17.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 158 |
+
"bert.encoder.layer.17.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 159 |
+
"bert.encoder.layer.17.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 160 |
+
"bert.encoder.layer.17.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 161 |
+
"bert.encoder.layer.17.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 162 |
+
"bert.encoder.layer.17.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 163 |
+
"bert.encoder.layer.17.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 164 |
+
"bert.encoder.layer.17.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 165 |
+
"bert.encoder.layer.17.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 166 |
+
"bert.encoder.layer.17.ln.bias": "model-00002-of-00004.safetensors",
|
| 167 |
+
"bert.encoder.layer.17.ln.weight": "model-00002-of-00004.safetensors",
|
| 168 |
+
"bert.encoder.layer.17.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 169 |
+
"bert.encoder.layer.17.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 170 |
+
"bert.encoder.layer.18.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 171 |
+
"bert.encoder.layer.18.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 172 |
+
"bert.encoder.layer.18.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 173 |
+
"bert.encoder.layer.18.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 174 |
+
"bert.encoder.layer.18.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 175 |
+
"bert.encoder.layer.18.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 176 |
+
"bert.encoder.layer.18.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 177 |
+
"bert.encoder.layer.18.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 178 |
+
"bert.encoder.layer.18.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 179 |
+
"bert.encoder.layer.18.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 180 |
+
"bert.encoder.layer.18.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 181 |
+
"bert.encoder.layer.18.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 182 |
+
"bert.encoder.layer.18.ln.bias": "model-00002-of-00004.safetensors",
|
| 183 |
+
"bert.encoder.layer.18.ln.weight": "model-00002-of-00004.safetensors",
|
| 184 |
+
"bert.encoder.layer.18.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 185 |
+
"bert.encoder.layer.18.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 186 |
+
"bert.encoder.layer.19.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 187 |
+
"bert.encoder.layer.19.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 188 |
+
"bert.encoder.layer.19.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 189 |
+
"bert.encoder.layer.19.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 190 |
+
"bert.encoder.layer.19.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 191 |
+
"bert.encoder.layer.19.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 192 |
+
"bert.encoder.layer.19.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 193 |
+
"bert.encoder.layer.19.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 194 |
+
"bert.encoder.layer.19.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 195 |
+
"bert.encoder.layer.19.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 196 |
+
"bert.encoder.layer.19.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 197 |
+
"bert.encoder.layer.19.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 198 |
+
"bert.encoder.layer.19.ln.bias": "model-00002-of-00004.safetensors",
|
| 199 |
+
"bert.encoder.layer.19.ln.weight": "model-00002-of-00004.safetensors",
|
| 200 |
+
"bert.encoder.layer.19.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 201 |
+
"bert.encoder.layer.19.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 202 |
+
"bert.encoder.layer.2.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 203 |
+
"bert.encoder.layer.2.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 204 |
+
"bert.encoder.layer.2.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 205 |
+
"bert.encoder.layer.2.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 206 |
+
"bert.encoder.layer.2.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 207 |
+
"bert.encoder.layer.2.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 208 |
+
"bert.encoder.layer.2.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 209 |
+
"bert.encoder.layer.2.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 210 |
+
"bert.encoder.layer.2.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 211 |
+
"bert.encoder.layer.2.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 212 |
+
"bert.encoder.layer.2.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 213 |
+
"bert.encoder.layer.2.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 214 |
+
"bert.encoder.layer.2.ln.bias": "model-00001-of-00004.safetensors",
|
| 215 |
+
"bert.encoder.layer.2.ln.weight": "model-00001-of-00004.safetensors",
|
| 216 |
+
"bert.encoder.layer.2.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 217 |
+
"bert.encoder.layer.2.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 218 |
+
"bert.encoder.layer.20.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 219 |
+
"bert.encoder.layer.20.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 220 |
+
"bert.encoder.layer.20.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 221 |
+
"bert.encoder.layer.20.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 222 |
+
"bert.encoder.layer.20.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 223 |
+
"bert.encoder.layer.20.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 224 |
+
"bert.encoder.layer.20.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 225 |
+
"bert.encoder.layer.20.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 226 |
+
"bert.encoder.layer.20.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 227 |
+
"bert.encoder.layer.20.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 228 |
+
"bert.encoder.layer.20.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 229 |
+
"bert.encoder.layer.20.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 230 |
+
"bert.encoder.layer.20.ln.bias": "model-00002-of-00004.safetensors",
|
| 231 |
+
"bert.encoder.layer.20.ln.weight": "model-00002-of-00004.safetensors",
|
| 232 |
+
"bert.encoder.layer.20.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 233 |
+
"bert.encoder.layer.20.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 234 |
+
"bert.encoder.layer.21.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 235 |
+
"bert.encoder.layer.21.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 236 |
+
"bert.encoder.layer.21.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 237 |
+
"bert.encoder.layer.21.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 238 |
+
"bert.encoder.layer.21.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 239 |
+
"bert.encoder.layer.21.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 240 |
+
"bert.encoder.layer.21.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 241 |
+
"bert.encoder.layer.21.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 242 |
+
"bert.encoder.layer.21.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 243 |
+
"bert.encoder.layer.21.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 244 |
+
"bert.encoder.layer.21.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 245 |
+
"bert.encoder.layer.21.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 246 |
+
"bert.encoder.layer.21.ln.bias": "model-00002-of-00004.safetensors",
|
| 247 |
+
"bert.encoder.layer.21.ln.weight": "model-00002-of-00004.safetensors",
|
| 248 |
+
"bert.encoder.layer.21.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 249 |
+
"bert.encoder.layer.21.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 250 |
+
"bert.encoder.layer.22.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 251 |
+
"bert.encoder.layer.22.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 252 |
+
"bert.encoder.layer.22.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 253 |
+
"bert.encoder.layer.22.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 254 |
+
"bert.encoder.layer.22.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 255 |
+
"bert.encoder.layer.22.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 256 |
+
"bert.encoder.layer.22.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 257 |
+
"bert.encoder.layer.22.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 258 |
+
"bert.encoder.layer.22.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 259 |
+
"bert.encoder.layer.22.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 260 |
+
"bert.encoder.layer.22.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 261 |
+
"bert.encoder.layer.22.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 262 |
+
"bert.encoder.layer.22.ln.bias": "model-00002-of-00004.safetensors",
|
| 263 |
+
"bert.encoder.layer.22.ln.weight": "model-00002-of-00004.safetensors",
|
| 264 |
+
"bert.encoder.layer.22.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 265 |
+
"bert.encoder.layer.22.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 266 |
+
"bert.encoder.layer.23.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 267 |
+
"bert.encoder.layer.23.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 268 |
+
"bert.encoder.layer.23.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 269 |
+
"bert.encoder.layer.23.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 270 |
+
"bert.encoder.layer.23.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 271 |
+
"bert.encoder.layer.23.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 272 |
+
"bert.encoder.layer.23.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 273 |
+
"bert.encoder.layer.23.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 274 |
+
"bert.encoder.layer.23.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 275 |
+
"bert.encoder.layer.23.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 276 |
+
"bert.encoder.layer.23.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 277 |
+
"bert.encoder.layer.23.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 278 |
+
"bert.encoder.layer.23.ln.bias": "model-00002-of-00004.safetensors",
|
| 279 |
+
"bert.encoder.layer.23.ln.weight": "model-00002-of-00004.safetensors",
|
| 280 |
+
"bert.encoder.layer.23.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 281 |
+
"bert.encoder.layer.23.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 282 |
+
"bert.encoder.layer.24.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 283 |
+
"bert.encoder.layer.24.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 284 |
+
"bert.encoder.layer.24.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 285 |
+
"bert.encoder.layer.24.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 286 |
+
"bert.encoder.layer.24.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 287 |
+
"bert.encoder.layer.24.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 288 |
+
"bert.encoder.layer.24.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 289 |
+
"bert.encoder.layer.24.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 290 |
+
"bert.encoder.layer.24.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 291 |
+
"bert.encoder.layer.24.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 292 |
+
"bert.encoder.layer.24.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 293 |
+
"bert.encoder.layer.24.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 294 |
+
"bert.encoder.layer.24.ln.bias": "model-00002-of-00004.safetensors",
|
| 295 |
+
"bert.encoder.layer.24.ln.weight": "model-00002-of-00004.safetensors",
|
| 296 |
+
"bert.encoder.layer.24.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 297 |
+
"bert.encoder.layer.24.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 298 |
+
"bert.encoder.layer.25.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 299 |
+
"bert.encoder.layer.25.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 300 |
+
"bert.encoder.layer.25.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 301 |
+
"bert.encoder.layer.25.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 302 |
+
"bert.encoder.layer.25.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 303 |
+
"bert.encoder.layer.25.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 304 |
+
"bert.encoder.layer.25.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 305 |
+
"bert.encoder.layer.25.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 306 |
+
"bert.encoder.layer.25.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 307 |
+
"bert.encoder.layer.25.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 308 |
+
"bert.encoder.layer.25.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 309 |
+
"bert.encoder.layer.25.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 310 |
+
"bert.encoder.layer.25.ln.bias": "model-00002-of-00004.safetensors",
|
| 311 |
+
"bert.encoder.layer.25.ln.weight": "model-00002-of-00004.safetensors",
|
| 312 |
+
"bert.encoder.layer.25.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 313 |
+
"bert.encoder.layer.25.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 314 |
+
"bert.encoder.layer.26.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 315 |
+
"bert.encoder.layer.26.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 316 |
+
"bert.encoder.layer.26.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 317 |
+
"bert.encoder.layer.26.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 318 |
+
"bert.encoder.layer.26.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 319 |
+
"bert.encoder.layer.26.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 320 |
+
"bert.encoder.layer.26.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 321 |
+
"bert.encoder.layer.26.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 322 |
+
"bert.encoder.layer.26.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 323 |
+
"bert.encoder.layer.26.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 324 |
+
"bert.encoder.layer.26.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 325 |
+
"bert.encoder.layer.26.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 326 |
+
"bert.encoder.layer.26.ln.bias": "model-00002-of-00004.safetensors",
|
| 327 |
+
"bert.encoder.layer.26.ln.weight": "model-00002-of-00004.safetensors",
|
| 328 |
+
"bert.encoder.layer.26.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 329 |
+
"bert.encoder.layer.26.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 330 |
+
"bert.encoder.layer.27.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 331 |
+
"bert.encoder.layer.27.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 332 |
+
"bert.encoder.layer.27.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 333 |
+
"bert.encoder.layer.27.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 334 |
+
"bert.encoder.layer.27.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 335 |
+
"bert.encoder.layer.27.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 336 |
+
"bert.encoder.layer.27.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 337 |
+
"bert.encoder.layer.27.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 338 |
+
"bert.encoder.layer.27.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 339 |
+
"bert.encoder.layer.27.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 340 |
+
"bert.encoder.layer.27.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 341 |
+
"bert.encoder.layer.27.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 342 |
+
"bert.encoder.layer.27.ln.bias": "model-00002-of-00004.safetensors",
|
| 343 |
+
"bert.encoder.layer.27.ln.weight": "model-00002-of-00004.safetensors",
|
| 344 |
+
"bert.encoder.layer.27.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 345 |
+
"bert.encoder.layer.27.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 346 |
+
"bert.encoder.layer.28.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 347 |
+
"bert.encoder.layer.28.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 348 |
+
"bert.encoder.layer.28.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 349 |
+
"bert.encoder.layer.28.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 350 |
+
"bert.encoder.layer.28.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 351 |
+
"bert.encoder.layer.28.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 352 |
+
"bert.encoder.layer.28.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 353 |
+
"bert.encoder.layer.28.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 354 |
+
"bert.encoder.layer.28.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 355 |
+
"bert.encoder.layer.28.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 356 |
+
"bert.encoder.layer.28.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 357 |
+
"bert.encoder.layer.28.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 358 |
+
"bert.encoder.layer.28.ln.bias": "model-00002-of-00004.safetensors",
|
| 359 |
+
"bert.encoder.layer.28.ln.weight": "model-00002-of-00004.safetensors",
|
| 360 |
+
"bert.encoder.layer.28.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 361 |
+
"bert.encoder.layer.28.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 362 |
+
"bert.encoder.layer.29.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 363 |
+
"bert.encoder.layer.29.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 364 |
+
"bert.encoder.layer.29.attention.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 365 |
+
"bert.encoder.layer.29.attention.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 366 |
+
"bert.encoder.layer.29.attention.self.key.bias": "model-00002-of-00004.safetensors",
|
| 367 |
+
"bert.encoder.layer.29.attention.self.key.weight": "model-00002-of-00004.safetensors",
|
| 368 |
+
"bert.encoder.layer.29.attention.self.query.bias": "model-00002-of-00004.safetensors",
|
| 369 |
+
"bert.encoder.layer.29.attention.self.query.weight": "model-00002-of-00004.safetensors",
|
| 370 |
+
"bert.encoder.layer.29.attention.self.value.bias": "model-00002-of-00004.safetensors",
|
| 371 |
+
"bert.encoder.layer.29.attention.self.value.weight": "model-00002-of-00004.safetensors",
|
| 372 |
+
"bert.encoder.layer.29.intermediate.dense.bias": "model-00002-of-00004.safetensors",
|
| 373 |
+
"bert.encoder.layer.29.intermediate.dense.weight": "model-00002-of-00004.safetensors",
|
| 374 |
+
"bert.encoder.layer.29.ln.bias": "model-00002-of-00004.safetensors",
|
| 375 |
+
"bert.encoder.layer.29.ln.weight": "model-00002-of-00004.safetensors",
|
| 376 |
+
"bert.encoder.layer.29.output.dense.bias": "model-00002-of-00004.safetensors",
|
| 377 |
+
"bert.encoder.layer.29.output.dense.weight": "model-00002-of-00004.safetensors",
|
| 378 |
+
"bert.encoder.layer.3.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 379 |
+
"bert.encoder.layer.3.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 380 |
+
"bert.encoder.layer.3.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 381 |
+
"bert.encoder.layer.3.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 382 |
+
"bert.encoder.layer.3.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 383 |
+
"bert.encoder.layer.3.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 384 |
+
"bert.encoder.layer.3.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 385 |
+
"bert.encoder.layer.3.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 386 |
+
"bert.encoder.layer.3.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 387 |
+
"bert.encoder.layer.3.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 388 |
+
"bert.encoder.layer.3.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 389 |
+
"bert.encoder.layer.3.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 390 |
+
"bert.encoder.layer.3.ln.bias": "model-00001-of-00004.safetensors",
|
| 391 |
+
"bert.encoder.layer.3.ln.weight": "model-00001-of-00004.safetensors",
|
| 392 |
+
"bert.encoder.layer.3.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 393 |
+
"bert.encoder.layer.3.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 394 |
+
"bert.encoder.layer.30.attention.ln.bias": "model-00002-of-00004.safetensors",
|
| 395 |
+
"bert.encoder.layer.30.attention.ln.weight": "model-00002-of-00004.safetensors",
|
| 396 |
+
"bert.encoder.layer.30.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 397 |
+
"bert.encoder.layer.30.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 398 |
+
"bert.encoder.layer.30.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 399 |
+
"bert.encoder.layer.30.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 400 |
+
"bert.encoder.layer.30.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 401 |
+
"bert.encoder.layer.30.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 402 |
+
"bert.encoder.layer.30.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 403 |
+
"bert.encoder.layer.30.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 404 |
+
"bert.encoder.layer.30.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 405 |
+
"bert.encoder.layer.30.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 406 |
+
"bert.encoder.layer.30.ln.bias": "model-00003-of-00004.safetensors",
|
| 407 |
+
"bert.encoder.layer.30.ln.weight": "model-00003-of-00004.safetensors",
|
| 408 |
+
"bert.encoder.layer.30.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 409 |
+
"bert.encoder.layer.30.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 410 |
+
"bert.encoder.layer.31.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 411 |
+
"bert.encoder.layer.31.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 412 |
+
"bert.encoder.layer.31.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 413 |
+
"bert.encoder.layer.31.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 414 |
+
"bert.encoder.layer.31.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 415 |
+
"bert.encoder.layer.31.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 416 |
+
"bert.encoder.layer.31.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 417 |
+
"bert.encoder.layer.31.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 418 |
+
"bert.encoder.layer.31.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 419 |
+
"bert.encoder.layer.31.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 420 |
+
"bert.encoder.layer.31.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 421 |
+
"bert.encoder.layer.31.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 422 |
+
"bert.encoder.layer.31.ln.bias": "model-00003-of-00004.safetensors",
|
| 423 |
+
"bert.encoder.layer.31.ln.weight": "model-00003-of-00004.safetensors",
|
| 424 |
+
"bert.encoder.layer.31.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 425 |
+
"bert.encoder.layer.31.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 426 |
+
"bert.encoder.layer.32.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 427 |
+
"bert.encoder.layer.32.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 428 |
+
"bert.encoder.layer.32.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 429 |
+
"bert.encoder.layer.32.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 430 |
+
"bert.encoder.layer.32.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 431 |
+
"bert.encoder.layer.32.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 432 |
+
"bert.encoder.layer.32.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 433 |
+
"bert.encoder.layer.32.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 434 |
+
"bert.encoder.layer.32.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 435 |
+
"bert.encoder.layer.32.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 436 |
+
"bert.encoder.layer.32.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 437 |
+
"bert.encoder.layer.32.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 438 |
+
"bert.encoder.layer.32.ln.bias": "model-00003-of-00004.safetensors",
|
| 439 |
+
"bert.encoder.layer.32.ln.weight": "model-00003-of-00004.safetensors",
|
| 440 |
+
"bert.encoder.layer.32.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 441 |
+
"bert.encoder.layer.32.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 442 |
+
"bert.encoder.layer.33.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 443 |
+
"bert.encoder.layer.33.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 444 |
+
"bert.encoder.layer.33.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 445 |
+
"bert.encoder.layer.33.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 446 |
+
"bert.encoder.layer.33.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 447 |
+
"bert.encoder.layer.33.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 448 |
+
"bert.encoder.layer.33.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 449 |
+
"bert.encoder.layer.33.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 450 |
+
"bert.encoder.layer.33.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 451 |
+
"bert.encoder.layer.33.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 452 |
+
"bert.encoder.layer.33.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 453 |
+
"bert.encoder.layer.33.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 454 |
+
"bert.encoder.layer.33.ln.bias": "model-00003-of-00004.safetensors",
|
| 455 |
+
"bert.encoder.layer.33.ln.weight": "model-00003-of-00004.safetensors",
|
| 456 |
+
"bert.encoder.layer.33.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 457 |
+
"bert.encoder.layer.33.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 458 |
+
"bert.encoder.layer.34.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 459 |
+
"bert.encoder.layer.34.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 460 |
+
"bert.encoder.layer.34.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 461 |
+
"bert.encoder.layer.34.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 462 |
+
"bert.encoder.layer.34.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 463 |
+
"bert.encoder.layer.34.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 464 |
+
"bert.encoder.layer.34.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 465 |
+
"bert.encoder.layer.34.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 466 |
+
"bert.encoder.layer.34.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 467 |
+
"bert.encoder.layer.34.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 468 |
+
"bert.encoder.layer.34.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 469 |
+
"bert.encoder.layer.34.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 470 |
+
"bert.encoder.layer.34.ln.bias": "model-00003-of-00004.safetensors",
|
| 471 |
+
"bert.encoder.layer.34.ln.weight": "model-00003-of-00004.safetensors",
|
| 472 |
+
"bert.encoder.layer.34.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 473 |
+
"bert.encoder.layer.34.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 474 |
+
"bert.encoder.layer.35.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 475 |
+
"bert.encoder.layer.35.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 476 |
+
"bert.encoder.layer.35.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 477 |
+
"bert.encoder.layer.35.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 478 |
+
"bert.encoder.layer.35.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 479 |
+
"bert.encoder.layer.35.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 480 |
+
"bert.encoder.layer.35.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 481 |
+
"bert.encoder.layer.35.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 482 |
+
"bert.encoder.layer.35.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 483 |
+
"bert.encoder.layer.35.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 484 |
+
"bert.encoder.layer.35.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 485 |
+
"bert.encoder.layer.35.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 486 |
+
"bert.encoder.layer.35.ln.bias": "model-00003-of-00004.safetensors",
|
| 487 |
+
"bert.encoder.layer.35.ln.weight": "model-00003-of-00004.safetensors",
|
| 488 |
+
"bert.encoder.layer.35.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 489 |
+
"bert.encoder.layer.35.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 490 |
+
"bert.encoder.layer.36.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 491 |
+
"bert.encoder.layer.36.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 492 |
+
"bert.encoder.layer.36.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 493 |
+
"bert.encoder.layer.36.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 494 |
+
"bert.encoder.layer.36.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 495 |
+
"bert.encoder.layer.36.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 496 |
+
"bert.encoder.layer.36.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 497 |
+
"bert.encoder.layer.36.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 498 |
+
"bert.encoder.layer.36.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 499 |
+
"bert.encoder.layer.36.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 500 |
+
"bert.encoder.layer.36.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 501 |
+
"bert.encoder.layer.36.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 502 |
+
"bert.encoder.layer.36.ln.bias": "model-00003-of-00004.safetensors",
|
| 503 |
+
"bert.encoder.layer.36.ln.weight": "model-00003-of-00004.safetensors",
|
| 504 |
+
"bert.encoder.layer.36.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 505 |
+
"bert.encoder.layer.36.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 506 |
+
"bert.encoder.layer.37.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 507 |
+
"bert.encoder.layer.37.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 508 |
+
"bert.encoder.layer.37.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 509 |
+
"bert.encoder.layer.37.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 510 |
+
"bert.encoder.layer.37.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 511 |
+
"bert.encoder.layer.37.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 512 |
+
"bert.encoder.layer.37.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 513 |
+
"bert.encoder.layer.37.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 514 |
+
"bert.encoder.layer.37.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 515 |
+
"bert.encoder.layer.37.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 516 |
+
"bert.encoder.layer.37.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 517 |
+
"bert.encoder.layer.37.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 518 |
+
"bert.encoder.layer.37.ln.bias": "model-00003-of-00004.safetensors",
|
| 519 |
+
"bert.encoder.layer.37.ln.weight": "model-00003-of-00004.safetensors",
|
| 520 |
+
"bert.encoder.layer.37.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 521 |
+
"bert.encoder.layer.37.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 522 |
+
"bert.encoder.layer.38.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 523 |
+
"bert.encoder.layer.38.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 524 |
+
"bert.encoder.layer.38.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 525 |
+
"bert.encoder.layer.38.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 526 |
+
"bert.encoder.layer.38.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 527 |
+
"bert.encoder.layer.38.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 528 |
+
"bert.encoder.layer.38.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 529 |
+
"bert.encoder.layer.38.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 530 |
+
"bert.encoder.layer.38.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 531 |
+
"bert.encoder.layer.38.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 532 |
+
"bert.encoder.layer.38.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 533 |
+
"bert.encoder.layer.38.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 534 |
+
"bert.encoder.layer.38.ln.bias": "model-00003-of-00004.safetensors",
|
| 535 |
+
"bert.encoder.layer.38.ln.weight": "model-00003-of-00004.safetensors",
|
| 536 |
+
"bert.encoder.layer.38.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 537 |
+
"bert.encoder.layer.38.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 538 |
+
"bert.encoder.layer.39.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 539 |
+
"bert.encoder.layer.39.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 540 |
+
"bert.encoder.layer.39.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 541 |
+
"bert.encoder.layer.39.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 542 |
+
"bert.encoder.layer.39.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 543 |
+
"bert.encoder.layer.39.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 544 |
+
"bert.encoder.layer.39.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 545 |
+
"bert.encoder.layer.39.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 546 |
+
"bert.encoder.layer.39.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 547 |
+
"bert.encoder.layer.39.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 548 |
+
"bert.encoder.layer.39.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 549 |
+
"bert.encoder.layer.39.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 550 |
+
"bert.encoder.layer.39.ln.bias": "model-00003-of-00004.safetensors",
|
| 551 |
+
"bert.encoder.layer.39.ln.weight": "model-00003-of-00004.safetensors",
|
| 552 |
+
"bert.encoder.layer.39.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 553 |
+
"bert.encoder.layer.39.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 554 |
+
"bert.encoder.layer.4.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 555 |
+
"bert.encoder.layer.4.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 556 |
+
"bert.encoder.layer.4.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 557 |
+
"bert.encoder.layer.4.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 558 |
+
"bert.encoder.layer.4.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 559 |
+
"bert.encoder.layer.4.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 560 |
+
"bert.encoder.layer.4.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 561 |
+
"bert.encoder.layer.4.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 562 |
+
"bert.encoder.layer.4.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 563 |
+
"bert.encoder.layer.4.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 564 |
+
"bert.encoder.layer.4.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 565 |
+
"bert.encoder.layer.4.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 566 |
+
"bert.encoder.layer.4.ln.bias": "model-00001-of-00004.safetensors",
|
| 567 |
+
"bert.encoder.layer.4.ln.weight": "model-00001-of-00004.safetensors",
|
| 568 |
+
"bert.encoder.layer.4.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 569 |
+
"bert.encoder.layer.4.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 570 |
+
"bert.encoder.layer.40.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 571 |
+
"bert.encoder.layer.40.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 572 |
+
"bert.encoder.layer.40.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 573 |
+
"bert.encoder.layer.40.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 574 |
+
"bert.encoder.layer.40.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 575 |
+
"bert.encoder.layer.40.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 576 |
+
"bert.encoder.layer.40.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 577 |
+
"bert.encoder.layer.40.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 578 |
+
"bert.encoder.layer.40.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 579 |
+
"bert.encoder.layer.40.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 580 |
+
"bert.encoder.layer.40.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 581 |
+
"bert.encoder.layer.40.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 582 |
+
"bert.encoder.layer.40.ln.bias": "model-00003-of-00004.safetensors",
|
| 583 |
+
"bert.encoder.layer.40.ln.weight": "model-00003-of-00004.safetensors",
|
| 584 |
+
"bert.encoder.layer.40.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 585 |
+
"bert.encoder.layer.40.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 586 |
+
"bert.encoder.layer.41.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 587 |
+
"bert.encoder.layer.41.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 588 |
+
"bert.encoder.layer.41.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 589 |
+
"bert.encoder.layer.41.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 590 |
+
"bert.encoder.layer.41.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 591 |
+
"bert.encoder.layer.41.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 592 |
+
"bert.encoder.layer.41.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 593 |
+
"bert.encoder.layer.41.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 594 |
+
"bert.encoder.layer.41.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 595 |
+
"bert.encoder.layer.41.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 596 |
+
"bert.encoder.layer.41.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 597 |
+
"bert.encoder.layer.41.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 598 |
+
"bert.encoder.layer.41.ln.bias": "model-00003-of-00004.safetensors",
|
| 599 |
+
"bert.encoder.layer.41.ln.weight": "model-00003-of-00004.safetensors",
|
| 600 |
+
"bert.encoder.layer.41.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 601 |
+
"bert.encoder.layer.41.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 602 |
+
"bert.encoder.layer.42.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 603 |
+
"bert.encoder.layer.42.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 604 |
+
"bert.encoder.layer.42.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 605 |
+
"bert.encoder.layer.42.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 606 |
+
"bert.encoder.layer.42.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 607 |
+
"bert.encoder.layer.42.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 608 |
+
"bert.encoder.layer.42.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 609 |
+
"bert.encoder.layer.42.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 610 |
+
"bert.encoder.layer.42.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 611 |
+
"bert.encoder.layer.42.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 612 |
+
"bert.encoder.layer.42.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 613 |
+
"bert.encoder.layer.42.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 614 |
+
"bert.encoder.layer.42.ln.bias": "model-00003-of-00004.safetensors",
|
| 615 |
+
"bert.encoder.layer.42.ln.weight": "model-00003-of-00004.safetensors",
|
| 616 |
+
"bert.encoder.layer.42.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 617 |
+
"bert.encoder.layer.42.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 618 |
+
"bert.encoder.layer.43.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 619 |
+
"bert.encoder.layer.43.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 620 |
+
"bert.encoder.layer.43.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 621 |
+
"bert.encoder.layer.43.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 622 |
+
"bert.encoder.layer.43.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 623 |
+
"bert.encoder.layer.43.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 624 |
+
"bert.encoder.layer.43.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 625 |
+
"bert.encoder.layer.43.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 626 |
+
"bert.encoder.layer.43.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 627 |
+
"bert.encoder.layer.43.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 628 |
+
"bert.encoder.layer.43.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 629 |
+
"bert.encoder.layer.43.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 630 |
+
"bert.encoder.layer.43.ln.bias": "model-00003-of-00004.safetensors",
|
| 631 |
+
"bert.encoder.layer.43.ln.weight": "model-00003-of-00004.safetensors",
|
| 632 |
+
"bert.encoder.layer.43.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 633 |
+
"bert.encoder.layer.43.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 634 |
+
"bert.encoder.layer.44.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 635 |
+
"bert.encoder.layer.44.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 636 |
+
"bert.encoder.layer.44.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 637 |
+
"bert.encoder.layer.44.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 638 |
+
"bert.encoder.layer.44.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 639 |
+
"bert.encoder.layer.44.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 640 |
+
"bert.encoder.layer.44.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 641 |
+
"bert.encoder.layer.44.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 642 |
+
"bert.encoder.layer.44.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 643 |
+
"bert.encoder.layer.44.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 644 |
+
"bert.encoder.layer.44.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 645 |
+
"bert.encoder.layer.44.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 646 |
+
"bert.encoder.layer.44.ln.bias": "model-00003-of-00004.safetensors",
|
| 647 |
+
"bert.encoder.layer.44.ln.weight": "model-00003-of-00004.safetensors",
|
| 648 |
+
"bert.encoder.layer.44.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 649 |
+
"bert.encoder.layer.44.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 650 |
+
"bert.encoder.layer.45.attention.ln.bias": "model-00003-of-00004.safetensors",
|
| 651 |
+
"bert.encoder.layer.45.attention.ln.weight": "model-00003-of-00004.safetensors",
|
| 652 |
+
"bert.encoder.layer.45.attention.output.dense.bias": "model-00003-of-00004.safetensors",
|
| 653 |
+
"bert.encoder.layer.45.attention.output.dense.weight": "model-00003-of-00004.safetensors",
|
| 654 |
+
"bert.encoder.layer.45.attention.self.key.bias": "model-00003-of-00004.safetensors",
|
| 655 |
+
"bert.encoder.layer.45.attention.self.key.weight": "model-00003-of-00004.safetensors",
|
| 656 |
+
"bert.encoder.layer.45.attention.self.query.bias": "model-00003-of-00004.safetensors",
|
| 657 |
+
"bert.encoder.layer.45.attention.self.query.weight": "model-00003-of-00004.safetensors",
|
| 658 |
+
"bert.encoder.layer.45.attention.self.value.bias": "model-00003-of-00004.safetensors",
|
| 659 |
+
"bert.encoder.layer.45.attention.self.value.weight": "model-00003-of-00004.safetensors",
|
| 660 |
+
"bert.encoder.layer.45.intermediate.dense.bias": "model-00003-of-00004.safetensors",
|
| 661 |
+
"bert.encoder.layer.45.intermediate.dense.weight": "model-00003-of-00004.safetensors",
|
| 662 |
+
"bert.encoder.layer.45.ln.bias": "model-00003-of-00004.safetensors",
|
| 663 |
+
"bert.encoder.layer.45.ln.weight": "model-00003-of-00004.safetensors",
|
| 664 |
+
"bert.encoder.layer.45.output.dense.bias": "model-00004-of-00004.safetensors",
|
| 665 |
+
"bert.encoder.layer.45.output.dense.weight": "model-00004-of-00004.safetensors",
|
| 666 |
+
"bert.encoder.layer.46.attention.ln.bias": "model-00004-of-00004.safetensors",
|
| 667 |
+
"bert.encoder.layer.46.attention.ln.weight": "model-00004-of-00004.safetensors",
|
| 668 |
+
"bert.encoder.layer.46.attention.output.dense.bias": "model-00004-of-00004.safetensors",
|
| 669 |
+
"bert.encoder.layer.46.attention.output.dense.weight": "model-00004-of-00004.safetensors",
|
| 670 |
+
"bert.encoder.layer.46.attention.self.key.bias": "model-00004-of-00004.safetensors",
|
| 671 |
+
"bert.encoder.layer.46.attention.self.key.weight": "model-00004-of-00004.safetensors",
|
| 672 |
+
"bert.encoder.layer.46.attention.self.query.bias": "model-00004-of-00004.safetensors",
|
| 673 |
+
"bert.encoder.layer.46.attention.self.query.weight": "model-00004-of-00004.safetensors",
|
| 674 |
+
"bert.encoder.layer.46.attention.self.value.bias": "model-00004-of-00004.safetensors",
|
| 675 |
+
"bert.encoder.layer.46.attention.self.value.weight": "model-00004-of-00004.safetensors",
|
| 676 |
+
"bert.encoder.layer.46.intermediate.dense.bias": "model-00004-of-00004.safetensors",
|
| 677 |
+
"bert.encoder.layer.46.intermediate.dense.weight": "model-00004-of-00004.safetensors",
|
| 678 |
+
"bert.encoder.layer.46.ln.bias": "model-00004-of-00004.safetensors",
|
| 679 |
+
"bert.encoder.layer.46.ln.weight": "model-00004-of-00004.safetensors",
|
| 680 |
+
"bert.encoder.layer.46.output.dense.bias": "model-00004-of-00004.safetensors",
|
| 681 |
+
"bert.encoder.layer.46.output.dense.weight": "model-00004-of-00004.safetensors",
|
| 682 |
+
"bert.encoder.layer.47.attention.ln.bias": "model-00004-of-00004.safetensors",
|
| 683 |
+
"bert.encoder.layer.47.attention.ln.weight": "model-00004-of-00004.safetensors",
|
| 684 |
+
"bert.encoder.layer.47.attention.output.dense.bias": "model-00004-of-00004.safetensors",
|
| 685 |
+
"bert.encoder.layer.47.attention.output.dense.weight": "model-00004-of-00004.safetensors",
|
| 686 |
+
"bert.encoder.layer.47.attention.self.key.bias": "model-00004-of-00004.safetensors",
|
| 687 |
+
"bert.encoder.layer.47.attention.self.key.weight": "model-00004-of-00004.safetensors",
|
| 688 |
+
"bert.encoder.layer.47.attention.self.query.bias": "model-00004-of-00004.safetensors",
|
| 689 |
+
"bert.encoder.layer.47.attention.self.query.weight": "model-00004-of-00004.safetensors",
|
| 690 |
+
"bert.encoder.layer.47.attention.self.value.bias": "model-00004-of-00004.safetensors",
|
| 691 |
+
"bert.encoder.layer.47.attention.self.value.weight": "model-00004-of-00004.safetensors",
|
| 692 |
+
"bert.encoder.layer.47.intermediate.dense.bias": "model-00004-of-00004.safetensors",
|
| 693 |
+
"bert.encoder.layer.47.intermediate.dense.weight": "model-00004-of-00004.safetensors",
|
| 694 |
+
"bert.encoder.layer.47.ln.bias": "model-00004-of-00004.safetensors",
|
| 695 |
+
"bert.encoder.layer.47.ln.weight": "model-00004-of-00004.safetensors",
|
| 696 |
+
"bert.encoder.layer.47.output.dense.bias": "model-00004-of-00004.safetensors",
|
| 697 |
+
"bert.encoder.layer.47.output.dense.weight": "model-00004-of-00004.safetensors",
|
| 698 |
+
"bert.encoder.layer.5.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 699 |
+
"bert.encoder.layer.5.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 700 |
+
"bert.encoder.layer.5.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 701 |
+
"bert.encoder.layer.5.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 702 |
+
"bert.encoder.layer.5.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 703 |
+
"bert.encoder.layer.5.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 704 |
+
"bert.encoder.layer.5.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 705 |
+
"bert.encoder.layer.5.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 706 |
+
"bert.encoder.layer.5.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 707 |
+
"bert.encoder.layer.5.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 708 |
+
"bert.encoder.layer.5.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 709 |
+
"bert.encoder.layer.5.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 710 |
+
"bert.encoder.layer.5.ln.bias": "model-00001-of-00004.safetensors",
|
| 711 |
+
"bert.encoder.layer.5.ln.weight": "model-00001-of-00004.safetensors",
|
| 712 |
+
"bert.encoder.layer.5.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 713 |
+
"bert.encoder.layer.5.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 714 |
+
"bert.encoder.layer.6.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 715 |
+
"bert.encoder.layer.6.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 716 |
+
"bert.encoder.layer.6.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 717 |
+
"bert.encoder.layer.6.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 718 |
+
"bert.encoder.layer.6.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 719 |
+
"bert.encoder.layer.6.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 720 |
+
"bert.encoder.layer.6.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 721 |
+
"bert.encoder.layer.6.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 722 |
+
"bert.encoder.layer.6.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 723 |
+
"bert.encoder.layer.6.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 724 |
+
"bert.encoder.layer.6.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 725 |
+
"bert.encoder.layer.6.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 726 |
+
"bert.encoder.layer.6.ln.bias": "model-00001-of-00004.safetensors",
|
| 727 |
+
"bert.encoder.layer.6.ln.weight": "model-00001-of-00004.safetensors",
|
| 728 |
+
"bert.encoder.layer.6.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 729 |
+
"bert.encoder.layer.6.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 730 |
+
"bert.encoder.layer.7.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 731 |
+
"bert.encoder.layer.7.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 732 |
+
"bert.encoder.layer.7.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 733 |
+
"bert.encoder.layer.7.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 734 |
+
"bert.encoder.layer.7.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 735 |
+
"bert.encoder.layer.7.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 736 |
+
"bert.encoder.layer.7.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 737 |
+
"bert.encoder.layer.7.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 738 |
+
"bert.encoder.layer.7.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 739 |
+
"bert.encoder.layer.7.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 740 |
+
"bert.encoder.layer.7.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 741 |
+
"bert.encoder.layer.7.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 742 |
+
"bert.encoder.layer.7.ln.bias": "model-00001-of-00004.safetensors",
|
| 743 |
+
"bert.encoder.layer.7.ln.weight": "model-00001-of-00004.safetensors",
|
| 744 |
+
"bert.encoder.layer.7.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 745 |
+
"bert.encoder.layer.7.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 746 |
+
"bert.encoder.layer.8.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 747 |
+
"bert.encoder.layer.8.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 748 |
+
"bert.encoder.layer.8.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 749 |
+
"bert.encoder.layer.8.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 750 |
+
"bert.encoder.layer.8.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 751 |
+
"bert.encoder.layer.8.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 752 |
+
"bert.encoder.layer.8.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 753 |
+
"bert.encoder.layer.8.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 754 |
+
"bert.encoder.layer.8.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 755 |
+
"bert.encoder.layer.8.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 756 |
+
"bert.encoder.layer.8.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 757 |
+
"bert.encoder.layer.8.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 758 |
+
"bert.encoder.layer.8.ln.bias": "model-00001-of-00004.safetensors",
|
| 759 |
+
"bert.encoder.layer.8.ln.weight": "model-00001-of-00004.safetensors",
|
| 760 |
+
"bert.encoder.layer.8.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 761 |
+
"bert.encoder.layer.8.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 762 |
+
"bert.encoder.layer.9.attention.ln.bias": "model-00001-of-00004.safetensors",
|
| 763 |
+
"bert.encoder.layer.9.attention.ln.weight": "model-00001-of-00004.safetensors",
|
| 764 |
+
"bert.encoder.layer.9.attention.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 765 |
+
"bert.encoder.layer.9.attention.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 766 |
+
"bert.encoder.layer.9.attention.self.key.bias": "model-00001-of-00004.safetensors",
|
| 767 |
+
"bert.encoder.layer.9.attention.self.key.weight": "model-00001-of-00004.safetensors",
|
| 768 |
+
"bert.encoder.layer.9.attention.self.query.bias": "model-00001-of-00004.safetensors",
|
| 769 |
+
"bert.encoder.layer.9.attention.self.query.weight": "model-00001-of-00004.safetensors",
|
| 770 |
+
"bert.encoder.layer.9.attention.self.value.bias": "model-00001-of-00004.safetensors",
|
| 771 |
+
"bert.encoder.layer.9.attention.self.value.weight": "model-00001-of-00004.safetensors",
|
| 772 |
+
"bert.encoder.layer.9.intermediate.dense.bias": "model-00001-of-00004.safetensors",
|
| 773 |
+
"bert.encoder.layer.9.intermediate.dense.weight": "model-00001-of-00004.safetensors",
|
| 774 |
+
"bert.encoder.layer.9.ln.bias": "model-00001-of-00004.safetensors",
|
| 775 |
+
"bert.encoder.layer.9.ln.weight": "model-00001-of-00004.safetensors",
|
| 776 |
+
"bert.encoder.layer.9.output.dense.bias": "model-00001-of-00004.safetensors",
|
| 777 |
+
"bert.encoder.layer.9.output.dense.weight": "model-00001-of-00004.safetensors",
|
| 778 |
+
"bert.encoder.ln.bias": "model-00004-of-00004.safetensors",
|
| 779 |
+
"bert.encoder.ln.weight": "model-00004-of-00004.safetensors",
|
| 780 |
+
"bert.pooler.dense.bias": "model-00004-of-00004.safetensors",
|
| 781 |
+
"bert.pooler.dense.weight": "model-00004-of-00004.safetensors",
|
| 782 |
+
"classifier.bias": "model-00004-of-00004.safetensors",
|
| 783 |
+
"classifier.weight": "model-00004-of-00004.safetensors"
|
| 784 |
+
}
|
| 785 |
+
}
|
requirements.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
torch
|
| 3 |
+
transformers
|
| 4 |
+
gradio
|
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,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": true,
|
| 45 |
+
"cls_token": "[CLS]",
|
| 46 |
+
"do_basic_tokenize": true,
|
| 47 |
+
"do_lower_case": true,
|
| 48 |
+
"extra_special_tokens": {},
|
| 49 |
+
"mask_token": "[MASK]",
|
| 50 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 51 |
+
"never_split": null,
|
| 52 |
+
"pad_token": "[PAD]",
|
| 53 |
+
"sep_token": "[SEP]",
|
| 54 |
+
"strip_accents": null,
|
| 55 |
+
"tokenize_chinese_chars": true,
|
| 56 |
+
"tokenizer_class": "BertTokenizer",
|
| 57 |
+
"unk_token": "[UNK]"
|
| 58 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a40d0839c4fc959d28536584361ec8c488b6c31f75aed3706787915c9adcfc5
|
| 3 |
+
size 5841
|
vocab.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|