Instructions to use Vino1502/scihigh-2026-task2-bart with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Vino1502/scihigh-2026-task2-bart with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "summarization" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("summarization", model="Vino1502/scihigh-2026-task2-bart")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Vino1502/scihigh-2026-task2-bart") model = AutoModelForSeq2SeqLM.from_pretrained("Vino1502/scihigh-2026-task2-bart", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 2,010 Bytes
52b66ae 36d2267 52b66ae | 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | ---
base_model: facebook/bart-large
library_name: transformers
pipeline_tag: summarization
language:
- en
tags:
- base_model:facebook/bart-large
- transformers
- bart
- scihigh-2026
- task2
---
# Fine-Tuned BART-Large for SciHigh 2026 (Task 2)
This repository contains a fine-tuned **BART-Large** model trained specifically for the **SciHigh 2026 (Subtask 2)** competition to automatically generate concise and accurate scientific titles given research paper abstracts.
## Model Details
- **Developed by:** Vino1502
- **Model Type:** Sequence-to-Sequence (Seq2Seq) Transformer
- **Language:** English
- **Base Model:** `facebook/bart-large`
- **Task:** Scientific Abstract-to-Title Generation (SciHigh 2026 - Subtask 2)
## Uses
### Direct Use
This model is intended for scientific title generation. Given a research paper abstract as input, the model generates a concise scientific title summarizing the abstract's core findings.
## How to Get Started with the Model
You can load and run inference directly with this model using the following code:
```python
import torch
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
# Configuration
MODEL_REPO_ID = "Vino1502/scihigh-2026-task2-bart"
# Load Tokenizer & Model directly from HF Hub
tokenizer = AutoTokenizer.from_pretrained(MODEL_REPO_ID)
model = AutoModelForSeq2SeqLM.from_pretrained(
MODEL_REPO_ID,
dtype=torch.float16 if torch.cuda.is_available() else torch.float32,
device_map="auto"
)
model.eval()
# Sample Inference
abstract_text = "Your scientific abstract goes here..."
# Tokenize and place tensors on the model's device
inputs = tokenizer(
abstract_text,
return_tensors="pt",
max_length=512,
truncation=True
).to(model.device)
with torch.no_grad():
outputs = model.generate(
**inputs,
max_length=64,
num_beams=2,
early_stopping=True
)
predicted_title = tokenizer.decode(outputs[0], skip_special_tokens=True)
print("Predicted Title:", predicted_title) |