-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge master and reconcile differences #756
base: balaur
Are you sure you want to change the base?
Conversation
Make sure webapp testing works, especially in IntelliJ
Remove Tuple class use
Add mostSimilarWords, documentation, and example
Override some of the now protected methods
Regular expression and variable names in numeric routines
Clean up after my own complaints
Fixed the "Fall" filter bug
Thanks @kwalcock ! |
One test is failing: TestHash. This is because it makes use of - name: people-eat-food
priority: ${rulepriority}
label: Eating
example: "John eats cake"
graph: "hybrid"
pattern: |
trigger = [lemma=/eat/ & tag=/^V/]
food:Food = dobj
person:Person = nsubj and the Balaur processor doesn't seem to support hybrid graphs. That file is really there for the OdinStarter, so that won't work as intended. The graph type can probably be changed, but other users of processors will probably run into problems with their rules. FYI @MihaiSurdeanu |
I think we should populate the hybrid dependencies in this case from the enhanced ones that use just syntax. I will push a fix soon. |
One more idea: to avoid changing external code, maybe CluProcessor should be implemented as an alias for BalaurProcessor? |
See #759 for implementation of the alias idea. |
This is failing in TestNumericEntityRecognition where there is a timed test at the end. It is taking approximately 5 times longer to complete than it does in master. I'm not yet sure why. |
Hmm... Other than the "fall" changes, that code should not have changed. |
Both versions should have fall in them. This branch has the changes from master merged. I'll probably need to time CluProcessor vs. BalaurProcessor again. |
AFAIK this test has never been a problem before. The time limit used to be 20 seconds. I swapped the limit for a println and it showed the following results:
I'll try to find out where it's coming from. |
No description provided.