Skip to content

Instantly share code, notes, and snippets.

View Keith-Hon's full-sized avatar
👋
Hello!

Keith Hon Keith-Hon

👋
Hello!
View GitHub Profile
@Keith-Hon
Keith-Hon / gist:e2c3a1f41ed6afd73f0c85b668e58e1a
Created December 31, 2021 09:25
install ngrok in ubuntu
apt install wget
wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.tgz
tar xvzf ngrok-stable-linux-amd64.tgz -C /usr/local/bin
@Keith-Hon
Keith-Hon / jserv.py
Created December 31, 2021 01:54 — forked from kinoc/jserv.py
Simplest FastAPI endpoint for EleutherAI GPT-J-6B
# Near Simplest Language model API, with room to expand!
# runs GPT-J-6B on 3090 and TITAN and servers it using FastAPI
# change "seq" (which is the context size) to adjust footprint
#
# seq vram usage
# 512 14.7G
# 900 15.3G
# uses FastAPI, so install that
# https://fastapi.tiangolo.com/tutorial/
@Keith-Hon
Keith-Hon / j6b_train_hf_ds.py
Created December 31, 2021 01:51 — forked from kinoc/j6b_train_hf_ds.py
So now you want to finetune that GPT-J-6B on a 3090/TITAN GPU ... okay, using HF and DeepSpeed too
# So now you want to finetune that GPT-J-6B on a 3090/TITAN GPU ... okay
# More exploratory coding. It uses the Huggingface model port, deepspeed and reads all text/md files from a target directory
# It is a fragment of a larger system with remote editing, but that's another story
# This is the raw, training tester. Items to look out for:
# - uses DeepSpeed and has a DS config
# - to save space uses SGD instead of ADAM
# - uses gradient checkpointing
# - freezes 25% of the layers to fit
# Assumes you can already run https://gist.github.com/kinoc/2d636a68876cd3de7b6e9c9452b61089
@Keith-Hon
Keith-Hon / gist:f66c2767bef041a25b57cc4f0c4ededf
Created May 25, 2021 04:57
Remove docker from mac (including virtual machines and images)
sudo rm -Rf /Applications/Docker.app
sudo rm -f /usr/local/bin/docker
sudo rm -f /usr/local/bin/docker-machine
sudo rm -f /usr/local/bin/docker-compose
sudo rm -f /usr/local/bin/docker-credential-desktop
sudo rm -f /usr/local/bin/docker-credential-ecr-login
sudo rm -f /usr/local/bin/docker-credential-osxkeychain
sudo rm -Rf ~/.docker
sudo rm -Rf ~/Library/Containers/com.docker.docker
sudo rm -Rf ~/Library/Application\ Support/Docker\ Desktop
@Keith-Hon
Keith-Hon / ionic-firebase-forum-template-spec.txt
Last active October 5, 2017 11:10
[ionic-firebase-forum-template-spec]
# ionic-firebase-forum-template-spec
## Functional Spec
Since it is a prototype, it would be good enough to show
1. basic functions on threads
1.1 comment
1.2 edit previous post
1.3 upvote, downvote
@Keith-Hon
Keith-Hon / index.ios.js
Created May 21, 2017 03:35
[AlertView] #tags:React-Native-iOS
Alert.alert(
'Alert Title',
'My Alert Msg',
[
{text: 'Ask me later', onPress: () => console.log('Ask me later pressed')},
{text: 'Cancel', onPress: () => console.log('Cancel Pressed'), style: 'cancel'},
{text: 'OK', onPress: () => console.log('OK Pressed')},
])