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.
operator | brand | corporation | |
---|---|---|---|
sk | 티플러스 | 한국케이블텔레콤 | |
sk | 아이즈모바일 | 아이즈비전 | |
sk | 모빙 | 유니컴즈 | |
sk | 스마텔 | 스마텔 | |
sk | SK세븐모바일 | SK텔링크 | |
sk | 이마트알뜰폰 | 이마트 | |
sk | 조이텔 | 조이텔 | |
sk | 이야기모바일 | 큰사람이야기 | |
sk | 안심모바일 | 에스원 |
#!/bin/sh -exu | |
dev=$1 | |
cd $(mktemp -d) | |
function umountboot { | |
umount boot || true | |
umount root || true | |
} | |
# RPi1/Zero (armv6h): |
Open Terminal
. Type javac -version
and check your current JDK version. If you seem to have javac 1.7.*
JDK version, you can skip this section.
Termianl
.sudo apt-get install openjdk-7-jdk
.#How to install node.js and CouchDB on a Google Compute Engine instance
Make sure you have a Google Compute engine account, have a project created and the gcutil command line tool installed.
Since want to ssh without the gcutil tool, you need to a your ssh key to the instance in addition to the already existing google_compute_engine key (used for gcutil).
#!/bin/bash | |
# Installation: | |
# | |
# 1. vim /etc/ssh/sshd_config | |
# PrintMotd no | |
# | |
# 2. vim /etc/pam.d/login | |
# # session optional pam_motd.so | |
# |
// program | |
package main | |
import "os/signal" | |
import "os" | |
import "fmt" | |
import "syscall" | |
import "time" |