mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-18 20:17:50 +00:00
update
This commit is contained in:
parent
e05a3f0fbc
commit
834b55429a
20
scripts/convert_model.sh
Normal file
20
scripts/convert_model.sh
Normal file
@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
## untested Linux shell script
|
||||
#
|
||||
|
||||
#set filename=../models/%1
|
||||
FILENAME="../models/$1"
|
||||
#set newname=../models/%1.original
|
||||
NEWNAME="../models/$1.original"
|
||||
|
||||
#echo %modelPath%
|
||||
echo Converting the model to the new format...
|
||||
#if not exist tmp\llama.cpp git clone https://github.com/ggerganov/llama.cpp.git tmp\llama.cpp
|
||||
if [! -e tmp\llama.cpp]; then $(git clone https://github.com/ggerganov/llama.cpp.git tmp\llama.cpp)
|
||||
cd tmp\llama.cpp
|
||||
cd ../..
|
||||
#move /y "%filename%" "%newname%"
|
||||
mv -f $FILENAME $NEWNAME
|
||||
echo Converting ...
|
||||
#python tmp\llama.cpp\convert.py "%newname%" --outfile "%filename%"
|
||||
python -c tmp\llama.cpp\convert.py \"$NEWNAME\" --outfile \"$FILENAME\"
|
Loading…
Reference in New Issue
Block a user