Skip to content

Commit 3c0fffa

Browse files
Remove unnecessary examples
1 parent 4f4eb06 commit 3c0fffa

File tree

4 files changed

+2
-58
lines changed

4 files changed

+2
-58
lines changed

examples/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,7 @@ are listed in [the last section of this file](#customize).
126126
- [Neo4j writer](./customize/build_graph/components/writers/neo4j_writer.py)
127127
- [Custom](./customize/build_graph/components/writers/custom_writer.py)
128128
- Entity Resolver:
129-
- [SinglePropertyExactMatchResolver](./customize/build_graph/components/resolvers/simple_entity_resolver.py)
130129
- [SinglePropertyExactMatchResolver with pre-filter](./customize/build_graph/components/resolvers/simple_entity_resolver_pre_filter.py)
131-
- [SpaCySemanticMatchResolver](./customize/build_graph/components/resolvers/spacy_entity_resolver.py)
132130
- [SpaCySemanticMatchResolver with pre-filter](./customize/build_graph/components/resolvers/spacy_entity_resolver_pre_filter.py)
133131
- [Custom resolver](./customize/build_graph/components/resolvers/custom_resolver.py)
134132
- [Custom component](./customize/build_graph/components/custom_component.py)

examples/customize/build_graph/components/resolvers/simple_entity_resolver.py

Lines changed: 0 additions & 25 deletions
This file was deleted.

examples/customize/build_graph/components/resolvers/spacy_entity_resolver.py

Lines changed: 0 additions & 30 deletions
This file was deleted.

examples/customize/build_graph/components/resolvers/spacy_entity_resolver_pre_filter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""The SpaCySemanticMatchResolver merges nodes with same label
2-
and similar textual properties (by default using the "name" property).
2+
and similar textual properties (by default using the "name" property) based on spaCy
3+
embeddings and cosine similarities of embedding vectors.
34
45
If the resolution is intended to be applied only on some nodes, for instance nodes that
56
belong to a specific document, a "WHERE" query can be added. The only variable in the

0 commit comments

Comments
 (0)