Skip to content

Instantly share code, notes, and snippets.

View aFewThings's full-sized avatar
🖐️

EunBeen Kim aFewThings

🖐️
  • Multimedia Information Lab.
  • South Korea
  • 09:35 (UTC +09:00)
View GitHub Profile
@agentcoops
agentcoops / cuda_11.8_installation_on_Ubuntu_22.04
Last active March 29, 2024 03:56 — forked from MihailCosmin/cuda_11.8_installation_on_Ubuntu_22.04
Instructions for CUDA v11.8 and cuDNN 8.7 installation on (wsl) Ubuntu 22.04 for PyTorch 2.0.0
#!/bin/bash
### steps ####
# verify the system has a cuda-capable gpu
# download and install the nvidia cuda toolkit and cudnn
# setup environmental variables
# verify the installation
###
### to verify your gpu is cuda enable check
@mthrok
mthrok / compare_mel_filterbank.py
Last active February 19, 2024 08:30
Compare spectrograms of torchaudio and librosa
import torch
import torchaudio
import librosa
import matplotlib.pyplot as plt
from torchaudio.functional import create_fb_matrix
n_fft = 2048
n_mels = 128
sample_rate = 6000
@ihoneymon
ihoneymon / how-to-write-by-markdown.md
Last active May 4, 2024 04:19
마크다운(Markdown) 사용법

[공통] 마크다운 markdown 작성법

영어지만, 조금 더 상세하게 마크다운 사용법을 안내하고 있는
"Markdown Guide (https://www.markdownguide.org/)" 를 보시는 것을 추천합니다. ^^

아, 그리고 마크다운만으로 표현이 부족하다고 느끼신다면, HTML 태그를 활용하시는 것도 좋습니다.

1. 마크다운에 관하여