answer-evaluation-app / utils /xlnet_model.py
yeswanthvarma's picture
Update utils/xlnet_model.py
7aeb013 verified
raw
history blame
2.6 kB
import os
import torch
import numpy as np
from torch import nn
from transformers import XLNetModel, XLNetTokenizer
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.metrics.pairwise import cosine_similarity
from huggingface_hub import hf_hub_download
# Set Hugging Face cache directory
os.environ["HF_HOME"] = "/tmp/huggingface"
# Download model weights from Hugging Face Hub
MODEL_PATH = hf_hub_download(
repo_id="yeswanthvarma/xlnet-evaluator-model",
filename="xlnet_answer_assessment_model.pt"
)
# Define your custom model
class XLNetAnswerAssessmentModel(nn.Module):
def __init__(self):
super().__init__()
self.xlnet = XLNetModel.from_pretrained("xlnet-base-cased")
hidden = 768
self.fc1 = nn.Linear(hidden, 256)
self.fc2 = nn.Linear(256, 64)
self.output = nn.Linear(64, 1) # ← Change from `self.out` to `self.output`
def forward(self, input_ids, attention_mask=None):
pooled = self.xlnet(input_ids, attention_mask).last_hidden_state.mean(1)
x = torch.relu(self.fc1(pooled))
x = torch.relu(self.fc2(x))
return torch.sigmoid(self.output(x)) # ← And change here too
# Initialize model and tokenizer
xlnet_available = False
try:
tokenizer = XLNetTokenizer.from_pretrained("xlnet-base-cased")
model = XLNetAnswerAssessmentModel()
model.load_state_dict(torch.load(MODEL_PATH, map_location="cpu"))
model.eval()
xlnet_available = True
print("✅ Custom XLNet model loaded.")
except Exception as e:
print("⚠️ Could not load XLNet model → fallback to TF‑IDF\n", e)
# -------------------------------
# Scoring logic
# -------------------------------
def get_model_prediction(q, s, r):
if not xlnet_available:
raise ValueError("XLNet unavailable")
combined = f"{q} [SEP] {s} [SEP] {r}"
inputs = tokenizer(combined, return_tensors="pt", truncation=True, max_length=512, padding=True)
with torch.no_grad():
score = float(model(**inputs).squeeze()) * 100
return round(score)
def tfidf_similarity(t1, t2):
vec = TfidfVectorizer()
mat = vec.fit_transform([t1, t2])
return round(cosine_similarity(mat[0], mat[1])[0][0] * 100)
def fallback_similarity(t1, t2):
w1, w2 = set(t1.lower().split()), set(t2.lower().split())
return round(len(w1 & w2) / len(w1 | w2) * 100) if w1 and w2 else 0
def get_similarity_score(q, s, r):
try:
return get_model_prediction(q, s, r) if xlnet_available else tfidf_similarity(s, r)
except Exception:
return fallback_similarity(s, r)