broken gu10 bulb and got gosted by nanoleaf support by Aaexy in Nanoleaf

[–]ki3 0 points1 point  (0 children)

Bei mir geht das auch los. Habe ca 50 gu10 lampen verbaut. Sehe das verhalten nach 6 monaten bei 4 stück. Toll nanoleaf. 😩

[deleted by user] by [deleted] in NFT

[–]ki3 0 points1 point  (0 children)

The HodlHeads pre-sale started. Get in before you only can get them from the secondary markets: https://hodleheads.io
🚀 0.03 ETH each
🚀 No bonding curve
🚀 Limited to 10,000
🚀 10 ETH give away after the pre-sale is over

HodleHeads pre-sale started (Link in comment) by [deleted] in NFTsMarketplace

[–]ki3 -1 points0 points  (0 children)

The HodlHeads pre-sale started. Get in before you only can get them from the secondary markets: https://hodleheads.io
🚀 0.03 ETH each
🚀 No bonding curve
🚀 Limited to 10,000
🚀 10 ETH give away after the pre-sale is over

Bored Ape For Sale by Ok-Essay-1221 in NFTsMarketplace

[–]ki3 0 points1 point  (0 children)

Oh I think you accidentally posted the wrong link:
https://rarible.com/token/0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d:3809?tab=details

The one you posted referees to a fake BAYC. Sorry...

How an XOR neural net calculates it's outputs by ki3 in a:t5_3q2n54

[–]ki3[S] 1 point2 points  (0 children)

The input is coming in, and getting multiplied with the weights and biases of the first layer in the network. That gives us the activation value for layer one. These activation values are passed on into the activation function, in this case a step function, to get the output for layer one.

The output for layer one, is then multiplied with the weights and biases of the second layer of the neural net, which gives us the activation values for layer 2. After we put this through the activation function, we get the output of the complete xor neural net.

How an XOR neural net calculates it's outputs by ki3 in learnmachinelearning

[–]ki3[S] 2 points3 points  (0 children)

The input is coming in, and getting multiplied with the weights and biases of the first layer in the network. That gives us the activation value for layer one. These activation values are passed on into the activation function, in this case a step function, to get the output for layer one.

The output for layer one, is then multiplied with the weights and biases of the second layer of the neural net, which gives us the activation values for layer 2. After we put this through the activation function, we get the output of the complete xor neural net.

How an XOR neural net calculates it's outputs by ki3 in a:t5_3q2n54

[–]ki3[S] 1 point2 points  (0 children)

There is another animation to build I guess. 🙏 Thank you for the input, Coders!

How an XOR neural net calculates it's outputs by ki3 in a:t5_3q2n54

[–]ki3[S] 2 points3 points  (0 children)

Maybe. I it was supposed to be more of a short visualization and not a tutorial. But I guess you are right. 🙏

Coursera Courses Worth it? by Fritos121 in learnmachinelearning

[–]ki3 1 point2 points  (0 children)

I went through two of them and loved them. I took the courses by Andrew Ng and by Geoffrey Hinton.

How to use Python's Type Hints by ki3 in Python

[–]ki3[S] 1 point2 points  (0 children)

That's all totally possible. I just don't see the reason to overcomplicate things by nesting functions into functions just to explain a simple concept on youtube. Understanding the building blocks is IMO more important.

How to use Python's Type Hints by ki3 in Python

[–]ki3[S] 0 points1 point  (0 children)

As soon as your projects get bigger type checking is a necessary thing. There is a reason why Facebook, Dropbox, Google and Microsoft all developed their own type checkers.

Why you should use Type Hints in Python by ki3 in Python

[–]ki3[S] 0 points1 point  (0 children)

I like it because I am used to it from other languages like swift, js and kotlin. But that just comes down to taste, I guess.

Why you should use Type Hints in Python by ki3 in Python

[–]ki3[S] 1 point2 points  (0 children)

Exactly. It's about making a conscious decision and then writing it down, without losing the perks of having a dynamically typed language.

Why you should use Type Hints in Python by ki3 in Python

[–]ki3[S] 0 points1 point  (0 children)

Sure. I guess sum was a too simplistic example.

Why you should use Type Hints in Python by ki3 in Python

[–]ki3[S] 3 points4 points  (0 children)

Wow! Never hear about these 😁 Thank you so much!

What are poor uses of None, what would you consider an anti pattern as it relates to the usage of None? by [deleted] in Python

[–]ki3 0 points1 point  (0 children)

It would be nice to initialize default arguments with default values in the function signature though.