Skip to content

Instantly share code, notes, and snippets.

View weimeng23's full-sized avatar
๐Ÿคฉ
Focusing

Meng Wei weimeng23

๐Ÿคฉ
Focusing
  • Beijing
  • 06:50 (UTC +08:00)
View GitHub Profile
@weimeng23
weimeng23 / kaldi_io_mechanisms.py
Last active May 4, 2023 06:50
kaldi command pipeline expression in python
delta_command = "compute-mfcc-feats --config=conf/mfcc.conf scp,p:wav_test.scp ark:- | add-deltas ark:- ark:- |"
delta_feats_rspecifier = (
f'ark:{delta_command}'
)
mfcc_command = "compute-mfcc-feats --config=conf/mfcc.conf scp,p:wav_test.scp ark:- |"
mfcc_feats_rspecifier = (
f'ark:{mfcc_command}'
)
@weimeng23
weimeng23 / read_wav_pcm.py
Last active April 12, 2023 02:36
read raw pcm & wav in several method
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# File : read_wav_pcm.py
# Author : Meng Wei <[email protected]>
# Date : 23.03.2023
# Last Modified Date: 23.03.2023
# Last Modified By : Meng Wei <[email protected]>
import librosa
import numpy as np
@weimeng23
weimeng23 / mngw-w64_boost.MD
Created February 26, 2022 06:33 — forked from zrsmithson/mngw-w64_boost.MD
Installing boost on Windows using MinGW-w64 (gcc 64-bit)

Installing boost on Windows using MinGW-w64 (gcc 64-bit)

Introduction

Boost is easy when you are using headers or pre-compiled binaries for visual studio, but it can be a pain to compile from source on windows, especially when you want the 64-bit version of MinGW to use gcc/g++. This installation process should be thorough enough to simply copy and paste commands, but robust enough to install everything you need.

Note: if you need to install any of the libraries that need dependencies, see this great answer from stack overflow

Get files needed for install

Get the MinGW installer mingw-w64-install.exe from Sourceforge
Get the boost_1_68_0.zip source from Sourceforge
__Note: This should work perfectly w

05/05/2018

2018: Speech2Vec: A Sequence-to-Sequence Framework for Learning Word Embeddings from Speech

Projects audio files that contains one word of speech into a hyper-dimension space just like Word2Vec. Uses "Force Aligment" to split audio into words (which requires text). Pad the audio segments with zeros, do MFCC, feed into encoder-decoder which uses RMSE. They also add noise to the signal and make the network denoise it. LibriSpeech 500 hour of audio. Not sure how it can incorporated in an ASR or TTS systems. The audio file has to be paired with a text otherwise Speech2Vec cannot split the audio file into words using "Forced Alignment" method. It is used to query if the spoken word is similar to an existing word in the corpus.

2016: Neural Machine Translation of Rare Words with Subword Units (BPE)

BPE data compression tool that combines most frequent pair of bytes with one. It works well with Named Entity, loadwords and morphologically complex words. Handles OOVs well and rare words. You can

@weimeng23
weimeng23 / ssh.md
Last active January 2, 2020 08:49 — forked from suziewong/ssh.md
SSH็ซฏๅฃ่ฝฌๅ‘

ssh

    -C  ๅŽ‹็ผฉๆ•ฐๆฎไผ ่พ“
    -f  ๅŽๅฐ็™ปๅฝ•็”จๆˆทๅๅฏ†็ 
    -N  ไธๆ‰ง่กŒshell[ไธŽ -g ๅˆ็”จ]
    -g  ๅ…่ฎธๆ‰“ๅผ€็š„็ซฏๅฃ่ฎฉ่ฟœ็จ‹ไธปๆœบ่ฎฟ้—ฎ        
    -L  ๆœฌๅœฐ็ซฏๅฃ่ฝฌๅ‘
    -R  ่ฟœ็จ‹็ซฏๅฃ่ฝฌๅ‘
    -p  ssh ็ซฏๅฃ
@weimeng23
weimeng23 / gist:2db88a1aa75339d3ff582a7630507aa7
Created November 14, 2019 10:58 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: ๐Ÿ˜„ :smile: ๐Ÿ˜† :laughing:
๐Ÿ˜Š :blush: ๐Ÿ˜ƒ :smiley: โ˜บ๏ธ :relaxed:
๐Ÿ˜ :smirk: ๐Ÿ˜ :heart_eyes: ๐Ÿ˜˜ :kissing_heart:
๐Ÿ˜š :kissing_closed_eyes: ๐Ÿ˜ณ :flushed: ๐Ÿ˜Œ :relieved:
๐Ÿ˜† :satisfied: ๐Ÿ˜ :grin: ๐Ÿ˜‰ :wink:
๐Ÿ˜œ :stuck_out_tongue_winking_eye: ๐Ÿ˜ :stuck_out_tongue_closed_eyes: ๐Ÿ˜€ :grinning:
๐Ÿ˜— :kissing: ๐Ÿ˜™ :kissing_smiling_eyes: ๐Ÿ˜› :stuck_out_tongue:
@weimeng23
weimeng23 / 24-bit-truecolor.sh
Last active December 5, 2024 16:01
test if your terminal supports 24 bit truecolor
#!/bin/bash
#
# This file echoes four gradients with 24-bit color codes
# to the terminal to demonstrate their functionality.
# The foreground escape sequence is ^[38;2;<r>;<g>;<b>m
# The background escape sequence is ^[48;2;<r>;<g>;<b>m
# <r> <g> <b> range from 0 to 255 inclusive.
# The escape sequence ^[0m returns output to default
SEPARATOR=':'