Update README.md
Browse files
README.md
CHANGED
|
@@ -66,6 +66,7 @@ print(outputs[0]["generated_text"][-1])
|
|
| 66 |
```
|
| 67 |
|
| 68 |
Here are some exciting examples:
|
|
|
|
| 69 |
**Example 1:**
|
| 70 |
- model input:
|
| 71 |
{"role": "system",
|
|
@@ -76,6 +77,7 @@ Here are some exciting examples:
|
|
| 76 |
- model output:
|
| 77 |
{'role': 'assistant', 'content': 'SELECT T1.cost_of_treatment, T2.treatment_type_description FROM Treatments AS T1 JOIN treatment_types AS T2 ON T1.treatment_type_code = T2.treatment_type_code'}
|
| 78 |
|
|
|
|
| 79 |
**Example 2:**
|
| 80 |
- model input:
|
| 81 |
{"role": "system",
|
|
@@ -87,6 +89,7 @@ Here are some exciting examples:
|
|
| 87 |
{'role': 'assistant', 'content': "SELECT COUNT(*) > 0 FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-15666')) AND microlab.culturesite = 'urine, catheter specimen' AND DATETIME(microlab.culturetakentime,'start of month') = DATETIME(CURRENT_TIME(),'start of month', '-1 month') ORDER BY microlab.culturetakentime LIMIT 1"}
|
| 88 |
|
| 89 |
|
|
|
|
| 90 |
## 3. Ethical Considerations
|
| 91 |
|
| 92 |
While fine-tuned for text to sql, this model inherits the ethical considerations of the base Llama 3 model. Use responsibly and implement additional safeguards as needed for your application.
|
|
|
|
| 66 |
```
|
| 67 |
|
| 68 |
Here are some exciting examples:
|
| 69 |
+
|
| 70 |
**Example 1:**
|
| 71 |
- model input:
|
| 72 |
{"role": "system",
|
|
|
|
| 77 |
- model output:
|
| 78 |
{'role': 'assistant', 'content': 'SELECT T1.cost_of_treatment, T2.treatment_type_description FROM Treatments AS T1 JOIN treatment_types AS T2 ON T1.treatment_type_code = T2.treatment_type_code'}
|
| 79 |
|
| 80 |
+
|
| 81 |
**Example 2:**
|
| 82 |
- model input:
|
| 83 |
{"role": "system",
|
|
|
|
| 89 |
{'role': 'assistant', 'content': "SELECT COUNT(*) > 0 FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-15666')) AND microlab.culturesite = 'urine, catheter specimen' AND DATETIME(microlab.culturetakentime,'start of month') = DATETIME(CURRENT_TIME(),'start of month', '-1 month') ORDER BY microlab.culturetakentime LIMIT 1"}
|
| 90 |
|
| 91 |
|
| 92 |
+
|
| 93 |
## 3. Ethical Considerations
|
| 94 |
|
| 95 |
While fine-tuned for text to sql, this model inherits the ethical considerations of the base Llama 3 model. Use responsibly and implement additional safeguards as needed for your application.
|