Vineedhar commited on
Commit
7fe8e00
1 Parent(s): 74aa410

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -9
README.md CHANGED
@@ -43,10 +43,10 @@ Out[7]: [{'label': 'Positive', 'score': 0.9996090531349182}]
43
  - Based on the text the outcomes can be "Positive, Negative, Neutral" along with their confidence score.
44
  -
45
  ### Recommendations
46
- - Continuous Monitoring: Regularly monitor the model's performance on new data to ensure its effectiveness and reliability over time.
47
- - Error Analysis: Conduct thorough error analysis to identify common patterns of misclassifications and areas for improvement.
48
- - Fine-Tuning: Consider fine-tuning the model further based on feedback and insights from users, especially from LDS, to enhance its domain-specific performance.
49
- - Model Interpretability: Explore techniques for explaining the model's predictions, such as attention mechanisms or feature importance analysis, to increase trust and understanding of its decisions.
50
 
51
 
52
  ## Training Details
@@ -62,11 +62,11 @@ X_train, X_val, y_train, y_val = train_test_split(X,y, test_size = 0.2, stratify
62
 
63
  ### Training Procedure
64
 
65
- **Dataset Split:** Data divided into 80% training and 20% validation sets.
66
- **Preprocessing:** Input data tokenized into 'input_ids' and 'attention_mask' tensors.
67
- **Training Hyperparameters:** Set for training, evaluation, and optimization, including batch size, epochs, and logging strategies.
68
- **Training Execution:** Model trained with specified hyperparameters, monitored with metrics, and logged for evaluation.
69
- **Evaluation Metrics:** Model evaluated on loss, accuracy, F1 score, precision, and recall for both training and validation sets.
70
 
71
  #### Preprocessing [optional]
72
  ```
 
43
  - Based on the text the outcomes can be "Positive, Negative, Neutral" along with their confidence score.
44
  -
45
  ### Recommendations
46
+ - **Continuous Monitoring:** Regularly monitor the model's performance on new data to ensure its effectiveness and reliability over time.
47
+ - **Error Analysis:** Conduct thorough error analysis to identify common patterns of misclassifications and areas for improvement.
48
+ - **Fine-Tuning:** Consider fine-tuning the model further based on feedback and insights from users, especially from LDS, to enhance its domain-specific performance.
49
+ - **Model Interpretability:** Explore techniques for explaining the model's predictions, such as attention mechanisms or feature importance analysis, to increase trust and understanding of its decisions.
50
 
51
 
52
  ## Training Details
 
62
 
63
  ### Training Procedure
64
 
65
+ - **Dataset Split:** Data divided into 80% training and 20% validation sets.
66
+ - **Preprocessing:** Input data tokenized into 'input_ids' and 'attention_mask' tensors.
67
+ - **Training Hyperparameters:** Set for training, evaluation, and optimization, including batch size, epochs, and logging strategies.
68
+ - **Training Execution:** Model trained with specified hyperparameters, monitored with metrics, and logged for evaluation.
69
+ - **Evaluation Metrics:** Model evaluated on loss, accuracy, F1 score, precision, and recall for both training and validation sets.
70
 
71
  #### Preprocessing [optional]
72
  ```