File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 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.
160161X_tsne = TSNE (random_state = RANDOM_STATE ).fit_transform (
161162 np .vstack ((train_embeddings , test_embeddings ))
162163)
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.
192194X_tsne = TSNE (random_state = RANDOM_STATE ).fit_transform (
193195 np .vstack ((train_embeddings2 , test_embeddings2 ))
194196)
You can’t perform that action at this time.
0 commit comments