Text Generation
PEFT
Safetensors
English
pyspark
data-engineering
code-generation
qlora
lora
delta-lake
conversational
Instructions to use hoodarunner/pyspark-coding-assistant-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use hoodarunner/pyspark-coding-assistant-lora with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-Instruct-v0.3") model = PeftModel.from_pretrained(base_model, "hoodarunner/pyspark-coding-assistant-lora") - Notebooks
- Google Colab
- Kaggle
File size: 8,335 Bytes
de46078 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | """Task schema, loading, and validation.
A task is a YAML file. The contract is deliberately narrow so that a task is
cheap to write by hand and impossible to score ambiguously:
- `fixtures` declare the input DataFrames by schema + literal rows. They are
small, deterministic, and committed to the repo. No network, no generated
data, no randomness.
- `prompt` is what the model sees. It names the fixtures and states the
required entrypoint signature.
- `solution` is reference PySpark that a human wrote and that the harness
executes to produce the expected output. There is no hardcoded expected
table anywhere -- expected output is *computed*, so a fixture edit can
never silently desynchronise from a stale golden file.
- `compare` says how to judge equality. Default is order-insensitive rows
plus exact schema.
Every task must define `solve(spark, **frames) -> DataFrame`.
"""
from __future__ import annotations
import re
from dataclasses import dataclass, field
from pathlib import Path
from typing import Any, Literal
import yaml
CATEGORIES = {
"joins",
"windows",
"aggregations",
"schema_nested",
"udf_vs_native",
"nulls_types",
"sql_translation",
"delta_merge",
}
DIFFICULTIES = {"easy", "medium", "hard"}
_ID_RE = re.compile(r"^[a-z0-9]+(?:_[a-z0-9]+)*$")
class TaskValidationError(ValueError):
"""Raised when a task file is structurally invalid."""
@dataclass(frozen=True)
class Fixture:
"""One input DataFrame, defined literally.
`schema` is a Spark DDL string (e.g. "id INT, name STRING"). We use DDL
rather than inferring from rows because inference silently changes types
when a column happens to be all-null in the sample, and null handling is
one of the things this benchmark is trying to measure.
"""
name: str
schema: str
rows: list[list[Any]]
def __post_init__(self) -> None:
if not self.name.isidentifier():
raise TaskValidationError(
f"fixture name {self.name!r} is not a valid Python identifier"
)
if not self.schema.strip():
raise TaskValidationError(f"fixture {self.name!r} has an empty schema")
@dataclass(frozen=True)
class Compare:
"""How to decide whether a candidate result matches the reference."""
# "rows" -> order-insensitive multiset comparison (the default; most tasks
# do not specify an order, so requiring one would fail correct code)
# "ordered_rows" -> order matters (use when the prompt explicitly asks for
# a sort, e.g. window/top-n tasks)
mode: Literal["rows", "ordered_rows"] = "rows"
# Exact schema match (names, types, nullability-insensitive). Turning this
# off is a deliberate loosening -- record why in the task file.
check_schema: bool = True
# Column names must match exactly and in order. Off means we compare on the
# set of columns, useful when the prompt does not pin an output column order.
check_column_order: bool = False
# Absolute tolerance for float/double columns. Spark's floating point
# aggregation order is not deterministic across partitions, so exact
# equality on doubles is a flaky-test generator.
float_tolerance: float = 1e-9
@dataclass(frozen=True)
class Task:
id: str
category: str
difficulty: str
prompt: str
fixtures: list[Fixture]
solution: str
compare: Compare = field(default_factory=Compare)
# Free-text note on what this task is actually probing. Shows up in the
# per-category failure report; the point of the benchmark is diagnosis,
# not just a number.
probes: str = ""
tags: list[str] = field(default_factory=list)
source_path: Path | None = None
@property
def fixture_names(self) -> list[str]:
return [f.name for f in self.fixtures]
def _require(data: dict, key: str, path: Path, type_: type) -> Any:
if key not in data:
raise TaskValidationError(f"{path}: missing required key {key!r}")
value = data[key]
if not isinstance(value, type_):
raise TaskValidationError(
f"{path}: key {key!r} must be {type_.__name__}, got {type(value).__name__}"
)
return value
def load_task(path: Path) -> Task:
"""Parse and validate a single task file."""
with path.open() as fh:
raw = yaml.safe_load(fh)
if not isinstance(raw, dict):
raise TaskValidationError(f"{path}: top level must be a mapping")
task_id = _require(raw, "id", path, str)
if not _ID_RE.match(task_id):
raise TaskValidationError(
f"{path}: id {task_id!r} must be lower_snake_case"
)
category = _require(raw, "category", path, str)
if category not in CATEGORIES:
raise TaskValidationError(
f"{path}: unknown category {category!r}; expected one of {sorted(CATEGORIES)}"
)
difficulty = raw.get("difficulty", "medium")
if difficulty not in DIFFICULTIES:
raise TaskValidationError(
f"{path}: difficulty {difficulty!r} must be one of {sorted(DIFFICULTIES)}"
)
prompt = _require(raw, "prompt", path, str).strip()
solution = _require(raw, "solution", path, str)
raw_fixtures = _require(raw, "fixtures", path, list)
if not raw_fixtures:
raise TaskValidationError(f"{path}: at least one fixture is required")
fixtures = []
for item in raw_fixtures:
if not isinstance(item, dict):
raise TaskValidationError(f"{path}: each fixture must be a mapping")
fixtures.append(
Fixture(
name=_require(item, "name", path, str),
schema=_require(item, "schema", path, str),
rows=[list(r) for r in _require(item, "rows", path, list)],
)
)
names = [f.name for f in fixtures]
if len(set(names)) != len(names):
raise TaskValidationError(f"{path}: duplicate fixture names in {names}")
raw_compare = raw.get("compare") or {}
if not isinstance(raw_compare, dict):
raise TaskValidationError(f"{path}: 'compare' must be a mapping")
unknown = set(raw_compare) - {
"mode",
"check_schema",
"check_column_order",
"float_tolerance",
}
if unknown:
raise TaskValidationError(f"{path}: unknown compare keys {sorted(unknown)}")
compare = Compare(**raw_compare)
if compare.mode not in ("rows", "ordered_rows"):
raise TaskValidationError(f"{path}: invalid compare.mode {compare.mode!r}")
# The reference solution has to honour the same contract we ask of models.
if "def solve(" not in solution:
raise TaskValidationError(
f"{path}: solution must define solve(spark, ...); "
"the harness calls it by name"
)
# A prompt that does not mention a fixture is a prompt the model cannot
# answer. This has caught more authoring bugs than any other check.
for name in names:
if name not in prompt:
raise TaskValidationError(
f"{path}: fixture {name!r} is never mentioned in the prompt"
)
return Task(
id=task_id,
category=category,
difficulty=difficulty,
prompt=prompt,
fixtures=fixtures,
solution=solution,
compare=compare,
probes=raw.get("probes", ""),
tags=list(raw.get("tags", [])),
source_path=path,
)
def load_tasks(
root: Path,
categories: list[str] | None = None,
ids: list[str] | None = None,
) -> list[Task]:
"""Load every task under `root`, optionally filtered.
Sorted by id so that runs are reproducible and diffable.
"""
paths = sorted(root.rglob("*.yaml")) + sorted(root.rglob("*.yml"))
tasks = [load_task(p) for p in paths]
seen: dict[str, Path] = {}
for t in tasks:
if t.id in seen:
raise TaskValidationError(
f"duplicate task id {t.id!r} in {t.source_path} and {seen[t.id]}"
)
seen[t.id] = t.source_path # type: ignore[assignment]
if categories:
tasks = [t for t in tasks if t.category in set(categories)]
if ids:
tasks = [t for t in tasks if t.id in set(ids)]
return sorted(tasks, key=lambda t: t.id)
|