/* Copyright 2016 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "syntaxnet/parser_features.h" #include #include "syntaxnet/feature_extractor.h" #include "syntaxnet/parser_state.h" #include "syntaxnet/populate_test_inputs.h" #include "syntaxnet/sentence.pb.h" #include "syntaxnet/task_context.h" #include "syntaxnet/task_spec.pb.h" #include "syntaxnet/term_frequency_map.h" #include "syntaxnet/utils.h" #include "syntaxnet/workspace.h" #include "tensorflow/core/lib/strings/strcat.h" #include "tensorflow/core/platform/test.h" namespace syntaxnet { // Feature extractor for the transition parser based on a parser state object. typedef FeatureExtractor ParserIndexFeatureExtractor; // Test fixture for parser features. class ParserFeatureFunctionTest : public ::testing::Test { protected: // Sets up a parser state. void SetUp() override { // Prepare a document. const char *kTaggedDocument = "text: 'I saw a man with a telescope.' " "token { word: 'I' start: 0 end: 0 tag: 'PRP' category: 'PRON'" " break_level: NO_BREAK head: 1 } " "token { word: 'saw' start: 2 end: 4 tag: 'VBD' category: 'VERB'" " break_level: SPACE_BREAK } " "token { word: 'a' start: 6 end: 6 tag: 'DT' category: 'DET'" " break_level: SPACE_BREAK head: 3 } " "token { word: 'man' start: 8 end: 10 tag: 'NN' category: 'NOUN'" " break_level: SPACE_BREAK head: 1 } " "token { word: 'with' start: 12 end: 15 tag: 'IN' category: 'ADP'" " break_level: SPACE_BREAK head: 1 } " "token { word: 'a' start: 17 end: 17 tag: 'DT' category: 'DET'" " break_level: SPACE_BREAK head: 6 } " "token { word: 'telescope' start: 19 end: 27 tag: 'NN' category: 'NOUN'" " break_level: SPACE_BREAK head: 4 } " "token { word: '.' start: 28 end: 28 tag: '.' category: '.'" " break_level: NO_BREAK head: 1 }"; CHECK(TextFormat::ParseFromString(kTaggedDocument, &sentence_)); creators_ = PopulateTestInputs::Defaults(sentence_); // Prepare a label map. By adding labels in lexicographic order we make sure // the term indices stay the same after sorting (which happens when the // label map is saved to disk). label_map_.Increment("NULL"); label_map_.Increment("ROOT"); label_map_.Increment("det"); label_map_.Increment("dobj"); label_map_.Increment("nsubj"); label_map_.Increment("p"); label_map_.Increment("pobj"); label_map_.Increment("prep"); creators_.Add("label-map", "text", "", [this](const string &filename) { label_map_.Save(filename); }); // Prepare a parser state. state_.reset(new ParserState(&sentence_, nullptr /* no transition state */, &label_map_)); } // Prepares a feature for computations. string ExtractFeature(const string &feature_name) { context_.mutable_spec()->mutable_input()->Clear(); context_.mutable_spec()->mutable_output()->Clear(); feature_extractor_.reset(new ParserFeatureExtractor()); feature_extractor_->Parse(feature_name); feature_extractor_->Setup(&context_); creators_.Populate(&context_); feature_extractor_->Init(&context_); feature_extractor_->RequestWorkspaces(®istry_); workspaces_.Reset(registry_); feature_extractor_->Preprocess(&workspaces_, state_.get()); FeatureVector result; feature_extractor_->ExtractFeatures(workspaces_, *state_, &result); return result.type(0)->GetFeatureValueName(result.value(0)); } std::unique_ptr state_; Sentence sentence_; WorkspaceSet workspaces_; TermFrequencyMap label_map_; PopulateTestInputs::CreatorMap creators_; TaskContext context_; WorkspaceRegistry registry_; std::unique_ptr feature_extractor_; }; TEST_F(ParserFeatureFunctionTest, TagFeatureFunction) { state_->Push(-1); state_->Push(0); EXPECT_EQ("PRP", ExtractFeature("input.tag")); EXPECT_EQ("VBD", ExtractFeature("input(1).tag")); EXPECT_EQ("", ExtractFeature("input(10).tag")); EXPECT_EQ("PRP", ExtractFeature("stack(0).tag")); EXPECT_EQ("", ExtractFeature("stack(1).tag")); } TEST_F(ParserFeatureFunctionTest, LabelFeatureFunction) { // Construct a partial dependency tree. state_->AddArc(0, 1, 4); state_->AddArc(1, -1, 1); state_->AddArc(2, 3, 2); state_->AddArc(3, 1, 3); state_->AddArc(5, 6, 2); state_->AddArc(6, 4, 6); state_->AddArc(7, 1, 5); // Test the feature function. EXPECT_EQ(label_map_.GetTerm(4), ExtractFeature("input.label")); EXPECT_EQ("ROOT", ExtractFeature("input(1).label")); EXPECT_EQ(label_map_.GetTerm(2), ExtractFeature("input(2).label")); // Push artifical root token onto the stack. This triggers the wrapped // value, rather than indicating a token with the label "ROOT" (which may or // may not be the artificial root token.) state_->Push(-1); EXPECT_EQ("", ExtractFeature("stack.label")); } TEST_F(ParserFeatureFunctionTest, GoldHeadFeatureFunction) { EXPECT_EQ("1", ExtractFeature("input.gold-head")); EXPECT_EQ("", ExtractFeature("input(1).gold-head")); // extracts -1 EXPECT_EQ("3", ExtractFeature("input(2).gold-head")); EXPECT_EQ("1", ExtractFeature("input(3).gold-head")); EXPECT_EQ("1", ExtractFeature("input(4).gold-head")); EXPECT_EQ("6", ExtractFeature("input(5).gold-head")); EXPECT_EQ("4", ExtractFeature("input(6).gold-head")); EXPECT_EQ("1", ExtractFeature("input(7).gold-head")); } } // namespace syntaxnet