Views
No views yet
thlurte/VSG-lite-1.5k dataset. It functions as a zero-shot High-Throughput Vectorized Data Compiler — translating dataset schema requirements into 100% vectorized, loop-free NumPy and Pandas execution graphs.unsloth/Qwen2.5-Coder-7B-Instruct-bnb-4bitthlurte/VSG-lite-1.5k.apply(), .iterrows(), and all for/while row-level iteration.1from unsloth import FastLanguageModel
2
3model, tokenizer = FastLanguageModel.from_pretrained(
4 model_name = "thlurte/FastData-LM-7B-SFT",
5 max_seq_length = 2048,
6 load_in_4bit = True,
7)
8
9messages = [
10 {"role": "system", "content": "You are a zero-shot Python Data Compiler. Generate 100% vectorized NumPy/Pandas code."},
11 {"role": "user", "content": "Generate a synthetic bank ledger dataset with entry_id, balance, and transaction_type."}
12]
13
14prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
15inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
16outputs = model.generate(**inputs, max_new_tokens=1024)
17print(tokenizer.decode(outputs[0], skip_special_tokens=True))