This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
setup () { | |
# Install xcode | |
sudo xcodebuild -license | |
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer | |
mise use -g [email protected] | |
pip install -e . | |
git clone https://github.com/ggerganov/whisper.cpp.git | |
cd whisper.cpp | |
cmake -B build -DWHISPER_COREML=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2023/7/11 08:59 | |
GPT-4 Architecture, Infrastructure, Training Dataset, Costs, Vision, MoE | |
GPT-4 Architecture, Infrastructure, | |
Training Dataset, Costs, Vision, MoE | |
Demystifying GPT-4: The engineering tradeoffs that led OpenAI to their | |
architecture. | |
DYLAN PATEL AND GERALD WONG | |
2023 年 7 月 11 日 ∙ PAID | |
38 | |
8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Same as before, with a kivy-based UI | |
''' | |
Bluetooth/Pyjnius example | |
========================= | |
This was used to send some bytes to an arduino via bluetooth. | |
The app must have BLUETOOTH and BLUETOOTH_ADMIN permissions (well, i didn't | |
tested without BLUETOOTH_ADMIN, maybe it works.) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
k = 20 | |
eps = 0.1 | |
eps2 = 0.5 | |
w = [] | |
n = 100000 | |
for i in range(n): | |
rule = np.random.choice(k) | |
eps_greedy_action = rule if np.random.rand() > eps else np.random.choice(k) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## --- Save this file as pymeta.py ---- ## | |
# inspired by pyxl and github.com/SyrusAkbary/interpy | |
# >> import pymeta | |
# >> print(codecs.decode("1\n2", encoding='pymeta')) | |
# 1 | |
# import time; print(time.time()); | |
# 2 | |
## ---------------------- ## | |
from six import StringIO | |
import codecs, tokenize, encodings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
FNC=${1-2clsp} | |
PFX=${2-echo} | |
2clsp () { | |
$PFX rsync -av ../nevergrad clsp:~/project/ | |
} | |
2mac () { | |
$PFX rsync -av clsp:~/project/nevergrad/nevergrad/optimization/recorded_recommendations.csv nevergrad/optimization/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## https://askubuntu.com/a/423555/625555 | |
## There is also libapt, and python-dpkg and other packages that | |
## can talk to ubuntu package managers. | |
name=libqt5sql5 | |
CMDPFX=echo | |
DEPS="$(apt-cache depends $name | grep Depends | awk '{print $2}')" | |
i=0 | |
while [[ $i < ${#DEPS} ]] ; do | |
i=$(( i + 1 )) | |
# dpkg -s libpng16-16 | grep Status | wc -l |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[flake8] | |
ignore = E226,E302,E41,E402,E261,E305,E111,E121,E401,E701,W501,C901,W503,E266,E114,E228,E722,E741 | |
max-line-length = 120 | |
exclude = tests/* | |
max-complexity = 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$pdf_previewer = 'open -a Skim'; | |
$pdflatex = 'pdflatex -synctex=1 -interaction=nonstopmode '; | |
$pdf_mode = 1; | |
## $out_dir = 'build'; | |
@generated_exts = (@generated_exts, 'synctex.gz'); |
NewerOlder