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.
People
: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: |
| #!/usr/bin/env bash | |
| # | |
| # Bootstrap script for setting up a new OSX machine | |
| # | |
| # This should be idempotent so it can be run multiple times. | |
| # | |
| # Some apps don't have a cask and so still need to be installed by hand. These | |
| # include: | |
| # | |
| # - Twitter (app store) |
| import numpy as np | |
| from scipy import stats | |
| import matplotlib.pyplot as plt | |
| rng = np.random.RandomState(0) | |
| M, n_sensors = 100, 1000 | |
| # Make "Fourier coefficients" here | |
| data = rng.randn(M, n_sensors) + rng.randn(M, n_sensors) * 1j | |
| data += 0. # can be non-zero to test that it actually works for some signal | |
| mean = np.mean(data, axis=0) |
I hereby claim:
To claim this, I am signing this object:
| # query nvidia card | |
| lspci -vnn | grep -i VGA -A 12 | |
| # install nvidia driver 352.63 | |
| sudo apt-get install nvidia-352 | |
| sudo reboot | |
| # Download OS-Arch CUDA Toolkit package from https://developer.nvidia.com/cuda-downloads | |
| cd ~/Downloads | |
| wget -O cuda.deb http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/cuda-repo-ubuntu1404-7-5-local_7.5-18_amd64.deb |
| """ | |
| ========================================================= | |
| circular data analysis functions | |
| ========================================================= | |
| """ | |
| # Authors : Anne Kosem and Alexandre Gramfort | |
| # License : Simplified BSD |