Skip to content

Instantly share code, notes, and snippets.

@jellis505
jellis505 / Microsoft_ASR.py
Created February 11, 2017 02:09
Microsoft Bing Speech API Wrapper in Python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import requests
import httplib
import uuid
import json
class Microsoft_ASR():
def __init__(self):
@jellis505
jellis505 / MixGaussGibbs.py
Created October 20, 2014 19:59
Gibbs Sample for Gaussian Mixture Model
#!/usr/bin/env python
# Created by Joe Ellis
# Columbia University DVMM Lab
# STD Libraries
import os
# Numerical Computing Libraries
import numpy as np
from scipy.stats import norm