This is the internal documentation for the Doc
class. Wherever details are omitted, please refer to the original code.
self.sentences
Type: [Sentence]
Holds array of Sentence
objects.
self.dependencyParser
Type: DependencyParser
(strict)
Holds instance of DependencyParser()
.
self.tagger
Type: POSTagger
(strict)
Holds instance of POSTagger()
.
self.text
Type: String
Holds the actual text of the document.
Arguments
sentenceList
: array of sentences as String
. Mandatory.
Purpose
Initializes the Doc
object by performing POS tagging and dependency parsing, storing it in our custom Sentence
and Token
classes.
Returns None.
Additional Notes Overloaded function.
Arguments
text
: a single String
containing all the sentences for the Doc
. Mandatory.
Purpose
Initializes the Doc
object by performing POS tagging and dependency parsing, storing it in our custom Sentence
and Token
classes. Internally, it tokenizes text
into a list of sentences, then calls self.init(sentenceList: sentences)
.
Returns None.
Additional Notes Overloaded function.