1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
|
#!/usr/bin/perl
# Copyright 2022 Jeffrey Kegler
# This file is part of Marpa::R2. Marpa::R2 is free software: you can
# redistribute it and/or modify it under the terms of the GNU Lesser
# General Public License as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# Marpa::R2 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser
# General Public License along with Marpa::R2. If not, see
# http://www.gnu.org/licenses/.
# This example parses ambiguous English sentences. The target annotation
# is Penn Treebank's syntactic bracketing tags. For details, see
# http://www.cis.upenn.edu/~treebank/
use 5.010001;
use strict;
use warnings;
use English qw( -no_match_vars );
use Test::More tests => 3;
use lib 'inc';
use Marpa::R2::Test;
use Marpa::R2;
my $dsl = <<'END_OF_SOURCE';
S ::= NP VP period action => do_S
NP ::= NN action => do_NP_NN
| NNS action => do_NP_NNS
| DT NN action => do_NP_DT_NN
| NN NNS action => do_NP_NN_NNS
| NNS CC NNS action => do_NP_NNS_CC_NNS
VP ::= VBZ NP action => do_VP_VBZ_NP
| VP VBZ NNS action => do_VP_VP_VBZ_NNS
| VP CC VP action => do_VP_VP_CC_VP
| VP VP CC VP action => do_VP_VP_VP_CC_VP
| VBZ action => do_VP_VBZ
period ~ '.'
:discard ~ whitespace
whitespace ~ [\s]+
CC ~ 'and'
DT ~ 'a' | 'an'
NN ~ 'panda'
NNS ~ 'shoots' | 'leaves'
VBZ ~ 'eats' | 'shoots' | 'leaves'
END_OF_SOURCE
my $grammar = Marpa::R2::Scanless::G->new(
{ source => \$dsl } );
my $full_expected = <<'END_OF_OUTPUT';
(S (NP (DT a) (NN panda))
(VP (VBZ eats) (NP (NNS shoots) (CC and) (NNS leaves)))
(. .))
(S (NP (DT a) (NN panda))
(VP (VP (VBZ eats) (NP (NNS shoots))) (CC and) (VP (VBZ leaves)))
(. .))
(S (NP (DT a) (NN panda))
(VP (VP (VBZ eats)) (VP (VBZ shoots)) (CC and) (VP (VBZ leaves)))
(. .))
END_OF_OUTPUT
my $sentence = 'a panda eats shoots and leaves.';
my @actual = ();
my $recce = Marpa::R2::Scanless::R->new( {
grammar => $grammar,
semantics_package => 'PennTags'
} );
$recce->read( \$sentence );
while ( defined( my $value_ref = $recce->value() ) ) {
my $value = $value_ref ? ${$value_ref} : 'No parse';
push @actual, $value;
}
Marpa::R2::Test::is( ( join "\n", sort @actual ) . "\n",
$full_expected, 'Ambiguous English sentence using value()' );
my $panda_grammar = Marpa::R2::Scanless::G->new(
{ source => \$dsl } );
my $panda_recce = Marpa::R2::Scanless::R->new(
{ grammar => $panda_grammar,
semantics_package => 'PennTags' } );
$panda_recce->read( \$sentence );
my $asf = Marpa::R2::ASF->new( { slr=>$panda_recce } );
my $full_result = $asf->traverse( {}, \&full_traverser );
my $pruned_result = $asf->traverse( {}, \&pruning_traverser );
sub full_traverser {
# This routine converts the glade into a list of Penn-tagged elements
# by calling semantic action closures fetched from the recognizer.
# It is called recursively.
my ($glade, $scratch) = @_;
my $rule_id = $glade->rule_id();
my $symbol_id = $glade->symbol_id();
my $symbol_name = $panda_grammar->symbol_name($symbol_id);
# A token is a single choice and we just return it as a literal wrapped
# to match the rule closures parameter list
if ( not defined $rule_id ) {
return [ $glade->literal() ];
} ## end if ( not defined $rule_id )
# Our result will be a list of choices
my @return_value = ();
CHOICE: while (1) {
# The parse results at each position are a list of choices, so
# to produce a new result list, we need to take a Cartesian
# product of all the choices
# Marpa::R2::Display::Start
# name: ASF all_choices() traverser method example
my @results = $glade->all_choices();
# Marpa::R2::Display::End
# Special case for the start rule: just collapse one level of lists
if ( $symbol_name eq '[:start]' ) {
return [ map { join q{}, @{$_} } @results ];
}
# Now we have a list of choices, as a list of lists. Each sub list
# is a list of parse results, which we need to pass to the rule closures
# and join into a single Penn-tagged element. The result will be
# to collapse one level of lists, and leave us with a list of
# Penn-tagged elements.
# First, we take the semantic action closure of the rule as defined in the
# recognizer's semantic package.
my $closure = $panda_recce->rule_closure( $glade->rule_id() );
# Note: $glade->rule_id() is used instead of the above $rule_id, because
# $glade->next() must have been called and the current glade (and thus
# the rule) might have changed
# Now, we need to check if the semantic action of the rule is defined
# as a closure. For now, we just die if it is not.
#
# However, start, length, lhs, and values builtins can be emulated by
# using $glade->span(), $glade->symbol_id(), and $glade->rh_values().
# Still, defining closures would probably serve you better.
unless (defined $closure and ref $closure eq 'CODE'){
die "The semantics of Rule #" . $glade->rule_id() . "is not defined as a closure.";
}
push @return_value, map { $closure->( {}, @{$_} ) } @results;
# Look at the next alternative in this glade, or end the
# loop if there is none
last CHOICE if not defined $glade->next();
} ## end CHOICE: while (1)
# Return the list of Penn-tagged elements for this glade
return \@return_value;
} ## end sub full_traverser
my $cooked_result = join "\n", (sort @{$full_result}), q{};
Marpa::R2::Test::is( $cooked_result, $full_expected,
'Ambiguous English sentence using ASF' );
sub pruning_traverser {
# This routine converts the glade into a list of Penn-tagged elements. It is called recursively.
my ($glade, $scratch) = @_;
my $rule_id = $glade->rule_id();
my $symbol_id = $glade->symbol_id();
my $symbol_name = $panda_grammar->symbol_name($symbol_id);
# A token is a single choice, and we know enough to fully Penn-tag it
if ( not defined $rule_id ) {
return $glade->literal(); # wrap for the closure call
}
# Marpa::R2::Display::Start
# name: ASF rh_values() traverser method example
my @return_value = $glade->rh_values();
# Marpa::R2::Display::End
if ($symbol_name eq '[:start]'){
# Special case for the start rule
return $return_value[0] . "\n" ;
}
else{
my $closure = $panda_recce->rule_closure($rule_id);
die "The semantics of Rule $rule_id is not defined as a closure."
unless defined $closure and ref $closure eq 'CODE';
return $closure->( {}, @return_value );
}
}
my $pruned_expected = <<'END_OF_OUTPUT';
(S (NP (DT a) (NN panda))
(VP (VBZ eats) (NP (NNS shoots) (CC and) (NNS leaves)))
(. .))
END_OF_OUTPUT
Marpa::R2::Test::is( $pruned_result, $pruned_expected,
'Ambiguous English sentence using ASF: pruned' );
sub PennTags::do_S { "(S $_[1]\n $_[2]\n (. .))" }
sub PennTags::do_NP_NN { "(NP (NN $_[1]))" }
sub PennTags::do_NP_NNS { "(NP (NNS $_[1]))" }
sub PennTags::do_NP_DT_NN { "(NP (DT $_[1]) (NN $_[2]))" }
sub PennTags::do_NP_NN_NNS { "(NP (NN $_[1]) (NNS $_[2]))" }
sub PennTags::do_NP_NNS_CC_NNS { "(NP (NNS $_[1]) (CC $_[2]) (NNS $_[3]))" }
sub PennTags::do_VP_VBZ_NP { "(VP (VBZ $_[1]) $_[2])" }
sub PennTags::do_VP_VP_VBZ_NNS { "(VP $_[1] (VBZ $_[2]) (NNS $_[3]))" }
sub PennTags::do_VP_VP_CC_VP { "(VP $_[1] (CC $_[2]) $_[3])" }
sub PennTags::do_VP_VP_VP_CC_VP { "(VP $_[1] $_[2] (CC $_[3]) $_[4])" }
sub PennTags::do_VP_VBZ { "(VP (VBZ $_[1]))" }
1; # In case used as "do" file
|