diff --git a/notebooks/algorithms/link_prediction/similarity_combined.ipynb b/notebooks/algorithms/link_prediction/similarity_combined.ipynb index 6038b95f5ee..2b21604eadd 100644 --- a/notebooks/algorithms/link_prediction/similarity_combined.ipynb +++ b/notebooks/algorithms/link_prediction/similarity_combined.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Similarty Compared\n", + "# Similarity Compared\n", "----\n", "\n", "In this notebook we will execute all the similarity algorithms available in cuGraph and compare the results:\n", @@ -113,7 +113,7 @@ "outputs": [], "source": [ "jdf, odf, sdf = compute_similarity(G)\n", - "print_similarity(jdf,odf,sdf)\n" + "print_similarity(jdf,odf,sdf)" ] }, { diff --git a/python/cugraph/cugraph/datasets/metadata/enron_edges.yaml b/python/cugraph/cugraph/datasets/metadata/enron_edges.yaml deleted file mode 100644 index 25fd8157c41..00000000000 --- a/python/cugraph/cugraph/datasets/metadata/enron_edges.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: enron_edges -file_type: .csv -author: J.L. Moreno -url: https://data.rapids.ai/cugraph/datasets/enron_edges.csv -refs: - J. L. Moreno (1960). The Sociometry Reader. The Free Press, Glencoe, Illinois, pg.35 -delim: "," -header: 0 -col_names: - - from - - to - - Count -col_types: - - int - - int - - int -has_loop: true -is_directed: false -is_multigraph: false -is_symmetric: true -number_of_edges: 50898 -number_of_nodes: 6599 -number_of_lines: 50898