Popular posts from this blog
Perl
Part 1 Recap of Datastructures Complex Data structures Anon CDS -Hashes Part 2 Regular Expressions Subroutines & Files Part 3 Modules CPAN/DBI/CGI/N-w ------------------------------------------------------- Perl identify the DS by the prefix symbol Scalar - $ - a value List - () Array - @ Hashes - % define a lexical scalar - my $a; default value scalar - undef how to check for undef - if(defined($a)){ } get input from keyboard - $a=<STDIN> # \n stops @arr=<STDIN> # EOF stops output to console - print STDOUT "Hello"; print "Hello"; Errors - print S...
Machine Learning Algorithm timeline
I came across this interesting plot showing different algorithms, their inventors and their usage trend. Clearly, Neural Networks and Deep Belief Networks have revived and have a way to go. There is an interesting discussion on Quora, which users of these algorithms may be interested in: http://www.quora.com/Will-deep-learning-make-other-Machine-Learning-algorithms-obsolete

Comments
Post a Comment