Skip to main content

Posts

Showing posts from May, 2020

Urdu Baby Name Generation Using AI

Common Urdu Names. Text generation is an advanced field of AI. It uses state of the art techniques to generate texts using text corpus. You can generate books, poems, songs, and even research papers using this technique. How to generate short text like names? Well, you are in the right place. You can create the unique baby names in Urdu by following this tutorial. The first thing for this tutorial is to get the baby names, I've written a tutorial for scrapping the baby names from the website. Check it  Baby Names . I've also created a Git repository  urdu-baby-names  for baby names, check it out. Let's start. First import libraries we are going to use: import numpy as np import pandas as pd from keras.callbacks import LambdaCallback from keras.layers import LSTM, Dense from keras.models import Sequential Read the names file, extract the characters and indices to dictionaries of every character in names. I'm using boys_names.csv for this tutorial. You can u...