top of page
Screenshot 2024-06-23 112451.png

Neuron Network Builder

Dots
Home Page.png

MAIN PAGE

jNeuron_V provides an example of a simple neuron network using a dataset of lottery numbers. The user is exposed to a single layer one node - one input network and a two node - two input network using that dataset. After observing the network operation, the user can proceed to build a network with upto five nodes and five inputs using their own dataset. The application also provides several methods for generating a lottery number sequence that uses the incorporated dataset that represents data compiled from 2002. 

The opening page information button gives a concise overview of the app. From this page the user can transition to the app menu by selecting the hamburger button in the top left corner.

 

MAIN PAGE

The menu of available functions are provided on the menu page by selecting the hamburger icon in the top left corner of the applications Main Page.

 

The user can choose to observe the network operation by selecting the One Layer - One Node or One Layer - Two Node page. From these pages the user can single step or run the entire dataset through the network.  

The Build Neuron page allows the user to build a network by selecting upto five nodes and five inputs. The network will use the dataset entered by the user.

The NumberPicker page provides several methods for the user to generate their own sequence of numbers for the Mega Million lottery. The generator uses a dataset compiled from 2002 of drawn numbers and is continually updated.

 

MenuPage.png
One Node Page.png

SINGLE LAYER - ONE NODE PAGE

The neural network incorporated in this application is a regression network that uses a node consisting of a linear data input that generates a non linear output (Sigmod function). A single input (integer) with applied weight is passed to the sigmod function with a n added bias to produce an output which applies a further bias to generate a predicted ouput value (integer). This represents the forward progression through a neural network.

 

The network then applies Stochastic Gradient Descent to update the weights and bias used for the next forward progression through the network. This represents the back progression starting from the predicted output and the actual output of the dataset for the given input. This represents the cost function for the network and this change or difference is then applied through partial derivatives and the chain rule backward to calculate the change in the weights and biases to bring the difference in the cost function toward zero. This process is referred to as Stochastic Gradient Descent.

 

The user can choose to observe this process by selecting the Forward button which will select the first data item in the dataset for the input and it's corresponding output. In the case of this simple network the output is actualy the second number in the drawing sequence so that in effect the network is trying to predict that number. The weights and bias were pre-selected and will be displayed along with the input value and the generated values. The cost function or difference between what was predicted by the network and the actual value is also shown.  

When the user selects the Back button, the weights and biases will be updated according to the calculations performed for the Stochastic Gradient Descent.

The user can proceed by single stepping (pressing the Forward button followed by the Back button) or can run through the entire dataset by selecting the Run button which will effectively sequence through each item in the dataset sequentially in a forward progression followed by a backward progression.

Note that the output of this network is meaningless and is only intended to show the operation of the network.

 

SINGLE LAYER - TWO NODE PAGE

The Two Node neural network works in the same fashion as the One Node networl. Two inputs fron the dataset are used which are each passed to the two nodes. The node input now becomes a summation of those inputs which are then passed to the Sigmod function. The output of each node is then summed in the output along with it's bias to generate the predicted value.

 

The network then applies Stochastic Gradient Descent to update the weights and bias used for the next forward progression through the network. This represents the back progression starting from the predicted output and the actual output of the dataset for the given input. This represents the cost function for the network and this change or difference is then applied through partial derivatives and the chain rule backward to calculate the change in the weights and biases to bring the difference in the cost function toward zero. This process is referred to as Stochastic Gradient Descent.

 

The user can choose to observe this process by selecting the Forward button which will select the first data item in the dataset for the input and it's corresponding output. In the case of this simple network the output is actualy the second number in the drawing sequence so that in effect the network is trying to predict that number. The weights and bias were pre-selected and will be displayed along with the input value and the generated values. The cost function or difference between what was predicted by the network and the actual value is also shown.  

When the user selects the Back button, the weights and biases will be updated according to the calculations performed for the Stochastic Gradient Descent.

The user can proceed by single stepping (pressing the Forward button followed by the Back button) or can run through the entire dataset by selecting the Run button which will effectively sequence through each item in the dataset sequentially in a forward progression followed by a backward progression.

Note that the output of this network is meaningless and is only intended to show the operation of the network.

 

Two Node Page.png
BuildNeuronPage.png
NodeSelection.png
Screenshot 2024-07-14 134928.png

BUILD NEURON PAGE

The Build Neuron page allows the user to build their own neural network. The neural network will function in the same manner as described for the One Node and Two Node page descriptions. To build the network the user simply clicks on the input or node to be applied to the network. When successful upon clicking on an input or node the user will be presented with a message to indicate that the input or node is now part of the network. However, once a node or input is selected it can not be deselected. To correct the user would have to leave and then re-enter the Build Neuron Page.

 

The user will also be allowed to use their own dataset for the network. The constraint on the dataset is that the input and output values can only be integers and consist of five inputs and one output. To assist the user, an empty SQLite database is generated and at the pathway shown in the block beneath the network on the page. The user can then use the DBrowser app provided by the SQLite forum to enter the data manually or import from and Excel file. Note that the user only needs to enter the number of input values for the network built.

 

The user can choose to observe this process by selecting the Forward button which will select the first data item in the dataset for the input and it's corresponding output.  The weights and bias arepre-selected and will be displayed along with the input values and all generated values. The cost function or difference between what was predicted by the network and the actual value is also shown.  

When the user selects the Back button, the weights and biases will be updated according to the calculations performed for the Stochastic Gradient Descent.

The user can proceed by single stepping (pressing the Forward button followed by the Back button) or can run through the entire dataset by selecting the Run button which will effectively sequence through each item in the dataset sequentially in a forward progression followed by a backward progression.

 

Dots

NUMBERS GENERATOR PAGE

The Numbers Generator page provides several methods for generating a lottery number sequence that uses the incorporated dataset that represents data compiled from 2002. Each item in the dataset represents the five number draw from lowest to highest number value drawn. 

The User Number Selection allows the user to select each number in a sequence. When a selection button is pressed the user will be presented with a list of numbers in a descending fashion based on the frequency of that number being selected in the drawing. Once the user has made all five selections, the sequence can be checked for a previous selection made and will be presented with a message display accordingly. When that message is closed the user can select the Reset button to generate another sequence.

The Predictive Probability Algorithm Selection allows the user to select a sequence similar to the User Number Selection. The difference is in the numbers displayed in the list for each selection.  The constraint is that the user must select the numbers in order of the sequence from 1st to 5th. When the user makes a selection for the 1st number, any of the numbers equal to or lower will be removed from the 2nd selection list. This process will continue until all five numbers are selected. Once the user has made all five selections, the sequence can be checked for a previous selection made and will be presented with a message display accordingly. When that message is closed the user can select the Reset button to generate another sequence.

The remaining five selections determine a sequence through logic in the application by selection the appropriate button. The Random selection will generate a random sequence each time the button is pressed.

 

The Mean button will generate a sequence based on the mean value for each number in the frequency list for that selection. The Medium button will generate a sequence based on the middle value in the frequency list for that selection. The SD Plus and SD Minus will generate a sequence based on the selected number in the frequency list being either one standard deviation above or below the mean value in the frequency lsist for that selection. Pressing the button again will not generate a new sequence.

 

NumbersPage.png
bottom of page