Skip to content

Commit

Permalink
Fixing lint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
drivanov committed Sep 27, 2024
1 parent 8f5db0d commit ae6b6f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/pytorch/metapath2vec/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@
author_true = np.array(author_true)
file.close()
print("beging predicting")
clf_venue = LogisticRegression(
random_state=0, solver="lbfgs"
).fit(venue_training, venue_label)
clf_venue = LogisticRegression(random_state=0, solver="lbfgs").fit(
venue_training, venue_label
)
y_pred_venue = clf_venue.predict(venue_testing)
clf_author = LogisticRegression(random_state=0, solver="lbfgs").fit(
author_training, author_label
Expand Down

0 comments on commit ae6b6f9

Please sign in to comment.