Skip to content

Instantly share code, notes, and snippets.

View dsdanielpark's full-sized avatar
🏄‍♂️
Believe in your potential. May the Force be with us.

MinWoo(Daniel) Park dsdanielpark

🏄‍♂️
Believe in your potential. May the Force be with us.
View GitHub Profile
@dsdanielpark
dsdanielpark / LLM.md
Created October 4, 2023 08:24 — forked from rain-1/LLM.md
LLM Introduction: Learn Language Models

Purpose

Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.

Avoid being a link dump. Try to provide only valuable well tuned information.

Prelude

Neural network links before starting with transformers.

@dsdanielpark
dsdanielpark / RLHF.md
Created August 10, 2023 07:55 — forked from JoaoLages/RLHF.md
Reinforcement Learning from Human Feedback (RLHF) - a simplified explanation

Maybe you've heard about this technique but you haven't completely understood it, especially the PPO part. This explanation might help.

We will focus on text-to-text language models 📝, such as GPT-3, BLOOM, and T5. Models like BERT, which are encoder-only, are not addressed.

Reinforcement Learning from Human Feedback (RLHF) has been successfully applied in ChatGPT, hence its major increase in popularity. 📈

RLHF is especially useful in two scenarios 🌟:

  • You can’t create a good loss function
    • Example: how do you calculate a metric to measure if the model’s output was funny?
  • You want to train with production data, but you can’t easily label your production data
@dsdanielpark
dsdanielpark / gist:6087c6d8e17d1fce4472d1ffc9ea7176
Created July 25, 2023 06:59 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@dsdanielpark
dsdanielpark / shpinx.md
Last active January 23, 2024 17:30
shpinx auto doc

Shpinx

Installation

pip install Sphinx

Quick start

mkdir docs
cd docs
@dsdanielpark
dsdanielpark / github_unstar.md
Last active April 11, 2023 13:27
make star clear
@dsdanielpark
dsdanielpark / git_ssh.md
Last active April 11, 2023 11:18
manage mutiple git ssh

SSH rsa key gen in local storage

   2 cd ~/.ssh
   
   3 ls -al

   # SSH Keygen
   5 ssh-keygen -t rsa -C "gitId1@gmail.com" -f "id_rsa_gitId1"
@dsdanielpark
dsdanielpark / tech_blog.md
Created April 10, 2023 13:15
using remix
@dsdanielpark
dsdanielpark / streamlit.md
Last active April 11, 2023 13:39
about streamlit landing page
  1. Install streamlit
pip install streamlit 
pip install streamlit-chat
  1. check status