Zabihin commited on
Commit
16df482
1 Parent(s): 65e8b57

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -21
README.md CHANGED
@@ -45,36 +45,30 @@ language:
45
 
46
  ---
47
 
48
- <!-- This model card has been generated automatically according to the information Keras had access to. You should
49
- probably proofread and complete it, then remove this comment. -->
50
-
51
  # Symptom_to_Diagnosis
52
 
53
- This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on an unknown dataset.
54
- It achieves the following results on the evaluation set:
55
-
56
 
57
  ## Model description
58
 
59
- More information needed
60
-
61
- ## Intended uses & limitations
62
-
63
- More information needed
64
-
65
- ## Training and evaluation data
66
-
67
- More information needed
68
 
69
- ## Training procedure
 
 
 
 
70
 
71
- ### Training hyperparameters
 
 
 
72
 
73
- The following hyperparameters were used during training:
74
- - optimizer: {'name': 'Adam', 'weight_decay': None, 'clipnorm': None, 'global_clipnorm': None, 'clipvalue': None, 'use_ema': False, 'ema_momentum': 0.99, 'ema_overwrite_frequency': None, 'jit_compile': True, 'is_legacy_optimizer': False, 'learning_rate': 3e-05, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-07, 'amsgrad': False}
75
- - training_precision: float32
76
 
77
- ### Training results
78
 
79
 
80
 
 
45
 
46
  ---
47
 
 
 
 
48
  # Symptom_to_Diagnosis
49
 
50
+ This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased)
51
+ on this dataset (https://huggingface.co/datasets/gretelai/symptom_to_diagnosis).
 
52
 
53
  ## Model description
54
 
55
+ Model Description
56
+ This model is a fine-tuned version of the bert-base-cased architecture,
57
+ specifically designed for text classification tasks related to diagnosing diseases from symptoms.
58
+ The primary objective is to analyze natural language descriptions of symptoms and predict one of 22 corresponding diagnoses.
 
 
 
 
 
59
 
60
+ ## Dataset Information
61
+ The model was trained on the Gretel/symptom_to_diagnosis dataset, which consists of 1,065 symptom descriptions in the English language,
62
+ each labeled with one of the 22 possible diagnoses. The dataset focuses on fine-grained single-domain diagnosis,
63
+ making it suitable for tasks that require detailed classification based on symptom descriptions.
64
+ Example
65
 
66
+ {
67
+ "output_text": "drug reaction",
68
+ "input_text": "I've been having headaches and migraines, and I can't sleep. My whole body shakes and twitches. Sometimes I feel lightheaded."
69
+ }
70
 
 
 
 
71
 
 
72
 
73
 
74