Live data from Hacker News

Viewing profile — kakadzhun

kakadzhun

HN member
Joined
Wed, May 13, 2020, 9:33 AM UTC
HN karma
17
Public activity
13 items

About kakadzhun

No profile information was provided.

Recent public activity

  1. comment
    Comment #35288920

    If Reinforcement Learning is anything to go by, then a naive implementation of learning from past models will overfit to the previous model and start performing worse than even ear…

  2. comment
    Comment #35217204

    Try this resource instead. Although it is 100 pages, the introductory part is already useful in and of itself! https://zenodo.org/record/1146014/files/GNU_Parallel_2018.pd...

  3. comment
    Comment #33502819

    Her emotional response was definitely not wrong nor an issue. Criticism is hard to take for anyone, but the tweets weren't even criticism, just plain mocking. What do you believe w…

  4. comment
    Comment #32037995

    import numpy as np print(np.__version__) a = np.array([1,2,3]) b = np.array([1]) print(a in b) print(b in a) print(np.isin(a, b)) print(np.isin(b, a)) print(np.isin(a.astype(float)…

  5. comment
    Comment #27545304

    I've always wondered whether there is an upper limit to mental endurance regarding the will to live, e.g. would you grow tired of life after a certain point? What if you were truly…

  6. comment
    Comment #27486395

    Script to filter out records of a .jsonl file based on some property (e.g. only want records w/ a timestamp greater than 163623...): import sys import orjson import argparse if __n…

  7. comment
    Comment #27458473

    Even if Reinforcement Learning is 'enough', it will be held back by whatever methods used to implement it (e.g. Deep Neural Networks). As the algorithms get more advanced, from som…

  8. comment
    Comment #27423221

    Reduce, reuse, recycle. According to a HN user (don't remember who) this was THE slogan before making everything "green". "Green" makes it easier to sell you the feeling of being e…

  9. comment
    Comment #26905759

    https://github.com/joosephook/sqlite3-numpy Minimal working example of storing numpy vectors in sqlite3 using Python: import sqlite3 from scipy.spatial.distance import cdist import…

  10. comment
    Comment #26143163

    Could you elaborate on what you believe you'd get for free in a static language compared to type-annotated and -checked Python? I'm curious as I'm in a similar situation, but not i…

  11. comment
    Comment #26111930

    Consider this: In [1]: np.argmax(np.array([[1,2,3],[1,9,3],[1,2,3]]).flat) Out[2]: 4

  12. comment
    Comment #24184753

    If you want to play around with Spinning Up in a Docker container, then make sure you git clone the repository, then pip install -e repository. For whatever reason, if you try to d…

  13. comment
    Comment #23395295

    I had the same problem on Ubuntu 18.04, terrible lag spikes and similar messages regarding i915. After installing the least new kernel (5.3.1), it solved the issue: not one hang si…