Spaces:
Sleeping
Sleeping
Try to show progress in logs
Browse files
app.py
CHANGED
|
@@ -74,7 +74,6 @@ def greet(
|
|
| 74 |
X = df.drop([col_to_fit], axis=1)
|
| 75 |
|
| 76 |
model = pysr.PySRRegressor(
|
| 77 |
-
progress=False,
|
| 78 |
bumper=True,
|
| 79 |
maxsize=maxsize,
|
| 80 |
niterations=niterations,
|
|
@@ -105,7 +104,7 @@ model.fit(X, y)""")
|
|
| 105 |
def main():
|
| 106 |
demo = gr.Interface(
|
| 107 |
fn=greet,
|
| 108 |
-
description="Symbolic Regression with PySR. Watch search progress by
|
| 109 |
inputs=[
|
| 110 |
gr.File(label="Upload a CSV File"),
|
| 111 |
gr.Textbox(label="Column to Predict", placeholder="y"),
|
|
|
|
| 74 |
X = df.drop([col_to_fit], axis=1)
|
| 75 |
|
| 76 |
model = pysr.PySRRegressor(
|
|
|
|
| 77 |
bumper=True,
|
| 78 |
maxsize=maxsize,
|
| 79 |
niterations=niterations,
|
|
|
|
| 104 |
def main():
|
| 105 |
demo = gr.Interface(
|
| 106 |
fn=greet,
|
| 107 |
+
description="Symbolic Regression with PySR. Watch search progress by following the logs.",
|
| 108 |
inputs=[
|
| 109 |
gr.File(label="Upload a CSV File"),
|
| 110 |
gr.Textbox(label="Column to Predict", placeholder="y"),
|