Update README.md
Browse files
README.md
CHANGED
@@ -18,7 +18,6 @@ By leveraging transfer learning and fine-tuning BERT BASE UNCASED, we accurately
|
|
18 |
|
19 |
This project showcases the power of transfer learning in machine learning and highlights the effectiveness of BERT BASE UNCASED for predicting Big Five personality traits.
|
20 |
|
21 |
-
- **Developed by:** Minej
|
22 |
- **Model type:** BERT BASE UNCASED
|
23 |
- **Language(s) (NLP):** English
|
24 |
- **License:** MIT
|
@@ -45,7 +44,7 @@ This model is not suitable for uses beyond personality prediction. It should not
|
|
45 |
|
46 |
The personality prediction model, like any machine learning model, has certain limitations and potential biases that should be taken into account:
|
47 |
|
48 |
-
|
49 |
The model makes predictions based on input text alone and may not capture the full context of an individual's personality. It is important to consider that personality traits are influenced by various factors beyond textual expression.
|
50 |
|
51 |
####Generalization:
|
@@ -181,11 +180,11 @@ The personality_detection function returns a dictionary containing the predicted
|
|
181 |
|
182 |
The dictionary contains the following personality traits with their corresponding predicted values:
|
183 |
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
|
190 |
```python
|
191 |
text_input = "I am feeling excited about the upcoming event."
|
|
|
18 |
|
19 |
This project showcases the power of transfer learning in machine learning and highlights the effectiveness of BERT BASE UNCASED for predicting Big Five personality traits.
|
20 |
|
|
|
21 |
- **Model type:** BERT BASE UNCASED
|
22 |
- **Language(s) (NLP):** English
|
23 |
- **License:** MIT
|
|
|
44 |
|
45 |
The personality prediction model, like any machine learning model, has certain limitations and potential biases that should be taken into account:
|
46 |
|
47 |
+
**Limited Context:**
|
48 |
The model makes predictions based on input text alone and may not capture the full context of an individual's personality. It is important to consider that personality traits are influenced by various factors beyond textual expression.
|
49 |
|
50 |
####Generalization:
|
|
|
180 |
|
181 |
The dictionary contains the following personality traits with their corresponding predicted values:
|
182 |
|
183 |
+
Extroversion: A value between 0 and 1 representing the predicted extroversion trait.
|
184 |
+
Neuroticism: A value between 0 and 1 representing the predicted neuroticism trait.
|
185 |
+
Agreeableness: A value between 0 and 1 representing the predicted agreeableness trait.
|
186 |
+
Conscientiousness: A value between 0 and 1 representing the predicted conscientiousness trait.
|
187 |
+
Openness: A value between 0 and 1 representing the predicted openness trait.
|
188 |
|
189 |
```python
|
190 |
text_input = "I am feeling excited about the upcoming event."
|