Java Programming Language.It’ll blow your mind.

Java has been one of the most popular programming language for many years. Java is Object Oriented. However it is not considered as pure object oriented as it provides support for primitive data types (like int, char, etc).The Java codes are first compiled into byte code (machine independent code). Then the byte code is run on Java Virtual Machine (JVM) regardless of the underlying architecture. Java syntax is similar to C/C++. But Java does not provide low level programming functionalities like pointers. Also, Java codes are always written in the form of classes and objects..


Android Kernel: Lacking in ModularitySee for yourself.

"Android" kernel? There didn't seem to be much in this article that is specific to android. And of course there's fairly high coupling in a monolithic kernel like linux -- you're necessarily going to have all sorts of asynchronous communication between different parts of of a kernel and sharing of data structures and global queues, locks, etc. What the hell did you expect? In particular, this bit strikes me as very naive: This partitioning algorithm reorders the subsystems based on dependencies, revealing what is "lower" and what is "higher." In an ideal implementation, the developers of the higher layer need only understand the API of the lower layers, while the developers of the lower layers need to worry about the higher layers only when an interface is affected.


Models for machine learningExplore the ideas behind machine learning models

Algorithms used in machine learning fall roughly into three categories: supervised, unsupervised, and reinforcement learning. Supervised learning involves feedback to indicate when a prediction is right or wrong, whereas unsupervised learning involves no response: The algorithm simply tries to categorize data based on its hidden structure. Reinforcement learning is similar to supervised learning in that it receives feedback, but it’s not necessarily for each input or state. This tutorial explores the ideas behind these learning models and some key algorithms used for each.read more...


Deep Learning Cracking the Internal Health Code with Deep Learning

In our brain, biological neurons can connect with other neurons within a certain distance to process the data quickly. Artificial neural networks use discrete layers, connections, and directions for data to travel. Each layer can be assigned a task. As the data goes from the first to the final layer, different tasks are applied. After the final layer, the final output is produced that will offer insights. To analyze the medical images, you often need more than 100 of such layers to identify and classify multiple appearance from millions imagesread more..


A neural networks deep dive An introduction

Neural networks have been around for more than 70 years, but the introduction of deep learning has raised the bar in image recognition and even learning patterns in unstructured data (such as documents or multimedia). Deep learning is based on fundamental concepts of the perceptron and learning methods like back-propagation. This tutorial implements and works its way through single-layer perceptrons to multilayer networks and configures learning with back-propagation to give you a deeper understanding read more..