WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2024 Poal.co

424

(post is archived)

[–] 0 pt

What does he do?

[–] 0 pt (edited )

So he tells you the result of xor 0^0 = 0, 0^1 = 1, 1^0 = 1, 1^1=0.

But now you can ask the question 0.5^.1 = ?

In fact that number is -0.206

xor is just the first thing you try to fit when you have a new neural network concept.

[–] 0 pt

Interesting, you know way more about this stuff than I do.

[–] 0 pt (edited )

So I did talk earlier about how I wanted to play around with a different way of doing neural nets. The idea is to have each of the hidden neurons layers only be one wide and have each one takes input from all prior neurons instead of just the prior layer. Just to be different on this one I used a reservable square root as the "activation function".

Here is the data if anyone wants a plot they can rotate: https://jssocial.pw/ppkey/fget/x0x7/upload/xorplot.json

Code to plot:

import json
f = open('xorplot.json')
d = json.load(f)
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt

fig = plt.figure();
ax = fig.add_subplot(111,projection='3d')

ax.scatter(d['x'],d['y'],d['z'],c='r',marker='o')
ax.set_xlabel('x')
ax.set_xlabel('y')
ax.set_xlabel('z')
plt.show()
[–] 0 pt

Xor is going to be an artist. I am a fan of generative art, and I think this is beautiful.

[–] 1 pt

He has siblings. I'm meaning to take a look at them when my todo list allows.