You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi!
Windows 11
when I'm installing version Llama3.2-3B-Instruct:int4-qlora-eo8
I get an error NotADirectoryError: [WinError 267] The directory name is invalid: because of the colon ":" in the name
I fixed it by changing the Python code in the script Lib\site-packages\llama_stack\distribution\utils\model_utils.py
line 13 return os.path.join(DEFAULT_CHECKPOINT_DIR, descriptor) --> return os.path.join(DEFAULT_CHECKPOINT_DIR, descriptor.replace(":", "_"))
The text was updated successfully, but these errors were encountered:
Hi!
Windows 11
when I'm installing version Llama3.2-3B-Instruct:int4-qlora-eo8
I get an error NotADirectoryError: [WinError 267] The directory name is invalid: because of the colon ":" in the name
I fixed it by changing the Python code in the script Lib\site-packages\llama_stack\distribution\utils\model_utils.py
line 13 return os.path.join(DEFAULT_CHECKPOINT_DIR, descriptor) --> return os.path.join(DEFAULT_CHECKPOINT_DIR, descriptor.replace(":", "_"))
The text was updated successfully, but these errors were encountered: