Tagged Questions
0
votes
1answer
24 views
Where to find formal grammar for Ruby on Rails, Cobal, and VSL?
Does anyone know where I can get the formal grammar for these languages especially Ruby on Rails?
I'm interested in looking at how the language is processed.
Thanks
1
vote
1answer
89 views
Checking English Grammar with NLTK [closed]
I'm starting to use the NLTK library, and I want to check whether a sentence in English is correct or not.
Example:
"He see Bob" - not correct
"He sees Bob" - correct
I read ...
0
votes
2answers
163 views
Check Grammar of a sentence using Parse score given by Stanford parser
I am able to parse a sentence and get the parse score using Stanford parser with the java code below
LexicalizedParser lp = LexicalizedParser.loadModel(
...
0
votes
1answer
479 views
checking if a sentence is grammatically correct using stanford parser [duplicate]
Is there any method to check if a sentence is grammatically correct or not using stanford parser? As of now am able to get the parse tree of a sentence using stanford parser. I got stuck here and ...
1
vote
0answers
190 views
Detecting meaningless and/or grammatically incorrect sentence with LanguageTool
I need to check spells and grammars in texts so I started using LanguageTool API (Can be found here). Now, when I am writing the start-up code provided by them as follows-
JLanguageTool langTool = ...
1
vote
1answer
54 views
Multiple-digit numbers getting split by space in NuGram?
I'm seeing some unexpected behavior in the NuGram IDE Eclipse plug-in for ABNF grammar development.
Say I have a rule that reads:
$fifties =
50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59
;
...
1
vote
1answer
642 views
Check English grammar
I am looking for a simple C# library that does the following: Takes a string representing a single sentence, and returns a boolean saying if it's grammatically correct.
I have not been able to find a ...
3
votes
1answer
2k views
How to check whether a sentence is correct (simple grammar check in Python)?
How to check whether a sentence is valid in Python?
Examples:
I love Stackoverflow - Correct
I Stackoverflow love - Incorrect
0
votes
1answer
249 views
OpenNLP Extract Grammar
I'm currently looking through opennlp source code trying to find/understand the grammar that they use for chunking. This is not one of the easiest tasks. I started looking through the chunkermodel and ...
4
votes
3answers
617 views
Finding meaningful sub-sentences from a sentence
Is there a way to to find all the sub-sentences of a sentence that still are meaningful and contain at least one subject, verb, and a predicate/object?
For example, if we have a sentence like "I am ...
17
votes
2answers
314 views
How to know if two words have the same base?
I want to know, in several languages, if two words are:
either the same word,
or the grammatical variants of the same word.
For example:
had and has has the same base: in both cases, it's the ...
18
votes
3answers
537 views
Selecting the most fluent text from a set of possibilities via grammar checking (Python)
Some background
I am a literature student at New College of Florida, currently working on an overly ambitious creative project. The project is geared towards the algorithmic generation of poetry. ...
6
votes
1answer
627 views
Some NLP stuff to do with grammar, tagging, stemming, and word sense disambiguation in Python
Background (TLDR; provided for the sake of completion)
Seeking advice on an optimal solution to an odd requirement.
I'm a (literature) student in my fourth year of college with only my own guidance ...
1
vote
2answers
1k views
How do I do dependency parsing in NLTK?
Going through the NLTK book, it's not clear how to generate a dependency tree from a given sentence.
The relevant section of the book:sub-chapter on dependency grammar gives an example figure but it ...
10
votes
2answers
2k views
English grammar for parsing in NLTK
Is there a ready-to-use English grammar that I can just load it and use in NLTK? I've searched around examples of parsing with NLTK, but it seems like that I have to manually specify grammar before ...
1
vote
0answers
130 views
English Grammar / Vocab tools?
I'm looking for data/libraries useful for analyzing English vocabulary and grammar. I'm attempting to build my own analysis software as a side-project of mine (e.g. read in a paragraph, and get some ...
1
vote
2answers
424 views
How would I go about categorizing sentences according to tense (present, past, future, etc.)?
I want to parse a text and categorize the sentences according to their grammatical structure, but I have a very small understanding of NLP so I don't even know where to start.
As far as I have read, ...
7
votes
3answers
2k views
Combining a Tokenizer into a Grammar and Parser with NLTK
I am making my way through the NLTK book and I can't seem to do something that would appear to be a natural first step for building a decent grammar.
My goal is to build a grammar for a particular ...
7
votes
1answer
301 views
Problems with Prolog's DCG
The project is about translating semi-natural language to SQL tables. The code:
label(S) --> label_h(C), {atom_codes(A, C), string_to_atom(S, A)}, !.
label_h([C|D]) --> letter(C), ...
7
votes
8answers
4k views
Efficient Context-Free Grammar parser, preferably Python-friendly
I am in need of parsing a small subset of English for one of my project, described as a context-free grammar with (1-level) feature structures (example) and I need to do it efficiently .
Right now ...
6
votes
3answers
978 views
Grammar production class implementation in C#
Grammar by definition contains productions, example of very simple grammar:
E -> E + E
E -> n
I want to implement Grammar class in c#, but I'm not sure how to store productions, for example ...
2
votes
3answers
334 views
Natural language grammar and user-entered names
Some languages, particularly Slavic languages, change the endings of people's names according to the grammatical context. (For those of you who know grammar or studied languages that do this to words, ...
5
votes
1answer
471 views
CLI grammar checker for determining tense
I like to use the present tense in my Git logs (for example, "Add feature" instead of "Added feature"). Currently, I have an extremely naive Git hook that aborts the commit if the first word of the ...
3
votes
3answers
493 views
Produce a sentence from a grammar with a given number of terminals
Say you've got a toy grammar, like: (updated so the output looks more natural)
S -> ${NP} ${VP} | ${S} and ${S} | ${S}, after which ${S}
NP -> the ${N} | the ${A} ${N} | the ${A} ${A} ${N}
VP ...
8
votes
6answers
376 views
Appropriate article (a/an) in String.Format
I'm looking for a culturally-sensitive way to properly insert a noun into a sentence while using the appropriate article (a/an). It could use String.Format, or possibly something else if the ...
39
votes
51answers
8k views
Is there a human readable programming language? [closed]
I mean, is there a coded language with human style coding?
For example:
Create an object called MyVar and initialize it to 10;
Take MyVar and call MyMethod() with parameters. . .
I know it's not so ...
