Update README.md
Browse files
README.md
CHANGED
|
@@ -83,7 +83,7 @@ The model SHOULD NOT be used for:
|
|
| 83 |
```python
|
| 84 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 85 |
|
| 86 |
-
model_name = "
|
| 87 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 88 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
| 89 |
|
|
@@ -96,4 +96,7 @@ print(response)
|
|
| 96 |
```
|
| 97 |
|
| 98 |
### Ethical Considerations
|
| 99 |
-
This model is developed with the intent to provide helpful,
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
```python
|
| 84 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 85 |
|
| 86 |
+
model_name = "Ellbendls/llama-3.2-3b-chat-doctor"
|
| 87 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 88 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
| 89 |
|
|
|
|
| 96 |
```
|
| 97 |
|
| 98 |
### Ethical Considerations
|
| 99 |
+
This model is developed with the intent to provide helpful, accurate, and responsible medical information. Users are encouraged to:
|
| 100 |
+
- Use the model responsibly
|
| 101 |
+
- Understand its limitations
|
| 102 |
+
- Seek professional medical advice for serious health concerns
|