Using a neural network to generate your next startup name

Inspired by a Dan Hon article on how to generate British placenames, I decided to train my own network to generate startup names.

The original code was made by Andej Karpathy, but there is a more modern and concise version in Keras, available here.

The results

Here are a few of my favorites:

You can find a longer list here.

Note: you can’t prevent the neural net from generating startup names that already exist. So if you were planing on using any of those, do your own research first.

How it works

I trained the neural network on 170k startup names. To generate a startup name, you start with 10 random characters as a seed, feed it to the network (a LSTM) and ask it to predict the next character.

You then append the predicted character to the seed, remove the first character (so its length is still 10) and repeat.

If we start with this seed: Kdsdgasdgd, for our last example it looks like this:

In summary, we repeatedly call a recurrent neural network. Deepception (see video)

The code

If you want to dig deeper, the full code and dataset is available in a notebook here.

Conclusion

A few months ago, I made a startup pitch generator using Markov chains. You can find the demo here. The 2 projects pair well together :-)