Update README.md
Browse files
README.md
CHANGED
@@ -22,7 +22,11 @@ This modelcard aims to be a base template for new models. It has been generated
|
|
22 |
### Model Description
|
23 |
|
24 |
<!-- Provide a longer summary of what this model is. -->
|
|
|
25 |
|
|
|
|
|
|
|
26 |
|
27 |
|
28 |
- **Developed by:** FelixChao
|
@@ -30,45 +34,27 @@ This modelcard aims to be a base template for new models. It has been generated
|
|
30 |
- **Language(s) (NLP):** English
|
31 |
- **Finetuned from model [optional]:** CleverShovel/vicuna-7b-v1.3-sharded-bf16
|
32 |
|
33 |
-
## Uses
|
34 |
-
|
35 |
-
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
36 |
-
|
37 |
-
### Direct Use
|
38 |
-
|
39 |
-
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
40 |
-
|
41 |
-
[More Information Needed]
|
42 |
-
|
43 |
-
### Downstream Use [optional]
|
44 |
-
|
45 |
-
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
46 |
-
|
47 |
-
[More Information Needed]
|
48 |
-
|
49 |
-
### Out-of-Scope Use
|
50 |
-
|
51 |
-
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
52 |
|
53 |
-
|
54 |
-
|
55 |
-
## Bias, Risks, and Limitations
|
56 |
-
|
57 |
-
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
58 |
-
|
59 |
-
[More Information Needed]
|
60 |
-
|
61 |
-
### Recommendations
|
62 |
|
63 |
-
|
64 |
|
65 |
-
|
66 |
|
67 |
-
|
|
|
|
|
68 |
|
69 |
-
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
-
|
|
|
|
|
72 |
|
73 |
## Training Details
|
74 |
|
|
|
22 |
### Model Description
|
23 |
|
24 |
<!-- Provide a longer summary of what this model is. -->
|
25 |
+
This model is currently **under testing**. It can answer some **basic chemical questions** and is better than the base-sharded model.
|
26 |
|
27 |
+
Through some **chemical reactions**, it can clearly understand **the reactant and corresponding products**. **(For most, it is correct😅)**
|
28 |
+
|
29 |
+
**Just have fun testing it, and ask some interesting questions!!**
|
30 |
|
31 |
|
32 |
- **Developed by:** FelixChao
|
|
|
34 |
- **Language(s) (NLP):** English
|
35 |
- **Finetuned from model [optional]:** CleverShovel/vicuna-7b-v1.3-sharded-bf16
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
+
## How to Get Started with the Model
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
+
Use the code below to get started with the model.
|
41 |
|
42 |
+
### For Pipeline
|
43 |
|
44 |
+
```python
|
45 |
+
# Use a pipeline as a high-level helper
|
46 |
+
from transformers import pipeline
|
47 |
|
48 |
+
pipe = pipeline("text-generation", model="FelixChao/vicuna-7B-chemical")
|
49 |
+
```
|
50 |
+
### For Model_Loading
|
51 |
+
```python
|
52 |
+
# Load model directly
|
53 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
54 |
|
55 |
+
tokenizer = AutoTokenizer.from_pretrained("FelixChao/vicuna-7B-chemical")
|
56 |
+
model = AutoModelForCausalLM.from_pretrained("FelixChao/vicuna-7B-chemical")
|
57 |
+
```
|
58 |
|
59 |
## Training Details
|
60 |
|