Views
No views yet
t5-base and has 223 million parameters. It has been fine-tuned on the Amazon Product Dataset, which contains 10 million examples, with the cleaned version having 0.5 million examples.1from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
2import torch
3
4device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
5tokenizer = AutoTokenizer.from_pretrained("Ateeqq/product-description-generator")
6model = AutoModelForSeq2SeqLM.from_pretrained("Ateeqq/product-description-generator").to(device)
7
8def generate_description(title):
9 input_ids = tokenizer(f'description: {title}', return_tensors="pt", padding="longest", truncation=True, max_length=128).input_ids.to(device)
10 outputs = model.generate(
11 input_ids,
12 num_beams=5,
13 num_beam_groups=5,
14 num_return_sequences=5,
15 repetition_penalty=10.0,
16 diversity_penalty=3.0,
17 no_repeat_ngram_size=2,
18 temperature=0.7,
19 max_length=128
20 )
21 return tokenizer.batch_decode(outputs, skip_special_tokens=True)
22
23title = '18-Piece Kitchen Dinnerware white Set, Plates, Dishes, Bowls'
24generate_description(title)['18-Piece Kitchen Dinnerware White Set, Plates, Dishes and Bowls. This set includes a large bowl with two plates for serving dinner or dessert dishes in the kitchen. The white plate is made of durable stainless steel that will not fade over time.',
'The 18 Piece Kitchen Dinnerware Set features a white plate, dish and bowl. This set is made of durable stainless steel with an elegant design that will add elegance to your kitchen.',
'This 18-piece dinnerware set is made of durable stainless steel. It features a white finish and comes with an easy to clean handle for ease of cleaning. The bowls are dishwasher safe, microwave safe or can be used as tablecloths in the kitchen.',
'Kitchen Dinnerware is a great addition to your kitchen. This 18-piece set includes four plates, two dishes and three bowls for serving food or beverages in the dining room with an elegant design that will add sophistication to any tabletop setting.',
"18-Piece Kitchen Dinnerware White Set, Plates & DisheSize(LxW) Size (HXD), Material is made of high quality stainless steel and the bowl has an elegant design. The dish set includes 1 plate with 2 plates; 3 dishes for 4 cups or 6 serving spoon/bowl 2. This dinner table sets are perfect to serve your food in style while also being easy on clean up 3. These white kitchen dining tables have been designed by professional chefs using only premium materials that will not scratch surfaces 4. Easy cleaning dishwasher safe 5. Durable material can be used as disposable wash cloth 6. Perfect gift idea For family members who love cooking."]trainvalidation