Replies: 2 comments 1 reply
-
|
This looks like a filesystem path problem during the final write, not a safetensors format problem.
If that works, the problem is the pwd
ls -la Output
mkdir -p Output/gemma3-4b-editedThen try without the trailing slash: Two other things worth checking:
If it still fails, the useful detail for the maintainer would be the current working directory, the absolute output path you expect, and whether If this solves it, please mark this comment as the answer so other people can find it faster. |
Beta Was this translation helpful? Give feedback.
-
|
That extra detail changes the diagnosis a bit: the output directory is writable, because Larql creates the temporary/hidden folder and starts writing files. The failure is probably happening while the exporter is reading or materializing one of the expected model files, then it cleans up the partial output directory after the exception. Since you used
Also try one run with a very short absolute output path to rule out quoting/path-length issues: If ProcMon shows a specific missing |
Beta Was this translation helpful? Give feedback.



Uh oh!
There was an error while loading. Please reload this page.
-
Hi there,
I'm trying to export the vindex back to safetensors by running:
larql> COMPILE CURRENT INTO MODEL "Output/gemma3-4b-edited/" FORMAT safetensors;
But it returns: Error: Execution error: failed to write model: IO error: No such file or directory (os error 2)
Does anyone is having this error? I have tried all sort of combinations of steps. The folder exists.
Hope someone can help me,
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions