allennlp.data.dataset_readers.penn_tree_bank¶
-
class
allennlp.data.dataset_readers.penn_tree_bank.PennTreeBankConstituencySpanDatasetReader(token_indexers: Dict[str, allennlp.data.token_indexers.token_indexer.TokenIndexer] = None, use_pos_tags: bool = True, lazy: bool = False, label_namespace_prefix: str = '', pos_label_namespace: str = 'pos')[source]¶ Bases:
allennlp.data.dataset_readers.dataset_reader.DatasetReaderReads constituency parses from the WSJ part of the Penn Tree Bank from the LDC. This
DatasetReaderis designed for use with a span labelling model, so it enumerates all possible spans in the sentence and returns them, along with gold labels for the relevant spans present in a gold tree, if provided.- Parameters
- token_indexers
Dict[str, TokenIndexer], optional (default=``{“tokens”: SingleIdTokenIndexer()}``) We use this to define the input representation for the text. See
TokenIndexer. Note that the output tags will always correspond to single token IDs based on how they are pre-tokenised in the data file.- use_pos_tags
bool, optional, (default =True) Whether or not the instance should contain gold POS tags as a field.
- lazy
bool, optional, (default =False) Whether or not instances can be consumed lazily.
- label_namespace_prefix
str, optional, (default ="") Prefix used for the label namespace. The
span_labelswill use namespacelabel_namespace_prefix + 'labels', and if using POS tags their namespace islabel_namespace_prefix + pos_label_namespace.- pos_label_namespace
str, optional, (default ="pos") The POS tag namespace is
label_namespace_prefix + pos_label_namespace.
- token_indexers
-
text_to_instance(self, tokens: List[str], pos_tags: List[str] = None, gold_tree: nltk.tree.Tree = None) → allennlp.data.instance.Instance[source]¶ We take pre-tokenized input here, because we don’t have a tokenizer in this class.
- Parameters
- tokens
List[str], required. The tokens in a given sentence.
- pos_tags
List[str], optional, (default = None). The POS tags for the words in the sentence.
- gold_tree
Tree, optional (default = None). The gold parse tree to create span labels from.
- tokens
- Returns
- An
Instancecontaining the following fields: - tokens
TextField The tokens in the sentence.
- pos_tags
SequenceLabelField The POS tags of the words in the sentence. Only returned if
use_pos_tagsisTrue- spans
ListField[SpanField] A ListField containing all possible subspans of the sentence.
- span_labels
SequenceLabelField, optional. The constituency tags for each of the possible spans, with respect to a gold parse tree. If a span is not contained within the tree, a span will have a
NO-LABELlabel.- gold_tree
MetadataField(Tree) The gold NLTK parse tree for use in evaluation.
- tokens
- An