require 'rley' # Load Rley library ######################################## # Step 1. Define a grammar for a pico English-like language # based on example from NLTK book (chapter 8 of the book). # Bird, Steven, Edward Loper and Ewan Klein: "Natural Language Processing # with Python"; 2009, O’Reilly Media Inc., ISBN 978-0596516499 # It defines the syntax of a sentence in a mini English-like language # with a very simplified syntax and vocabulary # Instantiate a builder object that will build the grammar for us builder = Rley::Syntax::GrammarBuilder.new do # Next 2 lines we define the terminal symbols # (= word categories in the lexicon) add_terminals('Noun', 'Proper-Noun', 'Verb') add_terminals('Determiner', 'Preposition') # Here we define the productions (= grammar rules) rule 'S' => %w[NP VP] rule 'NP' => 'Proper-Noun' rule 'NP' => %w[Determiner Noun] rule 'NP' => %w[Determiner Noun PP] rule 'VP' => %w[Verb NP] rule 'VP' => %w[Verb NP PP] rule 'PP' => %w[Preposition NP] end # And now, let's build the grammar... grammar = builder.grammar ######################################## # Step 2. Creating a lexicon # To simplify things, lexicon is implemented as a Hash with pairs of the form: # word => terminal symbol name Lexicon = { 'man' => 'Noun', 'dog' => 'Noun', 'cat' => 'Noun', 'telescope' => 'Noun', 'park' => 'Noun', 'saw' => 'Verb', 'ate' => 'Verb', 'walked' => 'Verb', 'John' => 'Proper-Noun', 'Mary' => 'Proper-Noun', 'Bob' => 'Proper-Noun', 'a' => 'Determiner', 'an' => 'Determiner', 'the' => 'Determiner', 'my' => 'Determiner', 'in' => 'Preposition', 'on' => 'Preposition', 'by' => 'Preposition', 'with' => 'Preposition' }.freeze ######################################## # Step 3. Creating a tokenizer # A tokenizer reads the input string and converts it into a sequence of tokens # Highly simplified tokenizer implementation. def tokenizer(aTextToParse, aGrammar) tokens = aTextToParse.scan(/\S+/).map do |word| term_name = Lexicon[word] raise StandardError, "Word '#{word}' not found in lexicon" if term_name.nil? terminal = aGrammar.name2symbol[term_name] Rley::Lexical::Token.new(word, terminal) end return tokens end ######################################## # Step 4. Create a parser for that grammar # Easy with Rley... parser = Rley::Parser::GFGEarleyParser.new(grammar) ######################################## # Step 5. Parsing the input input_to_parse = 'John saw Mary with a telescope' # input_to_parse = 'the dog saw a man in the park' # This one is ambiguous # Convert input text into a sequence of token objects... tokens = tokenizer(input_to_parse, grammar) result = parser.parse(tokens) puts "Parsing successful? #{result.success?}" unless result.success? puts result.failure_reason.message exit(1) end ######################################## # Step 6. Generating a parse tree from parse result ptree = result.parse_tree # Let's create a parse tree visitor visitor = Rley::ParseTreeVisitor.new(ptree) # Let's create a formatter (i.e. visit event listener) # renderer = Rley::Formatter::Debug.new($stdout) # Let's create a formatter that will render the parse tree with characters renderer = Rley::Formatter::Asciitree.new($stdout) # Let's create a formatter that will render the parse tree in labelled # bracket notation # renderer = Rley::Formatter::BracketNotation.new($stdout) # Subscribe the formatter to the visitor's event and launch the visit renderer.render(visitor) # End of file