Viewing profile — escanor
escanor
HN member- Joined
- Thu, Feb 27, 2020, 10:15 AM UTC
- HN karma
- 6
- Public activity
- 8 items
- HN profile
- View on Hacker News ↗
About escanor
No profile information was provided.
Recent public activity
-
comment
Comment #48683360
brilliant!
-
comment
Comment #48670359
it is: (async function(oracle, punch, delay) { async function sleep(ms) { return new Promise((resolve, _) => { setTimeout(resolve, ms) }) } for (let i = 0; i
-
comment
Comment #48670211
pure random player: (async function(punch, delay) { async function sleep(ms) { return new Promise((resolve, _) => { setTimeout(resolve, ms) }) } for (let i = 0; i "cheating" player…
-
comment
Comment #37352373
Who does that algorithm really serve?
-
comment
Comment #33828404
great work! just a note regarding tf-idf, when you mention log10: i think you're missing the point on the reason of log and most importantly base 10. namely, using log10 gives us a…
-
comment
Comment #28821910
> for index, item in enumerate(menu): should be > for index, item in enumerate(menu, start=1): for the example to be correct :)
-
comment
Comment #26704340
yes, i see this as well. at first it was confusing, but later i understood it was the output.
-
comment
Comment #22432113
My understanding is that the neural network is used to predict the "magnitude" of each eigenvector/axe (extracted by using PCA) in order to reconstruct an approximation of the orig…