layers

Objects detection with YOLO technique using Deeplearning4j

Detecting objects in an image can be accomplished in a variety of ways, but among them YOLO (You Only Look Once) is by far the most easy and efficient one. Since YOLO is based on deep learning and deep learning has two faces (training and testing/execution) you may be wondering which side of the coin we will focus on here. Well, the process of training a neural network may be a complex task that requires time, powerful hardware (possibly GPU+Cuda), expertise in the specific field and a trial and error scientific approach. Here instead we will see how to use [...]

By |2020-07-01T17:07:52+00:00June 30th, 2020|

Convolutional Neural Networks with Eclipse Deeplearning4j

In the previous article we have seen how to use Eclipse Deeplearning4j for building, training and testing a simple and classic MLP  (Multi Layer Perceptron) neural network. As a dataset we used the "hello world" example of deep learning, that is the MNIST: a dataset of 70,000 b/w images of 28×28 pixels, representing handwritten 0-9 digits. Now we will explore a different architecture known as Convolutional Neural Network (CNN), which is very powerful, particularly when dealing with image classification tasks. After having explained how this network works and why it is so efficient, then we will take our previous MLP example, [...]

By |2020-07-02T07:46:47+00:00February 2nd, 2020|

Build your first neural network with Eclipse Deeplearning4j

In the previous article we had an introduction to deep learning and neural networks. Here we will explore how to design a network depending on the task we want to solve. There is indeed an incredibly high number of parameters and topology choices to deal with when working with neural networks: how many hidden layers should I set up? What activation function should they use? What are good values for the learning rate? Should I use a classical Multilayer Neural Network, a Convolutional Neural Network (CNN), a Recurrent Neural Network (RNN) or one of the other architectures available? These questions are [...]

By |2020-03-28T17:31:41+00:00June 2nd, 2019|
Go to Top