You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 19, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: package-parser/package_parser/commands/get_dependencies/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Dependency Extaction
1
+
# Dependency Extraction
2
2
3
3
## How do we imagine a Dependency
4
4
@@ -16,13 +16,13 @@ Parsing a dependency subtree in an InOrder traversal, we can rebuild a sentence
16
16
17
17
### Dependency Tree Example
18
18
19
-

19
+

20
20
21
21
22
22
## Where to continue work?
23
23
* Development of more patterns in _dependency_patterns.py, see [Dependency Parser](https://spacy.io/usage/linguistic-features#dependency-parse), [Dependency Matcher](https://spacy.io/usage/rule-based-matching#dependencymatcher)
24
24
* Look into pattern matching over multiple sentences. Have a more theoretical understanding of the meaning of a dependency in the english language.
25
-
* Better classification of the subclasses of Actions, Condtions. These classes are found in __../get_api/_model.py__.
25
+
* Better classification of the subclasses of Actions, Conditions. These classes are found in __../get_api/_model.py__.
26
26
27
27
### How to continue work?
28
28
It is currently constructed such that for each pattern, there exists a corresponding function __extract_(pattern_name)__ within the class DependencyExtractor. This is due to the assumption that different types of dependency patterns will have different structured sentences, and thus require slightly different combinations of methods to extract the wanted information.
0 commit comments