Views
No views yet
1from unsloth import FastLanguageModel
2
3model, tokenizer = FastLanguageModel.from_pretrained(
4 model_name="models/lfm-2.5-1.2b-instruct_for_sys_review",
5 max_seq_length=4096,
6)
7FastLanguageModel.for_inference(model)
8
9prompt = """Assess inclusion for the review.
10Title: 'ChatGPT as a Software Development Bot: A Project-Based Study'.
11Abstract: The study examines ChatGPT as a support tool for undergraduate
12software development projects and evaluates learning outcomes.
13Output 0 or 1."""
14
15messages = [{"role": "user", "content": prompt}]
16inputs = tokenizer.apply_chat_template(
17 messages,
18 add_generation_prompt=True,
19 return_tensors="pt",
20 tokenize=True,
21 return_dict=True,
22).to("cuda")
23
24output = model.generate(**inputs, max_new_tokens=64, temperature=0.0)
25print(tokenizer.decode(output[0], skip_special_tokens=True))1@misc{llm_systematic_review_2026,
2 title = {LLM Systematic Review Classifier},
3 author = {Intelligent Agents Research Group},
4 year = {2026},
5 howpublished = {\url{https://github.com/Intelligent-Agents-Research-Group/llm_systematic_review}}
6}