Intro to Autoencoders

Intro to Autoencoders

Solving problems using machine learning often involves looking at data with thousands of features. It is often possible to reduce the number of features, which speeds up training and is also useful for data visualization. One sophisiticated way to do so is using autoencoders (Read more...)

Public Key Cryptography: RSA

Public Key Cryptography: RSA

RSA is one of the first public-key cryptosystems, whose security relies on the conjectured intractability of the factoring problem. It was designed in 1977 by (Read more...)

Native GMP in Java

Native GMP in Java

GMP is a free library for arbitrary precision arithmetic, extremely useful for cryptography applications and research, Internet security applications, etc. In order to use this highly efficient library, one must code in C/C++. This is a Java port (Read more...)