Update README.md
Browse files
README.md
CHANGED
@@ -9,12 +9,12 @@ language:
|
|
9 |
---
|
10 |
|
11 |
## π‘ Model description
|
12 |
-
This repo contains a large
|
13 |
|
14 |
## π Intended uses
|
15 |
You can download the model to generate responses or contact the [email]([email protected]) for the online test demo.
|
16 |
|
17 |
-
## π οΈ How to use
|
18 |
We wil provide several examples soon and you can modify the input according to your needs.
|
19 |
|
20 |
```python
|
@@ -27,4 +27,15 @@ We wil provide several examples soon and you can modify the input according to y
|
|
27 |
>>> tokenizer = AutoTokenizer.from_pretrained("zjunlp/OceanGPT-7b")
|
28 |
>>> model = AutoModelForCausalLM.from_pretrained("zjunlp/OceanGPT-7b")
|
29 |
|
30 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
---
|
10 |
|
11 |
## π‘ Model description
|
12 |
+
This repo contains a large language model (OceanGPT) for ocean science tasks trained with [KnowLM](https://github.com/zjunlp/KnowLM). It should be noted that the OceanGPT is constantly being updated, so the current model is not the final version.
|
13 |
|
14 |
## π Intended uses
|
15 |
You can download the model to generate responses or contact the [email]([email protected]) for the online test demo.
|
16 |
|
17 |
+
## π οΈ How to use
|
18 |
We wil provide several examples soon and you can modify the input according to your needs.
|
19 |
|
20 |
```python
|
|
|
27 |
>>> tokenizer = AutoTokenizer.from_pretrained("zjunlp/OceanGPT-7b")
|
28 |
>>> model = AutoModelForCausalLM.from_pretrained("zjunlp/OceanGPT-7b")
|
29 |
|
30 |
+
```
|
31 |
+
|
32 |
+
## How to cite
|
33 |
+
|
34 |
+
```bibtex
|
35 |
+
@article{bi2023oceangpt,
|
36 |
+
title={OceanGPT: A Large Language Model for Ocean Science Tasks},
|
37 |
+
author={Bi, Zhen and Zhang, Ningyu and Xue, Yida and Ou, Yixin and Ji, Daxiong and Zheng, Guozhou and Chen, Huajun},
|
38 |
+
journal={arXiv preprint arXiv:2310.02031},
|
39 |
+
year={2023}
|
40 |
+
}
|
41 |
+
```
|