Views
No views yet

1git lfs install
2git clone https://huggingface.co/zjunlp/OceanGPT-7b-v0.2huggingface-cli download --resume-download zjunlp/OceanGPT-7b-v0.2 --local-dir OceanGPT-7b-v0.2 --local-dir-use-symlinks False1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3device = "cuda" # the device to load the model onto
4path = 'YOUR-MODEL-PATH'
5model = AutoModelForCausalLM.from_pretrained(
6 path,
7 torch_dtype=torch.bfloat16,
8 device_map="auto"
9)
10tokenizer = AutoTokenizer.from_pretrained(path)
11
12prompt = "Which is the largest ocean in the world?"
13messages = [
14 {"role": "system", "content": "You are a helpful assistant."},
15 {"role": "user", "content": prompt}
16]
17text = tokenizer.apply_chat_template(
18 messages,
19 tokenize=False,
20 add_generation_prompt=True
21)
22model_inputs = tokenizer([text], return_tensors="pt").to(device)
23
24generated_ids = model.generate(
25 model_inputs.input_ids,
26 max_new_tokens=512
27)
28generated_ids = [
29 output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
30]
31
32response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]| Model Name | HuggingFace | WiseModel | ModelScope |
|---|---|---|---|
| OceanGPT-14B-v0.1 (based on Qwen) | 14B | 14B | 14B |
| OceanGPT-7B-v0.2 (based on Qwen) | 7B | 7B | 7B |
| OceanGPT-2B-v0.1 (based on MiniCPM) | 2B | 2B | 2B |
1@article{bi2023oceangpt,
2 title={OceanGPT: A Large Language Model for Ocean Science Tasks},
3 author={Bi, Zhen and Zhang, Ningyu and Xue, Yida and Ou, Yixin and Ji, Daxiong and Zheng, Guozhou and Chen, Huajun},
4 journal={arXiv preprint arXiv:2310.02031},
5 year={2023}
6}
7