diff options
-rw-r--r-- | about.html | 19 | ||||
-rw-r--r-- | app.js | 4 | ||||
-rw-r--r-- | index.html | 3 | ||||
-rw-r--r-- | projects_blog/NNetwork.html | 39 | ||||
-rw-r--r-- | style.css | 1 |
5 files changed, 28 insertions, 38 deletions
@@ -15,25 +15,20 @@ My name is Christian Hodgden. I am currently a Data Analyst for an Industrial Engineering department in a distribution environment. I am learning about other programming languages and very interested in Data Science. - I have professionially done some linear regression modeling within our team and I would like to expand that part of my career. - Learing about Machine Learning and other techniques is very interesting. - <br> - <br> + I have professionially done some regression modeling within our team and I would like to expand that part of my career. + I am also looking to gain experience with other database and reporting technologies. + </p> + <p> Right now I am teaching myself with YouTube tutorials and taking certifications as I can. </p> <h2>Links</h2> <ul> - <li> - chess.com <a href="https://www.chess.com/member/tinwoodman92">chess.com/member/tinwoodman92</a> - </li> - <li> - GitHub <a href="https://github.com/chrhodgden">github.com/chrhodgden</a> - </li> + <li>GitHub <a href="https://github.com/chrhodgden" target="_blank">github.com/chrhodgden</a></li> + <li>Email <a href="mailto:chrhodgden@gmail.com">chrhodgden@gmail.com</a></li> + <li>Chess.com <a href="https://www.chess.com/member/tinwoodman92" target="_blank">chess.com/member/tinwoodman92</a></li> </ul> - <p>Contact: <a href="mailto:chrhodgden@gmail.com">chrhodgden@gmail.com</a></p> - <nav class="nav-footer"> <hr> <a href="index.html">Home Page</a> @@ -1,3 +1 @@ -function alertButton() { - alert("Hello world!") -}
\ No newline at end of file +console.log('Hello from app.js!');
\ No newline at end of file @@ -9,7 +9,8 @@ <h1>Christian Hodgden</h1> <p> - I do not know what this website will be long term. I am developing this for experience and potential exposure to recruiters. + I do not know what this website will be long term. + I am developing this for experience and potential exposure to recruiters. </p> <a href="about.html">About Me</a> diff --git a/projects_blog/NNetwork.html b/projects_blog/NNetwork.html index 4cabed4..747eb85 100644 --- a/projects_blog/NNetwork.html +++ b/projects_blog/NNetwork.html @@ -3,7 +3,6 @@ <head> <title>chrhodgden - NNetwork</title> <link rel="stylesheet" href="../style.css"/> - <script src="../app.js"></script> </head> <body> @@ -23,16 +22,14 @@ After learning R from a few R tutorials, I decided it was time to learn what machine learning and data science truly was. I had been putting off looking those up because I didn't feel like I was ready. I watched a series on neural networks by 3Blue1Brown on YouTube linked below. - <br> - <br> - <a href="https://youtu.be/aircAruvnKk" target="_blank"> - But what is a neural network? | Chapter 1, Deep learning - </a> - <br> - <br> + </p> + <a href="https://youtu.be/aircAruvnKk" target="_blank"> + But what is a neural network? | Chapter 1, Deep learning + </a> + <p> <i>"Oh, I can do that."</i> I immediately thought to myself. - <br> - <br> + </p> + <p> This video series applied old and familiar concepts of linear algebra and multivariable calculus that I had learned in college. Knowing that there were applications of this with data and programming inspired me to try to write some libraries from scratch. </p> @@ -40,22 +37,20 @@ <p> I chose R to do this rather than Python because I wanted to build experience with R. This project would be a good demonstration of mixing higher mathmatics with programming, which is what R was built to do. - <br> - <br> + </p> + <p> I did not follow any programming tutorials when developing this. My primary intention was to familiarize myself with the math behind these concepts. I wrote out as much of the program that made sense to me and then referenced YouTube for more detailed topics as I came to them. I primariliy referenced a series by deeplizard on Neural Networks linked below. - <br> - <br> - <a href="https://www.youtube.com/playlist?list=PLZbbT5o_s2xq7LwI2y8_QtvuXZedL6tQU" target="_blank"> - Deep Learning Fundamentals - Intro to Neural Networks - </a> - <br> - <br> + </p> + <a href="https://www.youtube.com/playlist?list=PLZbbT5o_s2xq7LwI2y8_QtvuXZedL6tQU" target="_blank"> + Deep Learning Fundamentals - Intro to Neural Networks + </a> + <p> This series was helpful and taught me about weights and bias initialization, the learning rate, and walked the tedious math sequences in a way that I could follow with my code. - <br> - <br> + </p> + <p> One idea I came up with myself was simple testing process to verify the project worked. I decided to test the network by training it to read binary. This way I would not have to find or build a database of training data, nor label the data. @@ -75,6 +70,6 @@ | <a href="#">Top of Page</a> <hr> </nav> - <script src="app.js"></script> + <script src="../app.js"></script> </body> </html>
\ No newline at end of file @@ -50,6 +50,7 @@ body { p { color: var(--foreground-theme-color); + text-indent: 4em; } hr { |