| product_id |
Code-gen |
0 |
0 |
0 |
— |
HIT |
View generated functiondef generate_product_id(row, col_name):
return row.name + 1 |
| category |
Code-gen |
0 |
0 |
0 |
— |
HIT |
View generated functiondef generate_category(row, col_name):
import random
return random.choice(['Electronics', 'Clothing', 'Home & Garden', 'Sports & Outdoors', 'Books', 'Toys & Games']) |
| brand |
Code-gen |
0 |
0 |
0 |
— |
HIT |
View generated functiondef generate_brand(row, col_name):
import random
import string
brands = ['TechCorp', 'StyleMax', 'HomeElite', 'OutdoorPro', 'PageTurner', 'FunPlay', 'VisionTech', 'ComfortWear', 'GreenSpace', 'AdventureGear']
return random.choice(brands) |
| price |
Code-gen |
0 |
0 |
0 |
— |
HIT |
View generated functiondef generate_price(row, col_name):
import random
return round(random.uniform(4.99, 999.99), 2) |
| stock_qty |
Code-gen |
0 |
0 |
0 |
— |
HIT |
View generated functiondef generate_stock_qty(row, col_name):
import random
return random.randint(0, 500) |
| product_name |
Code-gen |
0 |
0 |
0 |
— |
HIT |
View generated functiondef generate_product_name(row, col_name):
import random
adjectives = ['Premium', 'Deluxe', 'Professional', 'Advanced', 'Smart', 'Eco-Friendly', 'Ultra', 'Classic', 'Modern', 'Compact']
nouns = ['Widget', 'Device', 'System', 'Tool', 'Pack', 'Set', 'Bundle', 'Collection', 'Gear', 'Essentials']
words = [random.choice(adjectives), random.choice(nouns)]
if random.random() > 0.5:
descriptors = ['Pro', 'Max', 'Plus', 'Elite', 'Lite']
words.append(random.choice(descriptors))
name = ' '.join(words)
return name[:80] |
| tagline |
Semantic LLM |
12 |
9,012 |
5,513 |
$0.03658 |
|
|
| description |
Semantic LLM |
12 |
9,000 |
28,726 |
$0.15263 |
|
|