Solving Homophone Confusion [closed] - nlp

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
This may be a question that is not suitable for stackoverflow, but I had no other better place to ask it. I was wondering if there are any known tools (non-commercial) that can be used to solve the homophone confusions such as these in a sentence?
it's vs its
you're vs your
I am new to NLP and I haven't used any of the known tools. Tried to search for these in google but nothing useful shows up. Are there any parts in NLTK or CoreNLP that cover this?

I have no experience with this topic but I found a how to PDF that may be of some use to you.
How to solve homophone problems

It's no complete solution, but LanguageTool has some rules for this. See the rule file and search for rulegroup id="IT_IS"(disclaimer: I'm the maintainer of LanguageTool). After the Deadline also uses a rule-based approach, only that it tries to avoid useless suggestions by filtering its suggestion against a large n-gram database.

Related

Open source search engines : alternatives to Lucene [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Currently we are using Lucene for our search engine, but we want to look at some alternatives. I have looked at several on the net but seems like a lot of them are out of date or the development stopped. That is why I want to ask if you guys know any good open-source alternatives to Lucene that are still in development?
Kind regards,
Merlijn
Try Sphinx search http://sphinxsearch.com/. It is used by many NLP researchers.
If you are looking for an open source and Java based alternative, then you could try Terreir. Note that Terrier targets academia.
If the language is not an issue, then you could look at Xapian. I found its community quite active, and it has participated in Google Summer of Code several times.
Otherwise, you could try Whoosh, a python based search library.
FastcatSearch is also open source and java based alternative.
Lucene is a IR library as already you know, Solr is a search server, and FastcatSearch is a counterpart of Solr.
It provides web-based manager, so that you can set up configs easily.

Colloborative programming with compiler [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Does anyone know of any software like Google Docs, or collabedit that allows you to edit realtime collaboratively and even compile a .cpp or other program over the web?
I haven't used this website, but seems like http://codebunk.com/ does the job.
It doesn't work for Java though.
I know of this website that will compile the code for you:
http://ideone.com/
Unfortunately, I cannot help in the real time editing front.
I wrote a little webapp that does exactly that, i.e. it lets you compile Google Docs documents: http://compiler.m01.eu
You can write C++ code into a Google Document (and do that collaboratively if you like), and then click on a bookmark (provided on the site) to compile your code, which will either start the download of your binary or show a compiler error message.

Examples of ridiculously simple but useful web apps written in JavaScript? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm curious if anyone is using any web app that is extremely simple (very few lines of code). Something that helps you with something practical in your daily life? I'm learning JavaScript and I would like to see examples so that I can build my own, but I want it to be useful so I feel motivated enough to build it.
The d3 page has some awesome examples of really neat yet simple applications: http://mbostock.github.com/d3/

What is the state-of-art in extracting Noun Phrases from a textual content? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am looking at Stanford NLP Parser for extracting noun phrases from a text. Is there something better that can be used for free?
If you're working on English data, check out the Illinois chunker. I've yet to try it out, but it's pretty new and the folks at Illinois tend to write good NLP software.
Update: the project is available on github now: https://github.com/IllinoisCogComp/illinois-cogcomp-nlp/tree/master/chunker
Can't say about better, but there are a lot of them for free
LingPipe, OpenNLP, Mallet, NLTK (Python)

What are some websites where I can search for public source code? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I know of Google Code, which I presently use to search through publicly available source code.
However, is there a better website where I can search through public source code? Specifically, it would be nice if I could easily locate code in Sourceforge and CodePlex.
Few questions which might be of interest to you! You can also check out the related questions.
https://stackoverflow.com/questions/90300/in-house-full-text-search-engine-for-source-code-and-sql-scripts
What are the open source code search engines you know about?
Source code of big/popular websites
koders.com
Google code search

Resources