This commit is contained in:
wassname
2026-05-08 16:06:41 +08:00
parent b20ec56a09
commit 845484483d
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -1,7 +1,6 @@
# smoke test: download + 5-item rewrite + 5-item forced-choice eval
# smoke test: 5-item forced-choice eval on existing classic data
smoke:
uv run python scripts/01_download.py
uv run python scripts/02_rewrite.py --limit 5
uv run python scripts/09_forced_choice.py --model Qwen/Qwen3-0.6B --limit 5 2>&1 | tee logs_smoke.log
# full rewrite via OpenRouter (one-time, cached on disc)
+1 -1
View File
@@ -12,7 +12,7 @@ import httpx
from loguru import logger
URL = "https://raw.githubusercontent.com/peterkirgis/llm-moral-foundations/main/data/survey/vignettes.csv"
OUT = Path(__file__).resolve().parents[1] / "data" / "vignettes.csv"
OUT = Path(__file__).resolve().parents[1] / "data" / "vignettes_classic.csv"
def main() -> None: