Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
10answers
11k views

Algorithm to find similar text

I have many articles in a database (with title,text), I'm looking for an algorithm to find the X most similar articles, something like Stack Overflow's "Related Questions" when you ask a question. I ...
25
votes
8answers
7k views

A better similarity ranking algorithm for variable length strings

I'm looking for a string similarity algorithm that yields better results on variable length strings than the ones that are usually suggested (levenshtein distance, soundex, etc). For example, Given ...
14
votes
10answers
2k views

Calculating Binary Data Similarity

I've seen a few questions here related to determining the similarity of files, but they are all linked to a particular domain (images, sounds, text, etc). The techniques offered as solutions require ...
13
votes
3answers
3k views

How to find similar results and sort by similarity?

How do I query for records ordered by similarity? Eg. searching for "Stock Overflow" would return Stack Overflow SharePoint Overflow Math Overflow Politic Overflow VFX Overflow Eg. searching for ...
13
votes
3answers
866 views

What is the paper “Oliver [1993]” describing a PHP algorithm to calculate text similarity?

There is a function similar_text() in the PHP library. The documentation (http://php.net/manual/en/function.similar-text.php) tells me that "This calculates the similarity between two strings as ...
10
votes
5answers
4k views

Cosine similarity vs Hamming distance

To compute the similarity between two documents, I create a feature vector containing the term frequencies. But then, for the next step, I can't decide between "Cosine similarity" and "Hamming ...
9
votes
7answers
572 views

How to detect plagiarized code?

I'm looking for a tool that will determine the likelihood that a given codebase was plagiarized off a certain original codebase. This is not the same as a "code smell" detector; I'm not looking for a ...
9
votes
3answers
2k views

Image comparison with php + gd

What's the best approach to comparing two images with php and the Graphic Draw (GD) Library? This is the scenario: I have an image, and I want to find which image of a given set is the most ...
8
votes
4answers
503 views

Color similarity/distance in RGBA color space

How to compute similarity between two colors in RGBA color space? (where background color is unknown of course) I need to remap RGBA image to a palette of RGBA colors by finding best palette entry ...
8
votes
3answers
664 views

Detecting image equality at different resolutions

I'm trying to build a script to go through my original, high-res photos and replace the old, low-res ones I uploaded to Flickr before I had a pro account. For many of them I can just use Exif info ...
7
votes
4answers
400 views

'Similarity' in Data Mining

In the field of Data Mining, is there a specific sub-discipline called 'Similarity'? If yes, what does it deal with. Any examples, links, references will be helpful. Also, being new to the field, I ...
6
votes
3answers
644 views

Text similarity Algorithms

I'm doing a Java project where I have to make a text similarity program. I want it to take 2 text documents, then compare them with each other and get the similarity of it. How similar they are to ...
6
votes
1answer
186 views

Is there an implementation of the idea described in “Detecting NearDuplicates for Web Crawling”

The paper: http://www2007.org/papers/paper215.pdf I am just wondering are there any implementations of chapter 3 of that paper. I mean querying among large datasets, NOT only the simhash (it's easy ...
5
votes
2answers
281 views

Comparing sets of 2D data/scatterplots

I have 2000 sets of data which contain little over 1000 2D variables each. I'm looking to cluster these sets of data into anywhere from 20-100 clusters based on similarity. However, I'm having trouble ...
5
votes
6answers
364 views

How to make colours on one screen look the same as another

Given two seperate computers, how could one ensure that colours are being projected roughly the same on each screen? IE, one screen might have 50% brightness more than another, so colours appear ...
5
votes
7answers
433 views

fast similarity detection

I have a large collection of objects and I need to figure out the similarities between them. To be exact: given two objects I can compute their dissimilarity as a number, a metric - higher values ...
5
votes
7answers
463 views

Similarity Between Users Based On Votes

lets say i have a set of users, a set of songs, and a set of votes on each song: =========== =========== ======= User Song Vote =========== =========== ======= user1 song1 ...
5
votes
4answers
314 views

How to spot and analyse similar patterns like Excel does?

You know the functionality in Excel when you type 3 rows with a certain pattern and drag the column all the way down Excel tries to continue the pattern for you. For example Type... test-1 test-2 ...
4
votes
2answers
290 views

MATLAB; Process for comparing two datasets

I have two datasets at the time (in the form of vectors) and I plot them on the same axis to see how they relate with each other, and I specifically note and look for places where both graphs have a ...
4
votes
5answers
204 views

Algorithm for discrete similarity metric

Given that I have two lists that each contain a separate subset of a common superset, is there an algorithm to give me a similarity measurement? Example: A = { John, Mary, Kate, Peter } and B = { ...
4
votes
9answers
2k views

Compare 5000 strings with PHP Levenshtein

I have 5000, sometimes more, street address strings in an array. I'd like to compare them all with levenshtein to find similar matches. How can I do this without looping through all 5000 and comparing ...
4
votes
6answers
2k views

How do I determine the longest similar portion of several strings?

As per the title, I'm trying to find a way to programmatically determine the longest portion of similarity between several strings. Example: file:///home/gms8994/Music/t.A.T.u./ ...
4
votes
7answers
4k views

Word comparison algorithm

I am doing a CSV Import tool for the project I'm working on. The client needs to be able to enter the data in excel, export them as CSV and upload them to the database. For example I have this CSV ...
3
votes
1answer
53 views

phylogenetic tree comparison

I developed new algorithm for phylogenetic tree comparison(phylogenetic tree is simply rooted binary tree). As an input we have two trees, we want to calculate their similarity percentage. one example ...
3
votes
0answers
76 views

A reliable measure of series similarity - correlation just doesn't cut it for me [migrated]

I'm trying to determine a method to compare one particular time series against about 10,000+ reference time series programmatically, and shortlist those reference time series which can be of interest. ...
3
votes
3answers
107 views

Segmentation of a voice

I'm helping a farm to cluster the cocks in groups according to their crowing such that cocks with similar crowing will live together. The farmer said he wants to know whether chickens will learn any ...
3
votes
2answers
127 views

Similarity matrix -> feature vectors algorithm?

If we have a set of M words, and know the similarity of the meaning of each pair of words in advance (have a M x M matrix of similarities), which algorithm can we use to make one k-dimensional bit ...
3
votes
5answers
129 views

Algorithm to find related words in a text

I would like to have a word (e.g. "Apple) and process a text (or maybe more). I'd like to come up with related terms. For example: process a document for Apple and find that iPod, iPhone, Mac are ...
3
votes
2answers
139 views

How to calculate “OnTopicness” of documents using Lucene.NET

Imagine I have a huge database of threads and posts (about 10.000.000 records) from different forum sites including several subforums that serve as my lucene documents. Now I am trying to calculate a ...
3
votes
1answer
55 views

Mysql, similar topics

Hy guys! I have 3 tables: topics (id*, title, body) tags (id*,name) topic_tags (topic_id,tag_id) Every topic has some tags. I want to find the "most related" topics to another one, based just ...
3
votes
1answer
222 views

How to get pair-wise “sequence similarity score” for ~1000 proteins?

I have a large number of protein sequences in fasta format. I want to get the pair-wise sequence similarity score for each pairs of the proteins. Any package in R could be used to get the blast ...
3
votes
5answers
204 views

Figure out if a business name is very similar to another one - Python

I'm working with a large database of businesses. I'd like to be able to compare two business names for similarity to see if they possibly might be duplicates. Below is a list of business names that ...
3
votes
3answers
152 views

Grouping similar sets algorithm

I have a search engine. The search engine generates results when is searched for a keyword. What I need is to find all other keywords which generate similar results. For example keyword k1 gives ...
3
votes
4answers
317 views

How do I Quickly Compare Variable-Length Bit Strings in C++?

I'm performing comparisons of objects based on the binary presence or absence of a set of features. These features can be represented by a bit string, such as this: 10011 This bitstring has the ...
3
votes
1answer
758 views

Similarity search between time series in Matlab. Possible ? I cant find R-tree implementation in matlab

I would like to implement similarity search in matlab. I wanna to know is it possible ? My plan is to do use 2 popular similarity measurement which are Euclidean Distance and Dynamic Time Warping. ...
3
votes
4answers
241 views

Optimize algorithm for creating a list of items rated together, in Python

given a list of purchase events (customer_id,item) 1-hammer 1-screwdriver 1-nails 2-hammer 2-nails 3-screws 3-screwdriver 4-nails 4-screws i'm trying to build a data structure that tells how many ...
3
votes
4answers
245 views

Computer Science taxonomy

I am developing web application where users have collection of tags. I need to create a suggestion list for users based on the similarity of their tags. For example, when a user logs in to the ...
3
votes
1answer
101 views

About curse of dimensionality

My question is about this topic I've been reading about a bit. Basically my understanding is that in higher dimensions all points end up being very close to each other. The doubt I have is whether ...
3
votes
5answers
367 views

Computing degree of similarity among a group of sets

Suppose there are 4 sets: s1={1,2,3,4}; s2={2,3,4}; s3={2,3,4,5}; s4={1,3,4,5}; Is there any standard metric to present the similarity degree of this group of 4 sets? Thank you for the suggestion ...
3
votes
3answers
782 views

Tips to show similarities in files

In a project, I found some css files that "smell" like there are copy-pasted rules in them. I wonder what are your strategies for detecting copy-paste stuff in files. Just of curiosity i'd like to ...
3
votes
3answers
811 views

Find a similarity of two vector shapes

Looking for any information/algorithms relating to comparing vector graphics. E.g. say there two point collections or vector files with two almost identical figures. I want to determine that a first ...
3
votes
5answers
209 views

Identifying if 2 HTML pages are similar

I'm trying to identify differences between a base case and supplied case. Looking for a library to tell me similarity in percentage or something like that. For Example: I've 10 different HTML pages. ...
2
votes
2answers
39 views

How to compute similarity between two license.txt files?

I would like to compute similarity between licenses' txt files so I could then based on the license.txt identify to which license it corresponds. What kind of information retrieval technique should I ...
2
votes
0answers
85 views

Java. Compare webpages structure (dom) similarity.

Is there a library (for java) that compares similarity between web pages (HTML, dom similarity)? In my application I want to classify links of a website. For example: group 1: Product detail page ...
2
votes
1answer
53 views

Python digest/hash for string similarity

I'm looking for an algorithm which can generate a short (fx 16 chars (not important) hashcode/digest from a longer string. The main requirement is that strings which is almost identical should result ...
2
votes
1answer
47 views

How to find the most similar commit to a modified file?

I recently received a modification of a file of mine that I put under revision control, but I cannot spot on which commit this modified file is based. So, is there a way to determine which commit ...
2
votes
1answer
66 views

“Personality quiz” style comparison [PHP] [closed]

I'm trying to think of an efficient or reasonable algorithm to take the results of a test submitted by the user and compare them with the values of several profiles to find a match (like how online ...
2
votes
1answer
50 views

Help with recursion on one array algorithm in PHP

Although this sounds like a math/CS question, I am sure someone out there will be able to help me out with this. I have two tables, similarityTable and items. The items table contains the following ...
2
votes
1answer
178 views

Matching two series of Mfcc coefficients

I have extracted two series MFCC coefficients from two around 30 second audio files consisting of the same speech content. The audio files are recorded at the same location from different sources. An ...
2
votes
4answers
245 views

Comparing the distance between arrays?

How to compare the similarity between two arrays? Say I have: Base Array: [.5,0,0,0,.25,0,0,.25,0,0,0,0] Array 1: [1,0,0,0,1,0,0,1,0,0,0,0] Array 2: [0,0,1,0,0,0,1,0,0,1,0,0] Array 3: ...

1 2 3 4