Questions tagged [natty]
27 questions
4
votes
1 answer
Segmentation fault when importing module in Python
I have a Python script that uses natural language date parser Natty. Natty itself is written in Java but wrapped for its use in Python using Jpype. The script works perfectly fine on my development machine but throws an segmentation fault on the…

Christian
- 3,239
- 5
- 38
- 79
4
votes
2 answers
Including Natty in Android project
I've been trying a variety of ways for the past couple of hours to include Natty (http://natty.joestelmach.com/) into an Android app. I have tried to include JAR files I have compiled from the github repository (https://github.com/joestelmach/natty)…

User24231
- 506
- 1
- 7
- 20
3
votes
2 answers
Netbeans C++ Program has no terminal output
It's not a weird program. It's a simple C++ Hello World program, and for whatever reason there is no output to the terminal either in the terminal or in the output window. Here's my "code".
#include
#include
using namespace…

avatarmonkeykirby
- 339
- 1
- 3
- 11
3
votes
1 answer
Which version of percona db package should i install in ubuntu Natty Narwhal?
I am new to both percona & Ubuntu. According to this page percona is only available for
* etch
* hardy
* lenny
* lucid
* maverick
* squeeze
But i am using 11.04 (Natty). Can someone recommend me which version should i choose?

RameshVel
- 64,778
- 30
- 169
- 213
3
votes
1 answer
Natty converting from anlr3 to antlr 4
as I'm new to antlr I have plenty of problems with syntactic predicates.
I'v been trying to convert this grammar,which is part of natty grammar, in order to parse it with antlr4,I really got confused how to change it in a meaningful way.
date_time
…

rozhin bayati
- 63
- 3
3
votes
0 answers
Natty date time parser too many logs
I am using natty date / time parser for parsing arbitrary formatted date / time string. It is producing too many logs:
016-08-24 18:22:22,821 INFO [com.joestelmach.natty.Parser]
(pool-4-thread-1) AST: (DATE_TIME_ALTERNATIVE (DATE_TIME
…

user1539343
- 1,569
- 6
- 28
- 45
3
votes
1 answer
I only have two presets for ffmpeg x264 in ubuntu 11.04
I'me trying to install (compile) ffmpeg for ubuntu 11.04 by following this guide:
https://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide
Overall it works. Except for some errors with checkinstall due to numbering, which i resolved with…

Julian
- 253
- 3
- 14
2
votes
1 answer
libcurl kubuntu 11.04
I'm trying to compile some application on my kubuntu (no package is available) and while configuring the app it prints out this error:
checking for curl-config... no
checking whether libcurl is usable... no
configure: error: Missing required libcurl…

Trakhan
- 463
- 1
- 6
- 15
2
votes
1 answer
how to skip "and" with skip rule?
I'm working on a new antlr grammar which is similar to nattys and should recognize date expressions, but I have problem with skip rules. In more detail I want to ignore useless "and"s in expressions for example:
Call Sam, John and Adam and fix a…

rozhin bayati
- 63
- 3
2
votes
1 answer
What's wrong with how I am using maven to build natty?
I am trying to use NATTY by including it as a maven dependency. I just did the Hello, World Maven tutorial -- but am otherwise unfamiliar with Maven. The instructions on the natty site say to include natty as a dependency in the pom.xml. I have done…

bernie2436
- 22,841
- 49
- 151
- 244
2
votes
1 answer
Painfully slow compilation for android (maven, natty)
I'm trying to use Natty NLP library in my Android project.
I've set up new hello world project in IntelliJ with Maven (as described in this article; just downloaded the template) and added Natty as a dependency.
public void onCreate(Bundle…

Grzegorz Świrski
- 381
- 2
- 4
1
vote
1 answer
Android Device Not Found (Recognised) On Ubuntu Natty
I have done some Android development on Windows using Eclipse and everything worked just fine... Now I installed Eclipse on Ubuntu and downloaded the SDK and stuff, made a udev rule (in 99-android.rule file, because I am using 11.04), restarted…

Pijusn
- 11,025
- 7
- 57
- 76
1
vote
1 answer
Nginx Setup on Ubuntu
I'm trying to setup nginx with passenger to work on Ubuntu with RVM.
I should get my apps home page when i go to localhost, instead I recieve the default nginx home page.
user antarr;
worker_processes 1;
#error_log logs/error.log;
#error_log …

Antarr Byrd
- 24,863
- 33
- 100
- 188
1
vote
1 answer
Converting from Antlr3 to Antlr4
I am in the process of converting an antlr3 to antlr4 grammar. I have stripped out all the syntactic predicates. I am struggling to make a correct conversion of this
relaxed_date_month_first
: relaxed_day_of_week? relaxed_month COMMA?…

Siya Mzam
- 4,655
- 1
- 26
- 44
1
vote
1 answer
How can i use natty-master?
I should use natty-master in my android project. But i couldn't import it. How can i use natty without maven? I find these codes, i added jars but it doesn't work.
import java.util.Date;
import java.util.List;
import java.util.Map;
import…

ebruszl
- 469
- 4
- 11
- 27