-2
votes
12answers
352 views
Saying “C & C# are equal by functionality, but not by concept”
An argument has been raised in my class regarding C and C#.
I stated that it's correct to say that C & C# are the same (meant: same by functionality, but not by concept).
Dif …
4
votes
3answers
58 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 j …
5
votes
4answers
451 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).
…
1
vote
5answers
69 views
how to get the similar texts from a lot of pages?
get the x most similar texts from a lot of texts to one text.
maybe change the page to text is better.
You should not compare the text to every text, because its too slow.
0
votes
0answers
20 views
Package to compare LSA, TFIDF, Cosine metrics and Language Models
Hi,
I'm looking for a package (any language, really) that I can use on a corpus of 50 documents to perform interdocument similarity testing in various metrics, like tfidf, okapi, …
2
votes
2answers
65 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 cu …
0
votes
0answers
72 views
Tagging - avoiding similar tags [closed]
I have noticed this even here on Stack Overflow. Where there maybe many similar tags eg. php vs php4 vs php5, or because of spaces eg. zendframework vs zend-framework.
So I hope t …
3
votes
3answers
163 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 dete …
1
vote
2answers
66 views
Speed up text comparisons (feature vectors) with spatial MySQL features
I have a function which takes two arrays containing the tokens/words of two texts and gives out the cosine similarity value which shows the relationship between both texts.
The fu …
0
votes
4answers
118 views
Determining if two or more summaries are similar
The problem is as follows:
I have one summary, usually between 20 to 50 words, that I'd like to compare to other relatively similar summaries. The general category and the geograp …
5
votes
4answers
141 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 …
1
vote
7answers
325 views
Pearson Similarity Score, how can I optimise this further?
I have an implemented of Pearson's Similarity score for comparing two dictionaries of values. More time is spent in this method than anywhere else (potentially many millions of cal …
1
vote
2answers
123 views
Similarity of two texts (adaptive local alignment of keywords?)
Hi!
I have 2 texts (max 4000 characters) of different length. And I need to get a similarity rate based on (partial-)paraphrasing. Please note that same portion of texts can be in …
6
votes
4answers
799 views
Cosine similarity vs Hamming distance
Hello!
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 simi …
6
votes
10answers
538 views
How can I measure the similarity between 2 strings?
Given two strings text1 and text2
public SOMEUSABLERETURNTYPE Compare(string text1, string text2)
{
// DO SOMETHING HERE TO COMPARE
}
Examples:
First String: StackOverflo …
