Explore >> Select a destination


You are here

blog.reverberate.org
| | orlp.net
3.0 parsecs away

Travel
| | [AI summary] A deep dive into the complexities and pitfalls of comparing different numeric types (integers and floating-point) across various programming languages and the CPU architecture
| | james.darpinian.com
3.4 parsecs away

Travel
| | You may know that all numbers in JavaScript are 64 bit double-precision floating point values. This is sometimes convenient and it works pretty well as a default for novice programmers, who are often confused by integer math, and rightfully so when 1 / 2 = 0. Unfortunately, it makes things slow. Doubles take a lot of memory and floating point math is slower than integer math on CPUs. It's also inconvenient if you want to port existing code to JavaScript, because existing code usually expects to use integ...
| | marc-b-reynolds.github.io
3.9 parsecs away

Travel
| | Computing Weyl (additive recurrence) sequences in float-point has some gotchas.
| | ujjwalkarn.me
18.4 parsecs away

Travel
| An Artificial Neural Network (ANN) is acomputational modelthat is inspired by the way biological neuralnetworks inthe human brain process information. Artificial Neural Networks have generated a lot ofexcitement in Machine Learning research and industry, thanks to many breakthrough results in speech recognition, computer vision and text processing. In this blog post we will try to...