scale + algorithms 12
Hacker News | Stop A/B Testing and Make Out like a Bandit
august 2011 by scale
Also should read this guy's Phd thesis http://eddrobinson.net
algorithms
algotrading
seo
totry
august 2011 by scale
The Stony Brook Algorithm Repository
october 2009 by scale
A comprehensive collection of algorithm implementations for over seventy of the most fundamental problems in combinatorial algorithms. The problem taxonomy, implementations, and supporting material are all drawn from my book The Algorithm Design Manual. Since the practical person is more often looking for a program than an algorithm, we provide pointers to solid implementations of useful algorithms, when they are available.
programming
algorithms
reference
math
october 2009 by scale
Algorithmatic
august 2009 by scale
Algorithmatic.com aspires to serve as a global repository of algorithms from all fields, and as an easy-access environment for algorithm design and prototyping through Algorithmatic's programming language and in-browser IDE. Put simply, Algorithmatic.com is for algorithms what Wikipedia is for articles. Also, these algorithms are instantly executable from within the browser.
math
computer
science
algorithms
august 2009 by scale
bayesian-rating or how to make a fair ranking when item A has 3 votes and item B has 3,000
november 2008 by scale
br = ( (avg_num_votes * avg_rating) + (this_num_votes * this_rating) ) / (avg_num_votes + this_num_votes)
where
* avg_num_votes: The average number of votes of all items that have num_votes>0
* avg_rating: The average rating of each item (again, of those that have num_votes>0)
* this_num_votes: number of votes for this item
* this_rating: the rating of this item
math
algorithms
rankings
where
* avg_num_votes: The average number of votes of all items that have num_votes>0
* avg_rating: The average rating of each item (again, of those that have num_votes>0)
* this_num_votes: number of votes for this item
* this_rating: the rating of this item
november 2008 by scale
How to calculate binomial coefficients... the old school way
august 2007 by scale
( n ) n! ( n + 1 ) n+1 ( n )
| | = ------------- can instead be written | | = ----- | |
( k ) k! ( n - k!)!
math
mathematics
programming
computation
algorithms
| | = ------------- can instead be written | | = ----- | |
( k ) k! ( n - k!)!
august 2007 by scale
Copy this bookmark: