Initial commit
This commit is contained in:
commit
da2c8e636c
11 changed files with 755 additions and 0 deletions
3
scripts/finetune.sh
Executable file
3
scripts/finetune.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
source venv/bin/activate
|
||||
python finetune.py
|
||||
3
scripts/generate-data.sh
Executable file
3
scripts/generate-data.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
source venv/bin/activate
|
||||
python synthetic-data.py
|
||||
6
scripts/merge-and-convert.sh
Executable file
6
scripts/merge-and-convert.sh
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash
|
||||
source venv/bin/activate
|
||||
python merge.py
|
||||
cd llama.cpp
|
||||
source convertgguf_venv/bin/activate
|
||||
python convert_hf_to_gguf.py ../merged_model/
|
||||
2
scripts/run-model.sh
Executable file
2
scripts/run-model.sh
Executable file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/bash
|
||||
./llama.cpp/build/bin/llama-cli -m ./merged_model/Merged_Model.gguf
|
||||
Loading…
Add table
Add a link
Reference in a new issue