Using Logic Gates as Neurons - Deep Differentiable Logic Gate Networks!

  Рет қаралды 12,996

John Tan Chong Min

John Tan Chong Min

Күн бұрын

What if we could do away with all the complexities of a neuron and just model neural networks with logic gates? Fundamentally, logic gates are not differentiable, but with some modifications, we can make it differentiable. We can also make the network learn which logic gate to use using a differentiable categorical distribution. This interesting paper at NeurIPS 2022 shows that using logic gates, we can get much faster inference times and similar accuracy to that of neural networks. Scaling it up, though, is an issue, and we discuss some ways which can potentially help to scale in the next phase of improvements.
Some references:
Paper: arxiv.org/pdf/2210.08277
DiffLogic Code Implementation: github.com/Felix-Petersen/dif...
Slides: github.com/tanchongmin/Tensor...
De Morgan's Laws: en.wikipedia.org/wiki/De_Morg...
Universal Logic Gates: www.electronics-tutorials.ws/....
Gated Linear Units (GLU): arxiv.org/abs/1908.07442
medium.com/deeplearningmadeea...
~~~~~~~~~~~~~~~~~~~~~~~~~~~
0:00 Introduction
1:48 Perceptron and Logic Gates
16:08 Differences between Perceptron and Logic Gates
20:10 What Logic Gates to model?
23:26 Logic Gates Network Overall Architecture
36:02 Difficulty in training Logic Gates
37:17 Relaxation 1: Real-valued Logics
38:33 Relaxation 2: Distribution over the choice of parameter
43:55 Training Setup
45:05 Configuring output for classification
49:21 Results
59:04 Exponential Growth of Gates
59:44 Limitations
1:01:43 My thoughts on how to model biological neurons
1:08:40 Discussion
AI and ML enthusiast. Likes to think about the essences behind breakthroughs of AI and explain it in a simple and relatable way. Also, I am an avid game creator.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Discord: discord.gg/fXCZCPYs
Online AI blog: delvingintotech.wordpress.com/.
LinkedIn: www.linkedin.com/in/chong-min...
Twitch: www.twitch.tv/johncm99
Twitter: johntanchongmin
Try out my games here: simmer.io/@chongmin

