Posts

Showing posts from January, 2019

Week 9 Progress Update

Image
Week 9 Progress Update     This week I spent a large amount of time preparing my code to be partially rewritten. I discovered that I actually have to use a slightly different input pipeline and that implementing this pipeline will require me to change a large part of the code. One of the things I often try to do before making big changes to code is clean it up so it is more readable and optimized. In cleaning up my code I changed my data processing code for the fifth time, this time including code that allowed me to make sure the images were valid as well  as processing the binary as python lists before converting it to tensors. I also add some checkpoints in my code to make sure everything was running properly. After all this I am about ready to edit my code and be done with this segment of the research, however I am a little behind task on what I was planning to accomplish, because of this I am planning on implementing only one or two visualization methods inste...

Week 8 Progress Update

Image
Week 8 Progress Update Progress is relatively slow, I debugged to the point where it has an output, unfortunately the output is erroneous. Along with this, the program outputs an error after running the optimization loop after only one run. I have been stuck on this problem for the past few days and if I can't seem to fix it by the end of next week I'm going to start looking at visualization algorithms and coming back to the actual CNN later.  Error given after first optimization (above), and output from first optimization (below)

Week 7 Progress Update

Image
Week 7 Progress Update         This week I debugged much of the data input system as well as the creation of the neural net architecture. The new slightly modified code is shown below, I just basically created a placeholder for x_batch so that it could initialize before I actually run the network. Other than that I made a few minor corrections across the code. The NN architecture

Week 6 Progress Update

Image
Week 6 Progress Update This week has again been very slow, I fixed my code for importing Cifar-10 which involved switching from a prebuilt TensorFlow library which handled Cifar-10 to custom code which imported the data using the TensorFlow data module (shown below). As with any module that I have not worked with before, it took a significant amount of time to learn and implement. I have moved on to debugging where I will probably be stuck for the remainder of this week and possibly further if any major problems arise, which they most likely will. The functions I used to import the Cifar 10 dataset