Live data from Hacker News

Viewing profile — jayalammar

jayalammar

HN member
Joined
Fri, Dec 03, 2021, 4:31 PM UTC
HN karma
563
Public activity
65 items

About jayalammar

No profile information was provided.

Recent public activity

  1. comment
    Comment #42259115

    We actually just wrote a book with your profile in mind -- especially if by "AI" you're especially interested in LLMs and if you're a visual learner. It's called Hands-On Large Lan…

  2. story
  3. story
  4. comment
    Comment #37135479

    This is my sense as well. Text generation LLMs haven't been the best source of embeddings for other downstream use cases. If you're optimizing for token embeddings (e.g., for NER, …

  5. comment
    Comment #36739278

    Contribution page: https://sites.google.com/cohere.com/aya-en/home

  6. comment
    Comment #36078138

    That's beautiful! Hope you're getting to do more of these!

  7. comment
    Comment #36076730

    Additional ones that come to mind now are: Transformer Feed-Forward Layers Are Key-Value Memories https://arxiv.org/abs/2012.14913 The Dual Form of Neural Networks Revisited: Conne…

  8. comment
    Comment #36075776

    Thank you so much (and others for your kind messages). Glad you found them useful! Writing is the best way for me to learn, I find.

  9. comment
    Comment #36075748

    This is a field I find fascinating. It's generally the research field of Machine Learning Interpretability. The BlackboxNLP workshop is one of the main places for investigating thi…

  10. comment
    Comment #36071415

    The goal is to make the materials as accessible as possible. So we're definitely not limited to the structure of a typical university course and are happy to iterate on it. I appre…

  11. comment
    Comment #36070727

    The landing page is technically the course overview. I'd love to hear what you think would've made it more engaging for you. We can probably pull up some of the visuals to it as a …

  12. story
    Show HN: Visual intuitive explanations of LLM concepts (LLM University)

    Hi HN, We've just published a lot of original, visual, and intuitive explanations of concepts to introduce people to large language models. It's available for free with no sign-up …

  13. comment
    Comment #35990118

    I'm the author of https://jalammar.github.io/illustrated-transformer/ and have spent years since introducing people to Transformers and thinking of how best to communicate those co…

  14. comment
    Comment #35645329

    How would you add that data? As new columns you mean? Or add the paragraph headings to the text of the paragraphs before embedding them?

  15. comment
    Comment #35644972

    There's a lot you can do with the vectors themselves without needing to embed any more text (e.g., clustering, exploration, visualization after dimensionality reduction...etc). Her…

  16. comment
    Comment #35630277

    Cohere actually trains its own models and they are not based on models from other providers [I work at Cohere]. Your prompt suggestion is a good one for LLMs as a whole. Any inform…

  17. comment
    Comment #35630230

    For Cohere, make sure you're using Command-Xlarge-Nightly. Otherwise, you may be prompting a Base LLM expecting the behavior of a different kind of LLM (an instruction-tuned chat m…

  18. story
  19. comment
    Comment #34924955

    Hi. Author here. This is the first in a series I've been writing for a while to help orient people about useful perspectives to have in catching up to all that's happening in AI/ML…

  20. story
  21. comment
    Comment #34464876

    They're trained and focused on language data, actually, not code specifically. There are both generation models and multilingual text embedding models (100+ languages, single model…

  22. comment
    Comment #34460023

    We train and serve large models at cohere.ai. We've shared some optimization techniques here: https://txt.cohere.ai/running-large-language-models-in-produ...

  23. comment
    Comment #33086647

    Agreed. "Stable Diffusion with Diffusers" and "The Annotated Diffusion Model" were excellent and are linked in the article. The code in Diffusers was also a good reference.

  24. comment
    Comment #33086607

    I updated the post to say "multi-dimensional array". In a context like this, we use tensor because it allows for any number of dimensions (while vector/ array is only one, matrix i…

  25. comment
    Comment #33086536

    Two diffusion processes are involved: 1- Forward Diffusion (adding noise, and training the Unet to predict how much noise is added in each step) 2- Generating the image by denoisin…