Views
No views yet
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "MattStammers/chatty_mapper"
4model = AutoModelForCausalLM.from_pretrained(model_name)
5tokenizer = AutoTokenizer.from_pretrained(model_name)
6
7# Your example here
8Model Performance
9Accuracy: 0.0
10Precision: 0.0
11Recall: 0.0
12Example DataFrame head: ParameterName SNOMEDCode \
130 *Heart rate 364075005
141 Peripheral oxygen saturation 431314004
152 Mean arterial pressure 1285244000
163 *Diastolic blood pressure 271650006
174 *Systolic blood pressure 271649006
18
19 ExtractedSNOMEDNumbers CorrectPrediction
200 3222222 False
211 4222222000000000000000000000000000000000000000... False
222 NaN False
233 NaN False
244 NaN False
25
26Limitations and bias
27It is prone to wandering and certainly not medical-grade.
28
29Acknowledgments
30Thanks to the Mixtral AI team for creating the base model.