Python name
name mean
_ 使わない変数
_* 外部からアクセスされたくない変数・関数(アクセスは可能)
__* プライベート変数・関数
GPU

GPUの有無を確認

from tensorflow.python.client import device_lib
device_lib.list_local_devices()

利用可能なGPUの有無を判定

import tensorflow as tf
tf.test.is_gpu_available()
apt-get install libcudnn8=8.9.1.23-1+cuda11.8

gpuで計算系

Docker
move files using grep
grep -rl "key word" ./ | xargs -I '{}' mv {} [dir path]
git command
  • git addの取り消し(stagingの取り消し)
$ git reset HEAD <file name>
  • commitだけ取り消して,staging状態に戻す
$ git reset --soft HEAD~
$ git config --global fetch.prune true

http://bcl.sci.yamaguchi-u.ac.jp/~jun/notebook/git/cancel/

  • remoteリポジトリにないブランチを削除
git fetch -p && git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -D
python
# sklearn random forest
# 推定の確率を出す.claasses_の順番で確率が出る
model.classes_
model.predict_proba()

mint60
./keyboards/mint60/keymaps/custom
make mint60:custom
make mint60:custom:avrdude
gif generation
ffmpeg -i 画面収録_299U-08-09_1.93.N.mov -r 24 gamen_test1.gif