Training for detecting and classifying Subclauses and overall Clauses in Developmental Assessments #12564
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Romanang! Neither clause detection nor classification of conjuctions between subclauses are supported by spaCy out of the box.
For clause detection I recommend having a look at https://spacy.io/universe/project/spacy-clausie/. I think you should be able to build on that to extract your subclauses - the counting step once you've done that should be trivial.
Hm, so usual word embeddings aren't very useful for this task, as they don't incorporate any syntactic information. spaCy uses sense2vec for its default word embeddings, which results in richer representations when it comes to that, but even those don't explicitly embed the information that would be helpful to you. |
Beta Was this translation helpful? Give feedback.
Hi @Romanang! Neither clause detection nor classification of conjuctions between subclauses are supported by spaCy out of the box.
For clause detection I recommend having a look at https://spacy.io/universe/project/spacy-clausie/. I think you should be able to build on that to extract your subclauses - the counting step once you've done that should be trivial.
Hm, so usual word embeddings aren't very useful for this task, as they don't incorporate any syntactic inform…