Views
No views yet
1from transformers import pipeline
2
3description = """
4Title: Excess V2 Distortion/Modulation Pedal
5Category: Music Pedals
6Brand: Old Blood Noise
7Description: A versatile pedal offering distortion and three modulation modes—delay, chorus, and harmonized fifths—with full control over signal routing and expression.
8Details: Features include separate gain, tone, and volume controls; time, depth, and volume per modulation; order switching, soft‑touch bypass, and expression jack for dynamic control.
9
10Price is $
11"""
12question = "What does this cost to the nearest dollar? \n\n{description}"
13generator = pipeline("text-generation", model="Manjot13-AI/price-2026-02-13_22.27.53-lite", device="cuda")
14output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
15print(output["generated_text"])1@misc{vonwerra2022trl,
2 title = {{TRL: Transformer Reinforcement Learning}},
3 author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
4 year = 2020,
5 journal = {GitHub repository},
6 publisher = {GitHub},
7 howpublished = {\url{https://github.com/huggingface/trl}}
8}