Tagged Questions
N-gram pertains to the analysis of sequences of things -- usually words, but could be letters, numbers, syllables etc. N-gram analysis typically employs statistical, information-theory, and/or cryptographic techniques.
18
votes
4answers
798 views
“Anagram solver” based on statistics rather than a dictionary/table?
My problem is conceptually similar to solving anagrams, except I can't just use a dictionary lookup. I am trying to find plausible words rather than real words.
I have created an N-gram model (for ...
9
votes
3answers
715 views
Can Drupal's search module search for a substring? (Partial Search)
Drupal's core search module, only searches for keywords, e.g. "sandwich". Can I make it search with a substring e.g. "sandw" and return my sandwich-results?
Maybe there is a plugin that does that?
7
votes
2answers
323 views
Extract keyphrases from text (1-4 word ngrams)
What's the best way to extract keyphrases from a block of text? I'm writing a tool to do keyword extraction: something like this. I've found a few libraries for Python and Perl to extract n-grams, but ...
7
votes
2answers
2k views
N-grams: Explanation + 2 applications
I want to implement some applications with n-grams (preferably in PHP).
Which type of n-grams is more adequate for most purposes? A word level or a character level n-gram? How could you implement ...
5
votes
3answers
2k views
N-gram generation from a sentence
How to generate an n-gram of a string like:
String Input="This is my car."
I want to generate n-gram with this input:
Input Ngram size = 3
Output should be:
This
is
my
car
This is
is my
my car
...
5
votes
5answers
342 views
Perl paragraph n-gram
Let's say I have a sentence of text:
$body = 'the quick brown fox jumps over the lazy dog';
and I want to get that sentence into a hash of 'keywords', but I want to allow multi-word keywords; I ...
4
votes
2answers
104 views
NLP algorithm to 'fill out' search terms
I'm trying to write an algorithm (which I'm assuming will rely on natural language processing techniques) to 'fill out' a list of search terms. There is probably a name for this kind of thing which ...
3
votes
1answer
72 views
How to store large number of ngrams efficently?
I am extracting 4-grams from binary items in hexadecimal form, this mean I can have at most 65535 different grams per item.
I want to associate every item to it's grams and their frequency but I am ...
3
votes
2answers
152 views
Using Markov models to convert all-caps to mixed-case and related problems
I've been thinking about using Markov techniques to restore missing information to natural language text.
Restore all-caps text to mixed-case.
Restore accents / diacritics to languages which should ...
3
votes
2answers
594 views
Probability transition matrix
I'm working on Markov Chains and I would like to know of efficient algorithms for constructing probabilistic transition matrices (of order n), given a text file as input.
I am not after one ...
2
votes
1answer
85 views
Generating an n-gram table with an SQL query
I'm trying to implement a fuzzy search with JavaScript client side, to search a largish db (300 items roughly) of records contained in an SQL database. My constraint is that it is not possible to ...
2
votes
1answer
94 views
How to generate n-grams in scala?
I am trying to code dissociated press algorithm based on n-gram in scala.
How to generate an n-gram for a large files:
For example, for the file containing "the bee is the bee of the bees".
First ...
2
votes
1answer
207 views
Fast n-gram calculation
I'm using NLTK to search for n-grams in a corpus but it's taking a very long time in some cases. I've noticed calculating n-grams isn't an uncommon feature in other packages (apparently Haystack has ...
2
votes
1answer
94 views
n-gram counting in MySQL
I am building a MySQL database that will have roughly 10,000 records. Each record will contain a textual document (a few pages of text in most cases). I want to do all sorts of n-gram counting ...
2
votes
1answer
72 views
Automatically linking categories to each other when categorizing text
I've been working on a project to data-mine a large amount of short texts and categorize these based on a pre-existing large list of category names. To do this I had to figure out how to first create ...
2
votes
1answer
109 views
where to download multi language word list from Wiktionary?
I was wondering if there was a place to download multi-language word lists from Wiktionary?
2
votes
1answer
376 views
Calculating point-wise mutual information (PMI) score for n-grams in Python
I have a large corpus of n-grams and several external n-grams. I want to calculate the PMI score of each external n-gram based on this corpus (the counts).
Are there any tools to do this or can ...
2
votes
1answer
1k views
ElasticSearch n-gram tokenfilter not finding partial words
I have been playing around with ElasticSearch for a new project of mine. I have set the default analyzers to use the ngram tokenfilter. This is my elasticsearch.yml file:
index:
analysis:
...
2
votes
1answer
561 views
Autocomplete via shingles and termvector component
One of the ways to go about Google-like auto-completion is to combine shingles and the termvector component in Solr 1.4.
First we generate all n-gram distributions with the shingles component and ...
2
votes
2answers
895 views
N-gram function in vb.net -> create grams for words instead of characters
I recently found out about n-grams and the cool possibility to compare frequency of phrases in a text body with it. Now I'm trying to make an vb.net app that simply gets an text body and returns a ...
2
votes
3answers
1k views
Recommendation needed: Rails, Postgres and fuzzy full text search
I have Rails app with a Postgres backend.
I need to add full text search which would allow fuzzy searches based on Levenshtein distance or other similar metrics. Add the fact that the lexer/stemmer ...
1
vote
2answers
37 views
Compressing text using recursive N-Grams
I was just kicking around the idea of breaking up a large group of text into a single integer by using recursive 2-Gram storage until there is only one value left.
table pair
{
id
...
1
vote
1answer
163 views
What algorithm I need to find n-grams?
What algorithm is used for finding ngrams?
Supposing my input data is an array of words and the size of the ngrams I want to find, what algorithm I should use?
I'm asking for code, with preference ...
1
vote
2answers
121 views
SOLR: problems with NGramFilterFactory
I am running SOLR as search engine for an intranet with just over 40000 docs. I keep it very simple by using the copyField directive to copy the title and the keywords fields to the content field and ...
1
vote
2answers
110 views
Storing Text in a Semi-Searchable but Compact Format
I would like to pull the Google N-Gram datasets for use on some commodity hardware. The problem is that these small servers can't handle the size of the data that needs to be stored.
This started me ...
1
vote
1answer
393 views
Solr NGramTokenizerFactory and PatternReplaceCharFilterFactory - Analyzer results inconsistent with Query Results
I am currently using what I (mistakenly) thought would be a fairly straightforward implementation of Solr's NGramTokenizerFactory, but I'm getting strange results that are inconsistent between the ...
1
vote
1answer
155 views
N-gram text categorization category size difference compensation
Lately I've been mucking about with text categorization and language classification based on Cavnar and Trenkle's article "N-Gram-Based Text Categorization" as well as other related sources.
For ...
1
vote
1answer
144 views
Storing tri-grams in database or generate on-the-fly?
I'm trying to create an application which uses trigrams for approximate string matching. Now all the records are in the database and i want to be able to search the records on a fixed column. Is it ...
1
vote
0answers
685 views
n-gram modeling with java hashmap
I need to model a collection of n-grams (sequences of n words) and their contexts (words that appear near the n-gram along with their frequency). My idea of was this:
public class Ngram {
...
1
vote
1answer
394 views
Android & fuzzy matching, n-gram, and Levenshtein distance
I am building an Android app which takes a string input and returns a ranked list of books using the Google API.
I am looking for a way to compare the open ended string that the user enters, with ...
1
vote
3answers
82 views
Close to serial textfile reading performance in MySQL
I am trying to perform some n-gram counting in python and I thought I could use MySQL (MySQLdb module) for organizing my text data.
I have a pretty big table, around 10mil records, representing ...
1
vote
1answer
819 views
n-gram sentence similarity with cosine similarity measurement
I have been working on a project about sentence similarity. I know it has been asked many times in SO, but I just want to know if my problem can be accomplished by the method I use by the way that I ...
1
vote
1answer
172 views
Extracting n-grams as words from strings in Perl
Is there a module or Perl code that extract n-grams of words from a string besides Text::Ngrams?
1
vote
2answers
780 views
How to implement a spectrum kernel function in MATLAB?
A spectrum kernel function operates on strings by counting the same n-grams in between two strings. For example, 'tool' has three 2-grams ('to', 'oo', and 'ol'), and the similarity between 'tool' and ...
0
votes
1answer
32 views
Solr ngram does not match number?
I'm using the standard Solr ngram field definition --
<fieldType name="ngram" class="solr.TextField" positionIncrementGap="100" stored="false" multiValued="true">
<analyzer ...
0
votes
2answers
100 views
quicker way to detect n-grams in a string?
I found this solution on SO to detect n-grams in a string:
(here: N-gram generation from a sentence)
import java.util.*;
public class Test {
public static List<String> ngrams(int n, ...
0
votes
1answer
39 views
Any suggestion other than Solr n-gram
I'm using solr 3.5, but I have encountered a problem.
Which I want to do is to compare each line in file1 with the reference listed in file2. But in file1, the data is not necessarily write correctly. ...
0
votes
1answer
78 views
nGrams in apache mahout
I am running the naive bayes classifier algorithm through apache mahout. We have the option to set up the gram size while training and running the algorithm's instance.
Changing my n-Gram size from 1 ...
0
votes
1answer
53 views
Save Google NGram result as .csv
Is there an easy way, to save a Google Ngram result
http://books.google.com/ngrams/
as a csv?
So that I get a list like
1900 peace 500000times
1901 peace 540000times
and so on?
I downloaded ...
0
votes
0answers
25 views
estimating count of a missing n-gram
I want to estimate count of a n-gram using its constituent (n-1)-grams. I want to estimate the count and not the probability so I cannot directly use the Katz backoff model. So my questions are;
...
0
votes
2answers
120 views
The more I use a Java HashMap, the more the performance drops - even with stable size
I want to scan through a huge corpus of text and count word frequencies (n-gram frequencies actually for those who are familiar with NLP/IR). I use a Java HashMap for this. So what happens is I ...
0
votes
2answers
208 views
Package to generate n-gram language models with smoothing? (Alternatives to NLTK)
I'd like to find some type of package or module (preferably Python or Perl, but others would do) that automatically generate n-gram probabilities from an input text, and can automatically apply one or ...
0
votes
1answer
293 views
N-Gram, tf-idf and Cosine similarity in Perl
I am trying to do some pattern 'mining' in piece of multi word on each line. I have done the N-gram analysis using the Text::Ngrams module in perl which give me the frequency of each word . I am ...
0
votes
1answer
469 views
What is the difference between EdgeNGramTokenizerFactory EdgeNGramFilterFactory in SOLR?
What is the difference between these two filters?
They seem to have the same effect?
Can anyone supply an example of how they are applied to some text?
0
votes
4answers
820 views
N-gram split function for string similarity comparison
As part of excersise to better understand F# which I am currently learning , I wrote function to
split given string into n-grams.
1) I would like to receive feedback about my function : can this be ...
0
votes
1answer
162 views
What is the empirically found best value for n in n-gram model?
I am implementing a variation of spell checker. After taking various routes (for improving the time efficiency) I am planning to try out a component which would involve use of n-gram model. So ...
0
votes
3answers
263 views
How was the Google Books' Popular passages feature developed?
I'm curious if anyone understands, knows or can point me to comprehensive literature or source code on how Google created their popular passage blocks feature. However, if you know of any other ...
-2
votes
3answers
61 views
generating bi-gram from a sentence in the list
i have a list which contains sentences split up from a test paragraph. I'm trying to generate bi-grams from this list of sentences. but i'm getting :
<itertools.izip object at 0x029E5080>
My ...
-2
votes
2answers
72 views
unigram using python
i'm trying to generate unigram from a text file. But only the bigram for the first line of the given file is shown. I want to show unigram for all the sentences in the file.
import string;
import ...