Live data from Hacker News

Show HN: Kur by Deepgram (YC S16) – Deep Learning Made Easy

kur.deepgram.com

1–10 of 28 posts

Re: Show HN: Kur by Deepgram (YC S16) – Deep Learning Made Easy

#2
Deepgram is open sourcing Kur (http://kur.deepgram.com)! Kur is the worlds first descriptive Deep Learning software. Think of a model, describe it in a simple YAML or JSON file, and train to get state-of-the-art results. There's no need to code.

Why we built Kur: Prototyping DNNs is a slow process. Most people doing deep learning want to iterate and try out different model architectures and learn from others. It's hard to do this using barebones backends like TensorFlow/Theano or even the higher abstraction of software like Keras.

Kur is not speech specific. It can be used for images (we supply two examples), speech (we supply one example and DG is open sourcing a new audio dataset with it, the DEEPGRAM10), text, etc.

There are CNN layers, RNN, dense, dropout, batch norm, etc. to pick and choose from. The best part? Kur does all the plumbing! You want one input but two outputs? Not a problem, describe that model in Kur!

We're really pumped to be releasing Kur and would love to answer questions if you've got em.

Thanks! Deepgram AI Research Team

http://kur.deepgram.com http://github.com/deepgram/kur http://kurhub.com

Re: Show HN: Kur by Deepgram (YC S16) – Deep Learning Made Easy

#6
Great idea! However installation instructions are a little misleading. It says I only need Python 3, while in reality I need a whole bunch of things to be installed already. Is there a list of all requirements?

Also, does it work on Windows? "DL for dummies" code should run on Windows :)

Re: Show HN: Kur by Deepgram (YC S16) – Deep Learning Made Easy

#7
post #6

Great idea! However installation instructions are a little misleading. It says I only need Python 3, while in reality I need a whole bunch of things to be installed already. Is there a list of all requirements? Also, does it work on Windows? "DL for dummies" code should run on Windows :)

Thanks! We really push to keep the dependencies clean so that all you need is Python 3.

Doing:

pip install kur

Installs all of the packages that Kur relies on, so you don't need a list to run down and install.

Anyway we can help get it installed for you?

About Windows: great point and we have had users test in Windows. It installs fully there too!

Re: Show HN: Kur by Deepgram (YC S16) – Deep Learning Made Easy

#9

Deepgram is open sourcing Kur ( http://kur.deepgram.com )! Kur is the worlds first descriptive Deep Learning software. Think of a model, describe it in a simple YAML or JSON file, and train to get state-of-the-art results. There's no need to code. Why we built Kur: Prototyping DNNs is a slow process. Most people doing deep learning want to iterate and try out different model architectures and learn from others. It's…

Thanks for releasing this for us, Scott! It will definitely help me test different models for my ethereum auto trading bot!

Re: Show HN: Kur by Deepgram (YC S16) – Deep Learning Made Easy

#10

Deepgram is open sourcing Kur ( http://kur.deepgram.com )! Kur is the worlds first descriptive Deep Learning software. Think of a model, describe it in a simple YAML or JSON file, and train to get state-of-the-art results. There's no need to code. Why we built Kur: Prototyping DNNs is a slow process. Most people doing deep learning want to iterate and try out different model architectures and learn from others. It's…

There have been a few frameworks that take this declarative approach; DSSTNE, Twitter's internal framework and probably others.

DSSTNE had a clearish reason for doing so: automatic model-parallel training. Twitter wanted something simpler than Torch for most of their devs to use.

But I'm not really seeing why you guys did it.

Post reply on HN