The Edit Distance Problem
rjlipton.wordpress.com
The Edit Distance Problem
1–10 of 14 posts
Re: The Edit Distance Problem
#2Re: The Edit Distance Problem
#3http://rjlipton.wordpress.com/2009/03/28/erds-and-the-quantu...
sexy stuff
Re: The Edit Distance Problem
#4Dick Lipton's blog has a huge collection of really amazing kiddie pool tastes and pointers within awesome nuggets of theoretical computer science, one of his posts that I want to walk through carefully when i have the time is the one on the quantum method, for proving various nifty algorithmic complexity results etc. http://rjlipton.wordpress.com/2009/03/28/erds-and-the-quantu... sexy stuff
Re: The Edit Distance Problem
#5Dick Lipton's blog has a huge collection of really amazing kiddie pool tastes and pointers within awesome nuggets of theoretical computer science, one of his posts that I want to walk through carefully when i have the time is the one on the quantum method, for proving various nifty algorithmic complexity results etc. http://rjlipton.wordpress.com/2009/03/28/erds-and-the-quantu... sexy stuff
It is indeed amazing. But why put so much effort into a blog? Makes you wonder whether this blog is intended primarily to attract more PhD students to the field.
"I have worked in the area of theory of computation since 1973. I find the whole area exciting and want to share some of that excitement with you."
Many times, interesting ideas which can be explained to a non-expert are scattered in countless papers and books, and it's hard for someone new in the field to put all the pieces together by himself. Thus, a blog seems a great idea:
* it's much faster and more informal than peer-reviewed publications.
* it allows one to communicate ideas to a broader audience.
* it allows one to have almost immediate feedback from the readers.
* it's open to everyone who happens to be interested!
Re: The Edit Distance Problem
#6Dick Lipton's blog has a huge collection of really amazing kiddie pool tastes and pointers within awesome nuggets of theoretical computer science, one of his posts that I want to walk through carefully when i have the time is the one on the quantum method, for proving various nifty algorithmic complexity results etc. http://rjlipton.wordpress.com/2009/03/28/erds-and-the-quantu... sexy stuff
It is indeed amazing. But why put so much effort into a blog? Makes you wonder whether this blog is intended primarily to attract more PhD students to the field.
Re: The Edit Distance Problem
#7Dick Lipton's blog has a huge collection of really amazing kiddie pool tastes and pointers within awesome nuggets of theoretical computer science, one of his posts that I want to walk through carefully when i have the time is the one on the quantum method, for proving various nifty algorithmic complexity results etc. http://rjlipton.wordpress.com/2009/03/28/erds-and-the-quantu... sexy stuff
It is indeed amazing. But why put so much effort into a blog? Makes you wonder whether this blog is intended primarily to attract more PhD students to the field.
Re: The Edit Distance Problem
#8Scammers tend to post identical or slightly altered messages to a large number of users. As you might expect, this has the effect of quickly polluting the valid ecosystem. The solution I employed was to delay sending messages between users long enough to capture spammer patterns and compare the messages to one another.
I use the Levenshtein distance algorithm (which has O(n^2) performance). If I get a similarity over a certain threshold. I quarantine the message for further analysis. To work around the performance, I bound the problem by capping the number of messages used for analysis.
It has been incredibly effective.
Re: The Edit Distance Problem
#9I am hoping with a bit more effort I can understand the dynamic programming side of it better.