I followed RaffK project to its completion and did much more feature development such as complete chat feature. I created a lot of Modern and screaming Future C++, it is sort of crazy. This ChatGPT2 animation experiment involved training chatgpt2 on scrolling Shakespeare 1000 times using SGD with a learn rate of 0.0002. After SGDContinue reading “ChatGPT2 Animator Adventure”
Category Archives: Uncategorized
Concerning First Citizen
So, in my last project video, seen here: I started a GPT2 124 project, following a Raff K. project, and have worked on it for some time now. This is the link: https://github.com/nicholaskomsa/NetworkLib/tree/master/NetworkLibTest Raff K project can be seen here: GPT-2 from Scratch in C (Day 2/2) Right now, ChatGPT2 forwards and produced output prediction.Continue reading “Concerning First Citizen”
Move Construction in C++
So, in this example program, I demonstrate the move operators. Their purpose is to do a shallow copy of an object: copy all pointers rather than pointer contents. The ephemeral source object is now considered to have an invalid state and is probably going out of scope soon. In this program, I create an object,Continue reading “Move Construction in C++”
famous blog post “fix your timestep” written in 2004, written again in 2024
https://www.gafferongames.com/post/fix_your_timestep/ I first read this gamedev post somewhere near 2004. I have been doing game engine development for the portion of my adult life, and in 2024, the current revision of my “fix your timestep” code, are as follows: In my network viewer, this is the code: This is the code from my rts gameContinue reading “famous blog post “fix your timestep” written in 2004, written again in 2024″
Continuing gradient_descent with ChatGPT
Hello again, lets continue C++ roadmap. ChatGPT Hello again! Of course, I’d be happy to continue with the C++ roadmap. Let’s pick up where we left off. If you have any specific topics or questions you’d like to discuss, please let me know, and I’ll be glad to assist you. OK, I came up withContinue reading “Continuing gradient_descent with ChatGPT”
About C++ Programming, with ChatGPT.
Hello, if I asked you to teach me C++ from A to Z, how would you proceed? ChatGPT: Sure, I’d be glad to help you learn C++! Learning a programming language like C++ is a multi-step process that involves understanding the basics of the language, practicing coding, and building projects to apply your skills. Here’sContinue reading “About C++ Programming, with ChatGPT.”
Software development and sneaky algorithms
So I have been engineering my own neural network technology for some time, and I’ve been running tests and experiments sometimes. What I have discovered about backrpopagation, is that, when there are errors in backpropagation algorithm, they may not break backpropagation completely. It can work in partial completeness or with some amount of errors, toContinue reading “Software development and sneaky algorithms”
Errors and Progress in mnist recognition
So, in my earlier post, I said I had a “convergent mnist network”. At the time I was excited and I wrote that in haste. What that network had been doing, it had been trained on null and digits, but only one image for each of these digit was actually ever trained into the network.Continue reading “Errors and Progress in mnist recognition”
Code Simplicity of binary files and C++ wonder
There is a lot of code online about reading MNIST dataset, and I have produced my own version, which uses my Binary/Reader classes talked about in a previous post. So, you could be thinking, Binary Image file stuffs with C++, oh, no! I have seen some of the parsers easily obtainable online, written in C++,Continue reading “Code Simplicity of binary files and C++ wonder”
Movement to OpenCl++
In my project, I have been thinking about something, data-oriented-design, quite a lot during the creation of new code. I’m going to present some of these concepts in current implementation and then describe moving to a specifically DOD language, opencl++. Moving into OpenCl++ seems like a natural extention of DOD C++ I use. So, inContinue reading “Movement to OpenCl++”