An N-gram is an ordered collection of N elements of the same kind, usually presented in a large collection of many other similar N-grams. The individual elements are commonly natural language words, though N-grams have been applied to many other data types, such as numbers, letters, genetic proteins ...
0
votes
0answers
15 views
Searching for word-level n-grams in corpus in Neo4j
I have a corpus of short documents (articles) and associated metadata (author, source, date, category) that I plan to store in Neo4j so I can do queries that use relations between both metadata and ...
1
vote
0answers
28 views
Simulating a Markov Chain with Neo4J
A Markov chain is composed of a set of states which can transition to other states with a certain probability.
A Markov chain can be easily represented in Neo4J by creating a node for each state, a ...
0
votes
0answers
19 views
Ngram model and perplexity in NLTK
To put my question in context, I would like to train and test/compare several (neural) language models. In order to focus on the models rather than data preparation I chose to use the Brown corpus ...
2
votes
1answer
32 views
Converting a list of tokens to n-grams
I have a list of documents that have already been tokenized:
dat <- list(c("texaco", "canada", "lowered", "contract", "price", "pay",
"crude", "oil", "canadian", "cts", "barrel", "effective", ...
0
votes
1answer
18 views
Validating length of ngrams in varchar field in mySQL
I have a column in a table in MySQL which contains ngrams, and I want to validate that each ngram is of the correct length.
For e.g. if the ngram is 'sophisticated hacking scheme' then the number of ...
0
votes
1answer
35 views
How to get the array of all ngrams in Perl Text::Ngrams
As you know the module Text::Ngrams in Perl can give Ngrams analysis. There is the following function to retrieve the array of Ngrams and frequencies.
...
8
votes
2answers
122 views
Understanding cyclic polynomial hash collisions
I have a code that uses a cyclic polynomial rolling hash (Buzhash) to compute hash values of n-grams of source code. If i use small hash values (7-8 bits) then there are some collisions i.e. different ...
-1
votes
0answers
10 views
How to get the user token from Microsoft Web N-gram Service [closed]
I know I should email to Microsoft to get the user token. However, My English is poor and I just want to know how to write the emial.Who can help me???!!!Thank you ^_^
0
votes
0answers
66 views
How to calculate N-Grams
I encounter a problem when trying to figure out how n-grams is calculated.
I am wondering that when calculating n-grams(not the frequency), can the positions of common elements be exchanged ?
These ...
0
votes
0answers
47 views
Getting User Token for Microsoft Web N-Gram Service (Public Beta)
I want to use the Python Library of the Microsoft Web N-Gram Service (Public Beta) but I have to retrieve a user token from Microsoft Research in order to do so. I cannot however find how to retrieve ...
0
votes
2answers
161 views
Training and evaluating bigram/trigram distributions with NgramModel in nltk, using Witten Bell Smoothing
I would like to train an NgramModel on one set of sentences, using Witten-Bell smoothing to estimate the unseen ngrams, and then use it to get the log-likelihood of a test set having been generated by ...
0
votes
0answers
22 views
java library for byte ngrams?
I'm looking for a java library that will be able to provide me with all the n-grams, n-grams frequencies when provided with a byte-array?
For example given byte array
2F 2A 0A 20 2A 20 76 69
for ...
0
votes
0answers
12 views
Getting started on Boolean structured query search engine?
Not sure exactly what it's called (that by itself should make a good start) but I'm wanting to get a basic understanding of web search queries that use Boolean decision trees. For example, I can type ...
0
votes
1answer
59 views
In solr which kind of searches are better (performance-wise) ? Autocomplete with EdgeNGram or wildcard searches?
I have a data set of around 40k rows with each row having 4 fields. Now I want to use an autocomplete mechanism for these 4 fields in textbox (Have to concatenate the values in these 4 fields into one ...
0
votes
1answer
44 views
What are the most feasible options to do processing on google books n-gram dataset using modest resources?
I need to calculate word co-occurrence statistics for some 10,000 target words and few hundred context words, for each target word, from n-gram corpus of google books
Below is the link of the full ...
0
votes
0answers
216 views
Simple n-gram algorithm
I am looking for an algorithm (or C#, Java source) that can find n-grams in sentences. Specifically, I have a vocabulary of 100 words (w1 to w100) and sentences composed of these words (s1, s2, s3 ...
0
votes
1answer
78 views
creating Trigrams using LinkedHashMap java
I am trying to create a trigram model using LinkedHashMap>
where Entry is the entry of last inputed bigram (whose structure is:
LinkedHashMap
Now the problem is, being a map it does not store ...
0
votes
1answer
63 views
Can I protect short words from an n-gram filter in Solr?
I have seen this question about searching for short words in Solr. I am wondering if there is another possible solution to a similar problem. I am using the EdgeNGramFilter with a minGramSize of 3. ...
0
votes
2answers
118 views
Accessing n-gram frequencies from a large file
I'm quite new to natural language processing and java programming. I have a very large text file containing ngrams and related frequencies (aaprox. 250 mb). I need to get the frequency value, given an ...
1
vote
0answers
17 views
ngram modeling, how to conduct cross-validation
I'm trying to understand how cross validation works in the context of ngram models. I understand that the model essentially lists the probability of each ngram from a corpus in training. However, how ...
0
votes
0answers
42 views
The best practice of setting up our web service
We are trying to build a powerful search engine for our web service. We have no personnel with this kind of experience, we are all students and still learning. We have a structure in our mind, but ...
3
votes
2answers
223 views
Natural Language Processing - Similar to ngram
I'm currently working on a NLP project that is trying to differentiate between synonyms (received from Python's NLTK with WordNet) in a context. I've looked into a good deal of NLP concepts trying to ...
0
votes
1answer
85 views
solr NGramFilterFactory does not work on numbers
I do not know if this is a bug or feature but Solr NGramFilterFactory does not work on numbers.
Here is my field type:
<fieldType name="phone_test" class="solr.TextField" ...
3
votes
1answer
137 views
Comparison of binary vs tfidf Ngram features in sentiment analysis / classification tasks?
Simple question again: Is it better to use Ngrams (unigram/ bigrams etc) as simple binary features or rather use their Tfidf scores in ML models such as Support Vectory Machines for performing NLP ...
1
vote
2answers
472 views
counting n-gram frequency in python nltk
I have the following code. I know that I can use apply_freq_filter function to filter out collocations that are less than a frequency count. However, I don't know how to get the frequencies of all the ...
2
votes
2answers
305 views
NLTK makes it easy to compute bigrams of words. What about letters?
I've seen tons of documentation all over the web about how the python NLTK makes it easy to compute bigrams of words.
What about letters?
What I want to do is plug in a dictionary and have it tell ...
0
votes
2answers
349 views
n-grams with Naive Bayes classifier
Im new to python and need help!
i was practicing with python NLTK text classification.
Here is the code example i am practicing on
...
0
votes
0answers
180 views
Google N gram Java API
I have manged to get some big chunk of Google N gram corpus on my machine.
Now, I need to work with this data with help of Java API.
Although,such an API I couldn't locate on the internet, I wish to ...
0
votes
0answers
206 views
How to use microsoft ngram java api?
I am trying to use microsofts ngram api in java
code..google..com//p//microsoft-ngram-java//
I want find the probabilities of occurance of bigram "career opportunity" and "carrier opportunity" and ...
0
votes
1answer
121 views
Multiple mappings per ActiveModel/Record?
Lets say I want to create two separate indexes on something like BlogPosts, so that I can do a quick search using one index (for autocomplete purposes for example) then use the other index for full ...
1
vote
1answer
195 views
Python NLTK NGrams Error
I'm running a code to get the perplexity, number of ngrams from a text corpus. While doing it, I got a weird error saying:
C:\Users\Rosenkrantz\Documents\NetBeansProjects\JavaApplication2>python ...
1
vote
1answer
47 views
Changed field to Ngram, now returning no results
I updated my schema mapping for text fields to:
<fieldType name="text_general" class="solr.TextField" positionIncrementGap="100">
<analyzer type="index">
<tokenizer ...
2
votes
3answers
738 views
Java Lucene NGramTokenizer
I am trying tokenize strings into ngrams. Strangely in the documentation for the NGramTokenizer I do not see a method that will return the individual ngrams that were tokenized. In fact I only see two ...
1
vote
3answers
375 views
Computing N Grams using Python
I needed to compute the Unigrams, BiGrams and Trigrams for a text file containing text like:
"Cystic fibrosis affects 30,000 children and young adults in the US alone
Inhaling the mists of salt ...
0
votes
1answer
335 views
Java Lucene Ngrams
I want to use the Lucene API to extract ngrams from sentences. However I seem to be running into a peculiar problem. In the JavaDoc there is a class called NGramTokenizer. I have downloaded both the ...
0
votes
1answer
269 views
Elasticsearch - River and nGrams
I am using ES with the river plugin, as I am using a couchDB and I am trying to use nGrams for my queries.
I have done basically everything I need except for the fact that when someone inputs a space, ...
2
votes
1answer
171 views
Matching multiple overlapping n-grams with a single regular expression
I am trying to perform regular expressions to match multiple n-grams in a document.
I first get a list of n-grams, I compile them into a regex like so:
sNgrams = '|'.join(('\s+'.join(re.escape(gram) ...
1
vote
1answer
278 views
ElasticSearch search for partial alphanumeric values
I have a string field with values like PA2456U or PA23U-RB and I would like to do a partial match, so that I can search for PA24 and I would get the first result, or search PA23U-RB and find the ...
0
votes
0answers
88 views
N-gram and TRIE in oracle database
To reduce the search space in my project (Phonetic Matching based Information Retrieval),I came out with algorithm ,implemented with TRIE and N-Gram.
I am comfortable till the time I am storing my ...
2
votes
1answer
244 views
Underscores in Lucene outputs with stop words when getting ngram frequencies
I’m currently giving the user an option to include stop words or not when filtering a body of text for ngram frequencies. Typically, this is done as follows:
snowballAnalyzer = new ...
0
votes
0answers
179 views
NGramFilterFactory breaks exact match with whitespace in Solr
With Solr, I want to search in field, that is defined so:
<field
name="text"
type="text"
indexed="true"
stored="true"
multiValued="false" />
The field type is this:
...
1
vote
0answers
60 views
Can thinking sphinx be made to prioritize larger n-gram matches?
I'm using the thinking-sphinx 2.0.1 gem with rails 2.3.8 and ruby 1.8.7.
I'm trying to improve search quality on my site, and I'd like to be able to prioritize bigram and trigram matches over ...
0
votes
1answer
194 views
Using a Lucene ShingleFilter to extract frequencies of bigrams in Lucene
If a Lucene ShingleFilter can be used to tokenize a string into shingles, or ngrams, of different sizes, e.g.:
"please divide this sentence into shingles"
Becomes:
shingles "please divide", ...
1
vote
1answer
670 views
ElasticSearch with Tire won't match nGrams on 'string' search, only 'text'
So I've been trying to add nGram matching to my ElasticSearch index but I'm running into the following problem.
Doing a standard string query only returns exact matches. Running a match query on the ...
-1
votes
1answer
251 views
Counting di-Amino Acid frequencies (Bigram frequencies) from FASTA files
Given a large amount of FASTA files (the peptidome for various organisms for secreted peptides), how can I read the FASTA files (from UNIProt) with Python (Or Matlab), and count the frequencies of ...
0
votes
0answers
145 views
hive ngram stopword list?
While listed as one of the example use cases ... I haven't found an example of filtering out junk words (and, or, etc) from a Hive n-gram.
SELECT explode(context_ngrams(sentences(lower(description)), ...
2
votes
0answers
295 views
Similarity search using Solr's NGramFilterFactory
I am trying to use the NGramFilterFactory in Solr (using Sunspot in Rails) to find similar titles. I managed to add a new field to my solr schema.xml like follows:
<fieldType name="text_ngrm" ...
0
votes
0answers
167 views
Access ShingleFilter counts from terms_stats facet?
I'm looking for a way to access the number of occurrences of shingle in each document via the terms_stats value_script parameter, to enable more sophisticated ordering of facet results. Given a facet ...
2
votes
1answer
1k views
auto completion search with solr using NGrams
Im working on auto completion search with solr using EdgeNGrams.If the user is searching for names of employees, then auto completion should be applied. ie., want results like google search. It's ...
0
votes
0answers
43 views
How can I share the tweets in n-grams?
I'm using the 'Twitter gem' and the 'n_gram gem'. I want to share the tweets in n_grams. But it does't work. What I'm doing wrong?
This is my tweets_controller.rb:
class TweetsController < ...

