File size: 538 Bytes
4a188dd
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
$ErrorActionPreference = 'Stop'
$prompts = Get-Content -LiteralPath 'reports\ggufx_purecode_latest\gguf_evo_eval_prompts.jsonl' | ForEach-Object { $_ | ConvertFrom-Json }
$out = @()
foreach ($p in $prompts) {
  $raw = ollama run tinymind-rawzero-fusion $p.prompt
  $evo = ollama run tinymind-ggufx-purecode $p.prompt
  $out += [ordered]@{ id=$p.id; prompt=$p.prompt; rawzero=$raw; evo=$evo; checks=$p.checks }
}
$out | ConvertTo-Json -Depth 8 | Set-Content -Path 'reports\ggufx_purecode_latest\rawzero_vs_evo_outputs.json' -Encoding UTF8