Skip to content

Commit

Permalink
Fix: changed a variable name in the example file
Browse files Browse the repository at this point in the history
  • Loading branch information
jespb committed Jun 16, 2021
1 parent 2c2202a commit 14445a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Main_STGP_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
model.fit(Tr_X, Tr_Y)

# Predict test results
pred = m3gp.predict(Te_X)
pred = model.predict(Te_X)

# Obtain test accuracy
print( accuracy_score(pred, Te_Y) )
Expand Down

0 comments on commit 14445a7

Please sign in to comment.