diff --git a/examples_notebooks/index_migration_to_v2/index.html b/examples_notebooks/index_migration_to_v2/index.html index 15a6a04b..436c5e26 100644 --- a/examples_notebooks/index_migration_to_v2/index.html +++ b/examples_notebooks/index_migration_to_v2/index.html @@ -2099,7 +2099,7 @@ File ~/work/graphrag/graphrag/graphrag/config/load_c final_nodes.loc[:, ["id", "degree", "x", "y"]].groupby("id").first().reset_index() ) final_entities = final_entities.merge(graph_props, on="id", how="left") -# we're also persistint the frequency column +# we're also persisting the frequency column final_entities["frequency"] = final_entities["text_unit_ids"].count() @@ -2168,7 +2168,7 @@ graph_props = ( final_nodes.loc[:, ["id", "degree", "x", "y"]].groupby("id").first().reset_index() ) final_entities = final_entities.merge(graph_props, on="id", how="left") -# we're also persistint the frequency column +# we're also persisting the frequency column final_entities["frequency"] = final_entities["text_unit_ids"].count()