Update my_pages/rashomon_developer.py
Browse files
my_pages/rashomon_developer.py
CHANGED
|
@@ -19,7 +19,7 @@ def render():
|
|
| 19 |
|
| 20 |
#### Choosing regularization
|
| 21 |
st.markdown("""
|
| 22 |
-
**Regularization:** Regularization is a technique commonly used to stop
|
| 23 |
|
| 24 |
Choose a regularization method:
|
| 25 |
- L1 Regularization: Force your AI model to use less number of features, thus avoiding irrelevant features.
|
|
@@ -52,7 +52,7 @@ def render():
|
|
| 52 |
if regularization_method=="l1":
|
| 53 |
st.markdown("""
|
| 54 |
**Randomness:** Sometimes there is randomness in the learning process. Let's flip a coin
|
| 55 |
-
(You can just choose Heads or Tails, and we will assume we
|
| 56 |
"""
|
| 57 |
)
|
| 58 |
random_seed = None
|
|
|
|
| 19 |
|
| 20 |
#### Choosing regularization
|
| 21 |
st.markdown("""
|
| 22 |
+
**Regularization:** Regularization is a technique commonly used to stop AI models from learning the noise or small quirks in the data that might not generalize.
|
| 23 |
|
| 24 |
Choose a regularization method:
|
| 25 |
- L1 Regularization: Force your AI model to use less number of features, thus avoiding irrelevant features.
|
|
|
|
| 52 |
if regularization_method=="l1":
|
| 53 |
st.markdown("""
|
| 54 |
**Randomness:** Sometimes there is randomness in the learning process. Let's flip a coin
|
| 55 |
+
(You can just choose Heads or Tails, and we will assume we flipped a coin, our little secret).
|
| 56 |
"""
|
| 57 |
)
|
| 58 |
random_seed = None
|