#language #cnf #nlp #cyk

rusty_grammar

A modified CYK algorithm to work for Language

2 releases

0.1.2 Sep 13, 2020
0.1.1 Sep 13, 2020

#2090 in Algorithms

GPL-3.0+

17KB
238 lines

rusty_grammar   Latest Version API rusty_grammar: rustc 1.46.0+

rusty_grammar is a library that makes use of a modified CYK algorithm to define grammars and understand language.

Example

struct G {}

impl<'grammar> Grammar<'grammar> for G {
	fn convert(&self) -> Vec<GrammarRule<'grammar>> {
		let mut rules = Vec::new();
		rules.push(GrammarRule{ left_symbol: "ActionSentence", right_symbol: "Verb NounClause | Verb NounClause PrepClause" });
		rules.push(GrammarRule{ left_symbol: "NounClause", right_symbol: "Count ANoun | Adjective Noun" });
		rules.push(GrammarRule{ left_symbol: "PrepClause", right_symbol: "Prep NounClause" });
		rules.push(GrammarRule{ left_symbol: "ANoun", right_symbol: "Adjective Noun" });
		rules.push(GrammarRule{ left_symbol: "Adjective", right_symbol: "adjective" });
		rules.push(GrammarRule{ left_symbol: "Prep", right_symbol: "prep" });
		rules.push(GrammarRule{ left_symbol: "Verb", right_symbol: "verb" });
		rules.push(GrammarRule{ left_symbol: "Noun", right_symbol: "noun" });
		rules.push(GrammarRule{ left_symbol: "Count", right_symbol: "definiteArticle | indefiniteArticle | number" });
		rules
	}
}

struct WB {}

impl WordBank for WB {
	fn lookup(&self, word: &str) -> &str {
		match word {
			"examine" => "verb",
			"sword" => "noun",
			"rusty" => "adjective",
			_ => "dne"
		}
	}
}

fn main() {
	let g = G{};
	let wb = WB{};
	let input = "examine rusty sword";
	let cyk: CYK<WB> = CYK::new(g, wb);
	let res = cyk.memoized_parse(input);
	println!("{}", res);
	println!("final_res: {:?}", res.get_final());
}

Dependencies

~500KB