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) |
""" | |
========================================================= | |
circular data analysis functions | |
========================================================= | |
""" | |
# Authors : Anne Kosem and Alexandre Gramfort | |
# License : Simplified BSD |