You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

🧠 Fine-Tuned Argumentation Model

πŸ”₯ Fine-Tuned LLM for Computational Argumentation using Quantitative Bipolar Argumentation Framework (QBAF)!

βœ… Enhances LLM outputs using argumentation logic & belief theory
βœ… Evaluates claims based on supporting & opposing arguments
βœ… Useful for AI-based debate systems, legal reasoning & NLP research

πŸ”— Model Page: https://huggingface.co/debanganghosh/primus-fined-tuned-llm


πŸ“¦ Installation

To use this model, install the required dependencies:

pip install transformers torch huggingface_hub

If you're using a GPU for acceleration, install CUDA for PyTorch:

pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118

πŸ› οΈ How to Use

You can use this model for argument evaluation and text-based reasoning in Python.

πŸ”Ή Load the Model

from transformers import AutoModelForCausalLM, AutoTokenizer

MODEL_NAME = "YOUR_USERNAME/YOUR_MODEL_NAME"

# Load model and tokenizer
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)
model = AutoModelForCausalLM.from_pretrained(MODEL_NAME)

πŸ“ Generate Arguments

prompt = "Should AI be regulated for ethical reasons?"
inputs = tokenizer(prompt, return_tensors="pt")

# Generate response
output = model.generate(**inputs, max_new_tokens=150)

# Decode and print
print(tokenizer.decode(output[0], skip_special_tokens=True))

πŸ’‘ Suggested Prompts

Here are some example prompts you can try:

πŸ“Œ "Does climate change require immediate policy intervention?"
πŸ“Œ "Should cryptocurrencies be regulated by governments?"
πŸ“Œ "Is remote work better than office work?"
πŸ“Œ "Can AI replace human decision-making in law?"
πŸ“Œ "Should social media platforms be held accountable for misinformation?"
πŸ“Œ "Are electric vehicles truly better for the environment?"
πŸ“Œ "Does universal healthcare improve quality of life?"
πŸ“Œ "Should students be allowed to use AI for academic purposes?"
πŸ“Œ "Is space exploration worth the investment?"
πŸ“Œ "Can democracy survive in the digital age?"


πŸš€ Uploading & Sharing the Model

If you want to fine-tune and push updates to the model, use:

from huggingface_hub import notebook_login
notebook_login()

model.push_to_hub("YOUR_USERNAME/YOUR_MODEL_NAME")
tokenizer.push_to_hub("YOUR_USERNAME/YOUR_MODEL_NAME")

πŸ“ License & Contribution

πŸ“œ License: MIT
🀝 Contributions: Feel free to fork and improve this model!


✨ Enjoy using this fine-tuned argumentation model! πŸš€
Let me know if you need any modifications! 🎯

Downloads last month
2
Safetensors
Model size
124M params
Tensor type
F32
Β·
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.

Model tree for debanganghosh/primus-fined-tuned-llm

Finetuned
(1469)
this model