TabPFN commited on
Commit
b392eb0
1 Parent(s): def7fc3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -49,6 +49,8 @@ def compute(df_table):
49
  except ValueError:
50
  return "⚠️ **Please only add numbers (to the inputs) or leave fields empty.**", None, None
51
 
 
 
52
  classifier.fit(x_train, y_train)
53
  y_eval, p_eval = classifier.predict(x_eval, return_winning_probability=True)
54
 
 
49
  except ValueError:
50
  return "⚠️ **Please only add numbers (to the inputs) or leave fields empty.**", None, None
51
 
52
+ print(y_train)
53
+ print(y_train[:10],y_train[-10:])
54
  classifier.fit(x_train, y_train)
55
  y_eval, p_eval = classifier.predict(x_eval, return_winning_probability=True)
56