Views
No views yet
| batch_size | 4 |
| train_micro_batch_size_per_gpu | 2 |
| gradient_accumulation_steps | 2 |
| Learning rate | 2e-5 |
| Max length | 1024 |
| Epochs | 3 |
| Optimizer | AdamW |
1import torch
2from transformers import LlamaForCausalLM, LlamaTokenizer
3
4# Hugging Face model_path
5model_path = 'psmathur/orca_dolly_3b'
6tokenizer = LlamaTokenizer.from_pretrained(model_path)
7model = LlamaForCausalLM.from_pretrained(
8 model_path, torch_dtype=torch.float16, device_map='auto',
9)
10
11
12#generate text function
13def generate_text(system, instruction, input=None):
14
15 if input:
16 prompt = f"### System:\n{system}\n\n### User:\n{instruction}\n\n### Input:\n{input}\n\n### Response:\n"
17 else:
18 prompt = f"### System:\n{system}\n\n### User:\n{instruction}\n\n### Response:\n"
19
20 tokens = tokenizer.encode(prompt)
21 tokens = torch.LongTensor(tokens).unsqueeze(0)
22 tokens = tokens.to('cuda')
23
24 instance = {'input_ids': tokens,'top_p': 1.0, 'temperature':0.7, 'generate_len': 1024, 'top_k': 50}
25
26 length = len(tokens[0])
27 with torch.no_grad():
28 rest = model.generate(
29 input_ids=tokens,
30 max_length=length+instance['generate_len'],
31 use_cache=True,
32 do_sample=True,
33 top_p=instance['top_p'],
34 temperature=instance['temperature'],
35 top_k=instance['top_k']
36 )
37 output = rest[0][length:]
38 string = tokenizer.decode(output, skip_special_tokens=True)
39 return f'Response: {string}'
40
41# Sample Test Instruction Used by Youtuber Sam Witteveen https://www.youtube.com/@samwitteveenai
42system = 'You are an AI assistant that follows instruction extremely well. Help as much as you can.'
43instruction = 'Write a letter to Sam Altman, CEO of OpenAI, requesting him to convert GPT4 a private model by OpenAI to an open source project'
44print(generate_text(system, instruction))
45
Response:
Dear Sam Altman,
I am writing to request that you convert the GPT4 private model developed by OpenAI to an open source project. As a user of OpenAI, I have been waiting for the day when I can use the advanced natural language processing capabilities of GPT4 in a more open and accessible way.
While OpenAI has made significant progress in developing AI applications, it has primarily focused on building private models that are not accessible to the general public. However, with the recent release of GPT-3, there is a growing demand for more open and accessible AI tools.
Converting GPT4 to an open source project would allow for greater transparency, collaboration, and innovation. It would also help to build trust in the technology and ensure that it is used ethically and responsibly.
I urge you to consider converting GPT4 to an open source project. This would be a significant contribution to the AI community and would help to create a more open and accessible future.
Thank you for your consideration.
Sincerely,
[Your Name]
@misc{orca_dolly_3b,
author = {Pankaj Mathur},
title = {orca_dolly_3b: An explain tuned OpenLLaMA-3b model on custom dolly datasets},
year = {2023},
publisher = {GitHub, HuggingFace},
journal = {GitHub repository, HuggingFace repository},
howpublished = {\url{https://https://huggingface.co/psmathur/orca_dolly_3b}},
}@software{openlm2023openllama,
author = {Xinyang Geng and Hao Liu},
title = {OpenLLaMA: An Open Reproduction of LLaMA},
month = May,
year = 2023,
url = {https://github.com/openlm-research/open_llama}
}@misc{openalpaca,
author = {Yixuan Su and Tian Lan and Deng Cai},
title = {OpenAlpaca: A Fully Open-Source Instruction-Following Model Based On OpenLLaMA},
year = {2023},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/yxuansu/OpenAlpaca}},
}@misc{alpaca,
author = {Rohan Taori and Ishaan Gulrajani and Tianyi Zhang and Yann Dubois and Xuechen Li and Carlos Guestrin and Percy Liang and Tatsunori B. Hashimoto },
title = {Stanford Alpaca: An Instruction-following LLaMA model},
year = {2023},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/tatsu-lab/stanford_alpaca}},
}