A Fun Experiment on a Modified Neural Network :)

Greetings!

I’m Lee Ling, a deep learning enthusiast who loves breaking down the fundamentals and tweaking them for the better. Recently, I had an idea for a modified neural network—Uni-Neuron Network (Uni-NN)—which adds skip layer connections. I turned it into reality, tested its performance, and so far, it’s showing some potential in preventing gradient descent issues:



:blue_square: Blue – Normal Neural Network
:green_square: Green – Advanced Neural Network (Dropout, BN)
:orange_square: Orange – Uni-Neuron Network
:purple_square: Purple – Advanced Uni-Neuron Network (Dropout, BN)

:pushpin: Test Data:
Concrete Strength Dataset

:pushpin: Learning Rate: 0.005
:pushpin: Comparison Criteria: Model performance with similar parameter sizes

That said, it’s slow and struggles when the layers get long—so there’s still work to do.

I believe AI is shaping the future, and I’m all about finding better methods, not chasing perfection. If you’re down to collaborate or just want to check it out, it’d be an honor! Also, if you spot any flaws, I’d love to hear your thoughts—learning never stops.

:link: GitHub Repo: Uni-Neuron Network

Would love to hear what you think!

Best,
Lee Ling

:e_mail: Personal Email: leeinfinitee00@gmail.com

2 Likes

Interesting indeed. So … you are building this:

It’s hard to say whether this would be a better architecture than one without skip connections, and for what tasks and/or what kinds of gradient descent, or why. :thinking:

I found this survey paper on networks with skip connections in computer vision:

And here is one which examines effects on gradients:

The above contain a lot of concepts I’m not readily familiar with,

Thanks so much for the diagram! I will check these papers out :slight_smile:
Yeah maybe need more test to really determine wether it work or not.

1 Like

I have found that tweaking a net just hoovers up weeks of work and one still hasn’t gotten anywhere satisfying (except better at Python). For now I will try to finish the course and checking what ideas people in the decades before :joy:

1 Like