Update app.py
Browse files
app.py
CHANGED
@@ -74,7 +74,17 @@ with gr.Blocks() as demo:
|
|
74 |
)
|
75 |
|
76 |
# Explanation of selecting training points for X_train and Y_train
|
77 |
-
gr.Markdown("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
gr.Markdown(
|
79 |
"In regression tasks, we split the available data into a training set and a test set. The training set is used to train the regression model, and the test set is used to evaluate its performance. Here, you can select the coordinates of the training points that form the training set."
|
80 |
)
|
|
|
74 |
)
|
75 |
|
76 |
# Explanation of selecting training points for X_train and Y_train
|
77 |
+
gr.Markdown("""
|
78 |
+
## Select Training Points for Training Features(X_train) and Training Labels(Y_train)
|
79 |
+
|
80 |
+
Example:
|
81 |
+
- X_train_x = 2.0
|
82 |
+
- X_train_y = 0.5
|
83 |
+
- Y_train_x = 1.5
|
84 |
+
- Y_train_y = 2.5
|
85 |
+
|
86 |
+
This example demonstrates selecting the Training Features as (2.0, 0.5) and (1.5, 2.5) for Training Labels. You can adjust the sliders to choose different coordinates for your training set.
|
87 |
+
""")
|
88 |
gr.Markdown(
|
89 |
"In regression tasks, we split the available data into a training set and a test set. The training set is used to train the regression model, and the test set is used to evaluate its performance. Here, you can select the coordinates of the training points that form the training set."
|
90 |
)
|