Spaces:
Running
Running
arnocandel
commited on
Commit
•
2f10edd
1
Parent(s):
b38cab2
Update with h2oGPT hash 56c2720bdba1e1c78af479186eab7c9cfd377a9e
Browse files- app.py +2 -0
- finetune.py +4 -1
app.py
CHANGED
@@ -1645,5 +1645,7 @@ if __name__ == "__main__":
|
|
1645 |
can also pass --prompt_type='human_bot' and model can somewhat handle instructions without being instruct tuned
|
1646 |
python generate.py --base_model=decapoda-research/llama-65b-hf --load_8bit=False --infer_devices=False --prompt_type='human_bot'
|
1647 |
|
|
|
|
|
1648 |
""", flush=True)
|
1649 |
fire.Fire(main)
|
|
|
1645 |
can also pass --prompt_type='human_bot' and model can somewhat handle instructions without being instruct tuned
|
1646 |
python generate.py --base_model=decapoda-research/llama-65b-hf --load_8bit=False --infer_devices=False --prompt_type='human_bot'
|
1647 |
|
1648 |
+
python generate.py --base_model=h2oai/h2ogpt-oig-oasst1-256-6.9b
|
1649 |
+
|
1650 |
""", flush=True)
|
1651 |
fire.Fire(main)
|
finetune.py
CHANGED
@@ -121,7 +121,10 @@ def train(
|
|
121 |
save_code: bool = False,
|
122 |
run_id: int = None,
|
123 |
|
124 |
-
base_model: str = '
|
|
|
|
|
|
|
125 |
# base_model: str = 'EleutherAI/pythia-12b-deduped',
|
126 |
# base_model: str = 'togethercomputer/GPT-NeoXT-Chat-Base-20B',
|
127 |
# base_model: str = 'decapoda-research/llama-7b-hf',
|
|
|
121 |
save_code: bool = False,
|
122 |
run_id: int = None,
|
123 |
|
124 |
+
base_model: str = 'h2oai/h2ogpt-oig-oasst1-256-6.9b',
|
125 |
+
# base_model: str = 'h2oai/h2ogpt-oasst1-512-12b',
|
126 |
+
# base_model: str = 'h2oai/h2ogpt-oasst1-512-20b',
|
127 |
+
# base_model: str = 'EleutherAI/gpt-neox-20b',
|
128 |
# base_model: str = 'EleutherAI/pythia-12b-deduped',
|
129 |
# base_model: str = 'togethercomputer/GPT-NeoXT-Chat-Base-20B',
|
130 |
# base_model: str = 'decapoda-research/llama-7b-hf',
|