Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Like @asgs said, just try to increase learning rate or increase the size of the data. Also try different cost function, might help
-
Kaji22626yI remember being bored one afternoon in middle school shortly after I learned binary. Manually typed out every binary number to 9 digits or so just to kill time. Got used to the rhythm pretty quickly doing that...
-
Ich learned it with trying to fit one of those 16/32/64/...
For example 100:
100 - 64 = 1
36 - 32 = 1
4 - 16 doesn't work = 0
4 - 8 same = 0
4 - 4 = 1
0 - 2 = 0
0 - 1 = 0
Whole number in binary = 1100100 -
Trithon10306y@shelladdicted count with me! 0x0, 0x1, 0x2....
Actually...
n := 3
for {
fmt.Printf("%X\n", n)
n++
}
//done -
@Bobj2008 The alignment is bothering me. Can't even proceed to read without proper alignment.
-
In my experience it’s easier to start teaching other systems.
Hex is good because it contains all the digits people know, it’s just „extended“. Once they understand that, binary should make much more sense to them. -
Just thought this was a repost because someone liked my previous comment and I saw the post againπ
Related Rants
Binary is easy to teach
joke/meme
binary