-
Notifications
You must be signed in to change notification settings - Fork 1
/
calcluate_loss_samples_distribution.py
49 lines (44 loc) · 1.53 KB
/
calcluate_loss_samples_distribution.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import transformers
from datasets import load_dataset
import torch
import heapq
raw_datasets = load_dataset("c4", "en", cache_dir='/mnt/Data/xuxi/datasets', split="train", streaming=True)
for item in raw_datasets:
print(item)
break
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained('facebook/opt-125m')
def tokenize_function(examples):
data = tokenizer(examples["text"], padding=True, truncation=True, max_length=2048)
return data
tokenized_datasets = raw_datasets.map(tokenize_function, batched=True)
tokenized_datasets = tokenized_datasets.remove_columns(["url", "timestamp"])
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("facebook/opt-125m").cuda()
torch.manual_seed(1)
torch.cuda.manual_seed(1)
train_dataloader = torch.utils.data.DataLoader(tokenized_datasets, batch_size=1)
from tqdm import tqdm
losses = []
h = []
capacity = 1000
import pandas as pd
losses = []
with torch.no_grad():
for i, batch in enumerate(tqdm(train_dataloader)):
text = batch['text'][0]
del batch['text']
batch = {k: torch.tensor(v).cuda().unsqueeze(0) for k, v in batch.items()}
batch['labels'] = batch['input_ids']
outputs = model(**batch)
loss = outputs.loss
losses.append(loss.item())
if i > 10000:
break
import matplotlib.pyplot as plt
import pickle
with open('baseline_loss.txt', "w") as f:
f.write(','.join(list(map(str, losses))))
plt.figure(figsize=(6, 6))
plt.hist(losses)
plt.savefig("baseline.png")