Skip to content

Instantly share code, notes, and snippets.

View haoxiangsnr's full-sized avatar
🎯
Focusing

郝翔 haoxiangsnr

🎯
Focusing
View GitHub Profile
# rm -rf ~/.oh-my-zsh
# sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zdharma-continuum/fast-syntax-highlighting.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/fast-syntax-highlighting
git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git $ZSH_CUSTOM/plugins/zsh-autocomplete
git config --global user.name "haoxiangsnr"
git config --global user.email "haoxiangsnr@gmail.com"

MixSim: Realistic Speech Mixture Simulator

MixSim is an open-source multi-purpose speech mixture simulator that covers speaker localization/tracking, dereverberation, enhancement, separation, and recognition tasks.

Table of Contents

body {
-webkit-text-stroke: 0.2px;
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@haoxiangsnr
haoxiangsnr / utils.py
Created May 7, 2019 14:42
常用工具函数
import importlib
import json
import math
import os
import time
import librosa
import numpy as np
import torch
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@haoxiangsnr
haoxiangsnr / rebuild_waveform_using_noisy_phase.ipynb
Created April 16, 2019 09:24
rebuild waveform using noisy phase
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@haoxiangsnr
haoxiangsnr / plot_comp.ipynb
Last active April 1, 2019 07:53
用于多种模型对比的折线图
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@haoxiangsnr
haoxiangsnr / unet_viz.py
Last active April 16, 2019 09:28
Exploring skip connection in U-NET through visualizing U-Net model.
import numpy
from pathlib import Path
import librosa
import torch
import torch.nn as nn
import torch.nn.functional as F
import matplotlib.pyplot as plt
import librosa.display