Live data from Hacker News

Viewing profile — mcyc

mcyc

HN member
Joined
Wed, Nov 11, 2020, 5:04 PM UTC
HN karma
313
Public activity
73 items

About mcyc

@me if you wanna talk about Korean + computers.

Also interested in high school cs education

Bsky: https://bsky.app/profile/mcognetta.bsky.social

Mastodon: https://sigmoid.social/@mc

Twitter: @marco_computers

Site: theoreticallygoodwithcomputers.com

meet.hn/city/35.6768601,139.7638947/Tokyo

Recent public activity

  1. comment
    Comment #48536811

    Lichess has a checkmate captcha that I think is cute. It requires you to solve a mate-in-one puzzle to, e.g., post on the forums. (Sorry, don't have a better link, there wasn't any…

  2. comment
    Comment #48522311

    Yeah, it is interesting to me that it is coming from the _city_'s government. I've seen sovereign AI things at the country level, but this is the first municipal one I have seen.

  3. story
  4. story
  5. comment
    Comment #48100560

    You are right about most tokenizers being heavily biased towards English, but the situation is not so bad for Portuguese. Here are some results on the Goldfish corpus [1] with a fe…

  6. story
    Show HN: blunder.clinic, realistic daily chess puzzles

    Today, I launched blunder.clinic, a daily chess puzzle app that provides realistic positions for you to try to not blunder on. These are similar to traditional chess puzzles (i.e.,…

  7. story
  8. comment
    Comment #46654094

    This is a fantastic guide! I did a lot of work on structured generation for my PhD. Here are a few other pointers for people who might be interested: Some libraries: - Outlines, a …

  9. story
  10. story
  11. story
  12. story
  13. story
  14. story
  15. comment
    Comment #45334506

    This is a nice attitude. I think HN is overall pretty nice for geeking out and also hearing other people geek out, but there is still a strain of elitism (not like StackExchange th…

  16. story
  17. story
  18. comment
    Comment #44145875

    You can cross whitespace boundaries by setting flag `--split-on-whitespace` to false (it's true by default). https://github.com/google/sentencepiece/blob/master/doc/opti...

  19. comment
    Comment #44135801

    Just a minor nit: SentencePiece is a library, not a tokenization algorithm. It implements two tokenization algorithms, Unigram and BPE. BPE builds vocabularies from the base up so …

  20. comment
    Comment #42980355

    People may also be interested in Pynini [1], a python wrapper (+ a lot of additional ease-of-use functionality) of OpenFst [2] (a really great library for transducers). There are s…

  21. story
  22. story
  23. comment
    Comment #42500110

    You might be interested in the Recurse Center ( https://www.recurse.com/ ) and the experiences of people who have gone through it (they heavily encourage blogging about your time t…

  24. comment
    Comment #42494191

    Thanks! Our paper [1] is kind of a goofy adversarial thing where we thought "here's this cool metric, how can we break it?". The tokenizers we propose are definitely not tokenizers…

  25. comment
    Comment #42494155

    It's two problems: 1) the sequence length increases too much. Idk what the average token length is for Llama, but imagine it's like 5+ bytes. Using individual bytes as tokens immed…