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.
| Qwerty | |
| ,-----------------------------------------------------------------------------------. | |
| | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp | | |
| |------+------+------+------+------+------+------+------+------+------+------+------| | |
| | Tab | Q | W | E | R | T | Y | U | I | O | P | Del | | |
| |------+------+------+------+------+-------------+------+------+------+------+------| | |
| | Esc | A | S | D | F | G | H | J | K | L | ; | " | | |
| |------+------+------+------+------+------|------+------+------+------+------+------| | |
| | Shift| Z | X | C | V | B | N | M | , | . | / |Enter | | |
| |------+------+------+------+------+------+------+------+------+------+------+------| |
| function go() { | |
| var userId = prompt('Username?', 'Guest'); | |
| checkIfUserExists(userId); | |
| } | |
| var USERS_LOCATION = 'https://SampleChat.firebaseIO-demo.com/users'; | |
| function userExistsCallback(userId, exists) { | |
| if (exists) { | |
| alert('user ' + userId + ' exists!'); |
| # Author: Pieter Noordhuis | |
| # Description: Simple demo to showcase Redis PubSub with EventMachine | |
| # | |
| # Update 7 Oct 2010: | |
| # - This example does *not* appear to work with Chrome >=6.0. Apparently, | |
| # the WebSocket protocol implementation in the cramp gem does not work | |
| # well with Chrome's (newer) WebSocket implementation. | |
| # | |
| # Requirements: | |
| # - rubygems: eventmachine, thin, cramp, sinatra, yajl-ruby |