View check_tpu.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View lab色空間的に等間隔なトーンもどき.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View juliusを使って音素アライメントする例.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View analyze.py
from pathlib import Path | |
import numpy | |
from scipy.spatial.distance import cdist | |
def load_vector(path_format: Path): | |
predicted_vectors = [] | |
true_speaker_nums = [] | |
for speaker_num in range(100): |
View analyze.py
from pathlib import Path | |
from typing import Union, Sequence | |
import librosa | |
import numpy | |
from librosa.effects import _signal_to_frame_nonsilent | |
from matplotlib import pyplot | |
from tqdm import tqdm |
View main.py
import multiprocessing | |
import threading | |
import time | |
import timeout_decorator | |
def countup(): | |
for i in range(1, 10): | |
time.sleep(1) |
View check.bash
for i in `seq 0 4`; do python check.py & done | |
# [1] 83406 | |
# [2] 83407 | |
# [3] 83408 | |
# [4] 83409 | |
# [5] 83410 | |
# start sleep 0 | |
# finish sleep 0 | |
# start sleep 1 |
View .bash_profile
function hh-audio-movie () { | |
ffmpeg -y -i $1 \ | |
-filter_complex "[0:a]showwaves=mode=p2p:s=hd480:colors=Cyan[v]" \ | |
-map "[v]" -map 0:a -pix_fmt yuv420p \ | |
-b:a 360k $2 | |
} |
View file_snippet.sh
# findで見つけたファイルの最新-最古unixタイムを得るコマンド | |
echo `find [dir] [filter] -printf '%C@\n' | sort | awk 'NR==1; END{print}'` | awk '{print ($2 - $1)}' |
View use_crepe.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder