Skip to content

Commit debb637

Browse files
committed
style: fix typo
1 parent 78a76eb commit debb637

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/literals.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@
156156
f"Without Literals ({accuracy_score(test_labels, predictions) * 100:.2f}%)"
157157
)
158158

159-
# Reduce the dimensions of entity embeddings without literals to represent them in a 2D plane.
159+
# Reduce the dimensions of entity embeddings without literals to represent them
160+
# in a 2D plane.
160161
X_tsne = TSNE(random_state=RANDOM_STATE).fit_transform(
161162
np.vstack((train_embeddings, test_embeddings))
162163
)
@@ -188,7 +189,8 @@
188189
f"With Literals ({accuracy_score(test_labels, predictions2) * 100 :.2f}%)"
189190
)
190191

191-
# Reduce the dimensions of entity embeddings with literals to represent them in a 2D plane.
192+
# Reduce the dimensions of entity embeddings with literals to represent them in
193+
# a 2D plane.
192194
X_tsne = TSNE(random_state=RANDOM_STATE).fit_transform(
193195
np.vstack((train_embeddings2, test_embeddings2))
194196
)

0 commit comments

Comments
 (0)