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.
const int d4s = 311; | |
const int e4 = 330; | |
const int f4s = 370; | |
const int g4s = 415; | |
const int a4 = 440; | |
const int b4 = 494; | |
const int c5s = 523; | |
const int buzzerPin = 4; | |
const int ledPinB = 12; |
#!/usr/bin/env python2 | |
# -*- coding: utf-8 -*- | |
""" | |
USAGE: | |
morphagene_directory.py -d <inputdirectory> -o <outputfile>' | |
Script will go through <inputdirectory> and splice all wave-files | |
together in alphabetic order and place a marker in between. | |
Requires all wave-files in directory to have the same number of channels and bitrate! |
provider: # s3, gcs | |
storage_location: # s3 location, gcs location | |
version: <generated schema vers> | |
approvals: | |
require_staging: true | |
required: 2 | |
total: 1 | |
team_a: 0 | |
team_b: 1 | |
structure: |
files: | |
"/home/ec2-user/new_relic_servers_setup.sh": | |
mode: "000755" | |
owner: root | |
group: root | |
content: | | |
#!/usr/bin/env bash | |
printf "license_key: $NEW_RELIC_LICENSE_KEY" | sudo tee /etc/newrelic-infra.yml | |
printf "[newrelic-infra]\nname=New Relic Infrastructure\nbaseurl=http://download.newrelic.com/infrastructure_agent/linux/yum/el/6/x86_64\nenable=1\ngpgcheck=0" | sudo tee /etc/yum.repos.d/newrelic-infra.repo | |
yum -q makecache -y --disablerepo='*' --enablerepo='newrelic-infra' |
// Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/ | |
// See also: http://www.paulund.co.uk/change-url-of-git-repository | |
$ cd $HOME/Code/repo-directory | |
$ git remote rename origin bitbucket | |
$ git remote add origin https://github.com/mandiwise/awesome-new-repo.git | |
$ git push origin master | |
$ git remote rm bitbucket |
sudo apt-get install openjdk-7-jre-headless -y | |
cd /home/ubuntu/ | |
mkdir -p dynamodb | |
cd dynamodb | |
wget http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest | |
tar -xvzf dynamodb_local_latest | |
rm dynamodb_local_latest | |
mv dynamodb_local_*/ dynamodb/ |
const int c = 261; | |
const int d = 294; | |
const int e = 329; | |
const int f = 349; | |
const int g = 391; | |
const int gS = 415; | |
const int a = 440; | |
const int aS = 455; | |
const int b = 466; | |
const int cH = 523; |
<IfModule mod_gzip.c> | |
mod_gzip_on Yes | |
mod_gzip_dechunk Yes | |
mod_gzip_keep_workfiles No | |
mod_gzip_can_negotiate Yes | |
mod_gzip_add_header_count Yes | |
mod_gzip_send_vary Yes | |
mod_gzip_command_version '/mod_gzip_status' | |
mod_gzip_min_http 1000 | |
mod_gzip_minimum_file_size 300 |