Text Generation
Transformers
Safetensors
English
bart
text2text-generation
style-transfer
rewriting
humanization
seq2seq
evaluation
bertscore
rouge
chrf
Instructions to use cive202/humanize-ai-text-bart-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cive202/humanize-ai-text-bart-large with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cive202/humanize-ai-text-bart-large")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("cive202/humanize-ai-text-bart-large") model = AutoModelForSeq2SeqLM.from_pretrained("cive202/humanize-ai-text-bart-large") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use cive202/humanize-ai-text-bart-large with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cive202/humanize-ai-text-bart-large" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cive202/humanize-ai-text-bart-large", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/cive202/humanize-ai-text-bart-large
- SGLang
How to use cive202/humanize-ai-text-bart-large with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "cive202/humanize-ai-text-bart-large" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cive202/humanize-ai-text-bart-large", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "cive202/humanize-ai-text-bart-large" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cive202/humanize-ai-text-bart-large", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use cive202/humanize-ai-text-bart-large with Docker Model Runner:
docker model run hf.co/cive202/humanize-ai-text-bart-large
Update README.md
Browse files
README.md
CHANGED
|
@@ -38,11 +38,14 @@ Fine-tuned **BART-large** (`facebook/bart-large`) for **AI → Human rewriting**
|
|
| 38 |
### Citation
|
| 39 |
|
| 40 |
```bibtex
|
| 41 |
-
@
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
|
|
|
|
|
|
|
|
|
| 46 |
}
|
| 47 |
```
|
| 48 |
|
|
|
|
| 38 |
### Citation
|
| 39 |
|
| 40 |
```bibtex
|
| 41 |
+
@misc{paneru2026makesoundlikehuman,
|
| 42 |
+
title={Please Make it Sound like Human: Encoder-Decoder vs. Decoder-Only Transformers for AI-to-Human Text Style Transfer},
|
| 43 |
+
author={Utsav Paneru},
|
| 44 |
+
year={2026},
|
| 45 |
+
eprint={2604.11687},
|
| 46 |
+
archivePrefix={arXiv},
|
| 47 |
+
primaryClass={cs.CL},
|
| 48 |
+
url={https://arxiv.org/abs/2604.11687},
|
| 49 |
}
|
| 50 |
```
|
| 51 |
|