Пікірлер: 22
John Tan Chong Min
John Tan Chong Min 3 ай бұрын
40:10 Note that during training, the logic gate neuron's output is still the weighted sum based on softmax. Only during inference, the logic gate is selected to be the one with highest probability, in order to be able to be implemented on hardware devices such as Field-programmable Gate Array (FPGA).
John Tan Chong Min
John Tan Chong Min 3 ай бұрын
44:12 The normal distribution is not just for neural networks, but also for the weights of the categorical distribution in order to choose which logic gate to use.
John Tan Chong Min
John Tan Chong Min 3 ай бұрын
28:54 I actually wanted to refer to Gated Linear Units (GLU), instead of GeLU. This is actually implemented in TabNet (arxiv.org/abs/1908.07442). The idea is to have the input be a "volume control" via a sigmoid gate, which is multiplied to the original output of the neuron, to control how much of the actual output should flow through to the next layer.
John Tan Chong Min
John Tan Chong Min 3 ай бұрын
1:03:33 Do note that capping output to 1 can also lead to vanishing gradients, if we are at the saturation point of some activation function like sigmoid or tanh. ReLU actually was designed to help with vanishing gradients, but can cause exploding gradients instead as it passes through the entire gradient from the next layer down to the earlier layers. Overall, the vanishing/exploding gradients is actually more of the result of backpropagation through layers, but can be worsened by larger/smaller weights. There is still some merit to limiting the output to prevent large magnitude output causing excessive weight change via backpropagation. The relation of capping output to 1 solving vanishing and exploding gradients is not as direct as I intended, and would also need a fundamental relook at backpropagation.
Andrew Ferguson
Andrew Ferguson 3 ай бұрын
The obvious solution is to model the architecture like a biological system and use competing feedback loops to find a tunable equilibrium
Andrew Ferguson
Andrew Ferguson 3 ай бұрын
Or find an algorithm that can jump through relative maxima in n dimensional space to find a lower state in the other side a-la quantum tunneling
John Tan Chong Min
John Tan Chong Min 3 ай бұрын
5:10 The universal gates are actually NAND and NOR. Refer to www.electronics-tutorials.ws/logic/universal-gates.html#:~:text=Universal%20Logic%20Gates%20using%20only,it%20a%20universal%20logic%20gate Also, De Morgan's Law just helps to simplify boolean/logical expressions, but it does not guarantee expressivity. It is actually the universal gates that guarantee expressivity of any boolean expression from just a single fixed gate.
Peter Boos
Peter Boos 3 ай бұрын
An interesting topic, eventually it is about the math that most closely matches fast operations on hardware, (like multiply-add). in this problem scenario, it might perhaps not be about the gate types and what they can do but rather the connections themselves, ea where an axion gets the most reward form (ea think of the perspective of the connecting lines, not the neurons), evolves a network based upon the idea of self-connecting axions, maybe guided as in 'food- ant' simulations (those pixel ants leaving trials for where to find food) that is some kind of evolutionary road mapping. (in such a network generic neurons of all types can be added, ea And, Or, NAND XOR, delays, even bit/byte/int array shifters ).
John Tan Chong Min
John Tan Chong Min 3 ай бұрын
I agree. Modifying the strength of connections, rather than changing the gates, makes more sense to me. The ant simulation theory is interesting, wonder if that can also work for traditional neural network training.
Peter Boos
Peter Boos 3 ай бұрын
@John Tan Chong Min well maybe it can mimic the growing structure of the brain too, though I wouldn't know how to code your novel ideas
شَحَاوِر
شَحَاوِر 2 ай бұрын
Interesting work, well done. Those who are asking are just annoying. Let the man finish his idea then ask, most of them are commenting not asking.
John Tan Chong Min
John Tan Chong Min 2 ай бұрын
Haha thanks:) No worries, these ppl are my friends, they are just very eager to clarify.
PRINCE
PRINCE 3 ай бұрын
You are Underrated sir
Whom
Whom 2 ай бұрын
Are neurons accessed the same way a logic gate wold be? I assume gates would need to be accessed through the initial source of the chain whereas neurons seem to be accessed independently. Maybe I misunderstand my, English second language
John Tan Chong Min
John Tan Chong Min 2 ай бұрын
Thanks for the question. A neuron has inputs, just like logic gate. The only difference is that the neuron has a learnable function that maps inputs into outputs y=learnable_fn(x). A logic gate has a fixed function, y = fixed_fn(x). The paper tries to make the function "learnable" by choosing one of the 16 logic gates, which I feel may be the cause of training instability because the change between logic gates can be very drastic.
Whom
Whom Ай бұрын
I see! Thank you for the response! This is all very fascinating.
era
era 3 ай бұрын
with this information i can now understand minecraft redstone :)
John Tan Chong Min
John Tan Chong Min 3 ай бұрын
haha how are you planning to do this?
Paralyzed
Paralyzed 3 ай бұрын
aah quality content
SomeGuy FromAfrica
SomeGuy FromAfrica 3 ай бұрын
not A and not B = not (A or B)
Marvin, O Marciano
Marvin, O Marciano 3 ай бұрын
Genius
Непосредственно Каха: человек паук
00:51
Magic phone 📱🤣#shorts #comedy #familyfun
00:13
Лерочка
Рет қаралды 989 М.
Rethinking Physics Informed Neural Networks [NeurIPS'21]
51:22
Amir Gholaminejad
Рет қаралды 27 М.
Tensorization and uncertainty quantification in machine learning
49:55
Dendrites: Why Biological Neurons Are Deep Neural Networks
25:28
Artem Kirsanov
Рет қаралды 161 М.
Spiking Neural Networks for More Efficient AI Algorithms
55:42
WaterlooAI
Рет қаралды 43 М.
Using AI to Accelerate Scientific Discovery
1:32:31
Institute for Ethics in AI Oxford
Рет қаралды 121 М.
MIT Introduction to Deep Learning | 6.S191
58:12
Alexander Amini
Рет қаралды 768 М.
Skibidi Toilet and Cameraman play obby together! 😨
0:28
Kboi Roblox
Рет қаралды 12 МЛН
Floor Lava🔥vs Zombies 😨 #behindthescenes
0:35
PIBABU
Рет қаралды 11 МЛН
Scary Teacher 3D | The Most Thrilling Game Who Was Bitten by a Crocodile  #Shorts
0:58
#игра#прикол #бархатныетяги
0:52
Zibilima
Рет қаралды 1,5 МЛН