User Tools

Site Tools


project_people:josh_donckels

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
project_people:josh_donckels [2017/11/18 17:41] jdonckelsproject_people:josh_donckels [2017/12/10 20:01] (current) jdonckels
Line 1: Line 1:
-===== Project Idea ===== +===== Project Concept ===== 
-Implement a convolutional neural network (CNN) that will be able to classify an input image.  It will use the layers based around a very basic CNN including: convolution layer, pooling layer, rectifier layer, and a fully-connected layer.  This will have to start off static in the MFM, as passing data would be very difficult otherwise.  This will require five elements that I will go into detail further down this page. +Implement a convolutional neural network (CNN) that will be able to classify an input pattern (a 3x3 window on the MFM).  It will use the layers based around a very basic CNN including: convolution layer and a fully-connected layer.  This will have to start off static in the MFM, as passing data would be very difficult otherwise.  This will require five elements that I will go into detail further down this page. 
  
 ===== Elements ===== ===== Elements =====
   * Neuron:   * Neuron:
     * Will contain the weights from the pre-trained network that it will be using to classify the image     * Will contain the weights from the pre-trained network that it will be using to classify the image
-    * Deal with all of the computations for the convolution, pooling, normalization, and fully-connection+    * Deal with all of the computations for the convolution
     * Will update the neighboring pixels based on the output from the computation     * Will update the neighboring pixels based on the output from the computation
-  * Pixel +  * Init_Layer: 
-    * Holds the gray-scale value for 7 pixelsthen has space for a couple more bits for flags in the future +    * This is the middle Neuronwhich will initialize, reset, and repair all of the other Neurons in the specific filter 
-  * Router +    * This will also contain its own weight, and bias which will be summed into the total from the filter 
-    * Will hold routing information based on which way for a packet to go based on where it is going +  * FC_Neuron: 
-  * Path +    * Neurons for the fully-connected layer, which will used fixed point multiplication to calculate its values.  
-    * Will help with guiding the packets to the specified Neuron cluster +    * There will be four layers of 12, which will each represent pattern to be classified 
-  * Packet  +  * FC_Init_Layer: 
-    * Will hold information about 7 pixelsand will follow the path and routers to its destination to deliver the information+    * Will initialize, reset, and repair the FC_Neurons in each layer 
 +  * Label: 
 +    * Will be used to classify the network once it is completemeaning the FC_Layer_Twelve will create this once the the classification values are complete
  
-===== Goals ====== 
-   * Main Goal: Run a simple MNIST example with smaller training set of 0's, of image size 18x18(?) 
-     * First Step: Get a layout that will work for the CNN (X) 
-     * Second Step: Get 7 packets sent from one cluster of pixels to another cluster of pixels ( ) 
-     * Third Step: Get pixel packets from all other clusters of pixels to one Neuron cluster, then run that specific convolution layer over all pixels from the image  ( ) 
-     * Fourth Step: Get the above goal to work with all clusters of Neurons ( ) 
-     * Fifth Step: Implement the pooling step ( ) 
-     * Sixth Step: Set-up the rectifier layer ( ) 
-     * Seventh Step: Create the fully-connected outcome ( ) 
-     * Eight Step: Classify the image  ( ) 
  
 ===== Weekly Logs ===== ===== Weekly Logs =====
Line 77: Line 69:
    *Added different objects, so It can classify up to 5 now, with a much worse percentage...    *Added different objects, so It can classify up to 5 now, with a much worse percentage...
    *Wrote the abstract for this project    *Wrote the abstract for this project
 +
 +Week 13 Update:
 +   *Added more rotations and shifts of each shape, and this increased the classification rates for every number of classification patterns
 +     * Can no only classify 4, but way better percentages up by about 20-30% from the previous version
 +   * Also found a problem with the version I was using in tiny-dnn, but was able to fix it.  Was having to do with the rescaling of the outputs
 +   * Created more plots with the improved numbers and places them in my paper
 +   * Added a lot more to my paper including introduction, methods, some results, and some sort of conclusion/discussion
 +   * Corrected my abstract
 +   * Fixed my CNN in the MFM to be more robust, where when a big chunk is removed it will repair itself, and then when a reset is used it can be re-run
 +
 +Week 14 Update:
 +   *Found a few bugs in the repairing and was able to improve it
 +   *Redesigned fully-connected layer, to where it can classify four different patterns at any rotation
 +     * Box, two-length line, L shape, and a three-length line, I get a global max of 77.5% class rate
 +     * Went back to three as I was running into problems and I get consistent 85% classification rate
 +   * Improved paper, still need more plots for results and an improved discussion
 +     * Finished Paper!
 +   
 +Week 15 Update: 
 +   *Improved slides, and practiced presenting.  
 +   *Finished everything and turned it in.
 +
 +
 +  
  
project_people/josh_donckels.1511026884.txt.gz · Last modified: 2017/11/18 17:41 by jdonckels