Spaces:
No application file
No application file
File size: 1,091 Bytes
0d3411a |
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 |
import streamlit as st
import torch
from transformers import GPT2LMHeadModel, GPT2Tokenizer
model_name_or_path = "sberbank-ai/rugpt3small_based_on_gpt2"
tokenizer = GPT2Tokenizer.from_pretrained(model_name_or_path)
model = GPT2LMHeadModel.from_pretrained(
model_name_or_path,
output_attentions = False,
output_hidden_states = False,
)
# Загрузка сохраненных весов
model_weights_path = "/home/tata/DS_bootcamp/ds-phase-2/10-nlp/project4/hunter_generator.pt"
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
model.load_state_dict(torch.load(model_weights_path, map_location=device))
model.eval()
def generate_text(user_input, model=model, tokenizer=tokenizer):
input_ids = tokenizer.encode(user_input, return_tensors="pt")
with torch.no_grad():
out = model.generate(
input_ids,
do_sample=True,
num_beams=3,
temperature=1.05,
top_p=.8,
max_length=50,
)
generated_text = list(map(tokenizer.decode, out))[0]
return generated_text
|