You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to eliminate all "shortcuts" from the mainstream Segment and Generator сode so it refers to the LG rules only and not relies on the individual words from the examples or test corpora. For instance, like this:
(env) Antons-MacBook-Pro:src akolonin$ java main.java.org.aigents.nlp.gen.Segment en/4.0.dict tuna is a fish eagle is a bird dog is a mammal
tuna is a fish eagle is a bird dog is a mammal: [Tuna is a fish., Eagle is a bird., Dog is a mammal.]
(env) Antons-MacBook-Pro:src akolonin$ java main.java.org.aigents.nlp.gen.Generator en/4.0.dict fish tuna is a
[fish, tuna, is, a]: []
Potentially, Generator and Segment can be re-factored to use new "LG-based-only" LG parser only Added LG parser #32
Package naming policy should be changed to canonical form, so "package main.java.org.aigents.nlp.gen;" becomes "package org.aigents.nlp.gen;"
The text was updated successfully, but these errors were encountered:
Issues:
Need to eliminate all "shortcuts" from the mainstream Segment and Generator сode so it refers to the LG rules only and not relies on the individual words from the examples or test corpora. For instance, like this:
aigents-java-nlp/src/main/java/org/aigents/nlp/gen/Generator.java
Line 1348 in 6e4dbca
The code should work without based just on LG data, not "if"-s referring to specific tokens.
Can not use Generator following the instructions in https://github.com/aigents/aigents-java-nlp/#build-script - I see that Segment seems working but Generator is not:
Potentially, Generator and Segment can be re-factored to use new "LG-based-only" LG parser only Added LG parser #32
Package naming policy should be changed to canonical form, so "package main.java.org.aigents.nlp.gen;" becomes "package org.aigents.nlp.gen;"
The text was updated successfully, but these errors were encountered: