Views
No views yet
text2text-generation model designed to rewrite AI-generated text to sound entirely human. Built on the highly efficient T5 architecture and quantized to 8-bit precision using bitsandbytes, this model is explicitly fine-tuned to bypass AI detectors while strictly preserving domain-specific meaning, legal citations, and professional tone.bitsandbytes), reducing VRAM requirements drastically. It runs lightning-fast on cheap consumer GPUs (like the NVIDIA T4) with zero degradation in output quality.bitsandbytes, you can load it instantly with Hugging Face transformers.pip install transformers accelerate bitsandbytes1from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
2
3model_id = "WhiteRoomProdigy/amicus-humanizer-v1"
4
5# Load the tokenizer and 8-bit model
6tokenizer = AutoTokenizer.from_pretrained(model_id)
7model = AutoModelForSeq2SeqLM.from_pretrained(model_id, load_in_8bit=True, device_map="auto")
8
9# Input text (e.g., rigid AI-generated legal text)
10input_text = "Furthermore, it is important to note that the plaintiff failed to establish a breach of contract."
11
12# Tokenize and Generate
13inputs = tokenizer(input_text, return_tensors="pt").to("cuda")
14outputs = model.generate(**inputs, max_length=512, do_sample=True, temperature=0.7)
15
16# Decode the humanized output
17humanized_text = tokenizer.decode(outputs[0], skip_special_tokens=True)
18print(humanized_text)bitsandbytes)