FelixChao commited on
Commit
e7fc23b
·
1 Parent(s): bafa648

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -33
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
- [More Information Needed]
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
- <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
64
 
65
- Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
66
 
67
- ## How to Get Started with the Model
 
 
68
 
69
- Use the code below to get started with the model.
 
 
 
 
 
70
 
71
- [More Information Needed]
 
 
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