Maher
Maher

Reputation: 63

Is it possible to install Kaldi on Google Colab

I want to use Google Colab in a research project using Kaldi ASR. Is it possible to install it? and Where Can I find Kaldi files after installation?

Upvotes: 6

Views: 3086

Answers (2)

korakot
korakot

Reputation: 40918

I have made it into my kora library.

Now you can install kaldi and pykaldi with just 2 lines of code.

!pip install kora -q
import kora.install.kaldi

Upvotes: 2

Bob Smith
Bob Smith

Reputation: 38674

Here's a notebook demonstrating the install steps for a managed backend: https://colab.research.google.com/drive/1rp2eZRHW9OYnA1WpRGeblG6fDSyyH-my

The install takes a while. You might want to do this once on your machine and use Colab's local runtimes support.

Upvotes: 4

Related Questions