Skip to content

Commit 01a7840

Browse files
authored
Update RegressionDemo.py
1 parent 15dd56e commit 01a7840

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/RegressionDemo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
X_train, X_test, Y_train, Y_test = train_test_split(X_transformed, Y)
2525

2626
start = time()
27-
tm.fit(X_train, Y_train, epochs=100, incremental=True)
27+
tm.fit(X_train, Y_train, epochs=100, incremental=False)
2828
stop = time()
2929
tm_results = np.append(tm_results, np.sqrt(((tm.predict(X_test) - Y_test)**2).mean()))
3030

0 commit comments

Comments
 (0)