Built by
Sameer Nadeem — BS Data Science student, Bahawalpur, Pakistan.
SciPeerAI-7B analyzes scientific papers and outputs a structured JSON report covering 14 fraud dimensions simultaneously — something no other model does.
1from transformers import AutoTokenizer, AutoModelForCausalLM
2from peft import PeftModel
3import torch
4
5base = "mistralai/Mistral-7B-Instruct-v0.3"
6adapter = "Abu-Sameer-66/SciPeerAI-7B"
7
8tokenizer = AutoTokenizer.from_pretrained(base)
9model = AutoModelForCausalLM.from_pretrained(base, torch_dtype=torch.float16, device_map="auto")
10model = PeftModel.from_pretrained(model, adapter)
11
12prompt = """<s>[INST] Analyze this scientific paper for fraud and integrity issues:
13
14Title: Your Paper Title
15Authors: Author Names
16Year: 2024
17Journal: Journal Name
18Abstract: Your abstract text here...
19
20Provide a detailed JSON analysis with fraud scores across all 14 dimensions. [/INST]
21"""
22
23inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
24output = model.generate(**inputs, max_new_tokens=300, do_sample=False)
25print(tokenizer.decode(output[0], skip_special_tokens=True))
1@misc{nadeem2026scipeerai,
2 title={SciPeerAI: Multi-dimensional Automated Scientific Integrity Analysis System},
3 author={Sameer Nadeem},
4 year={2026},
5 url={https://huggingface.co/Abu-Sameer-66/SciPeerAI-7B}
6}