Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
'use strict'; | |
/** | |
* @example | |
* import keysToCamelCase from './snakeToCamelCase'; | |
* keysToCamelCase({bad_key: 1}); => {badKey: 1} | |
* keysToCamelCase([{bad_key: 1}]); => [{badKey: 1}] | |
*/ | |
function keysToCamelCase(object) { |