Hi guys, I am working on the week 1 dinosaur name generator assignment and I am having trouble grasping how the network is learning anything with the training examples that we create during the assignment, here is an example of one:
single_example_chars [‘t’, ‘u’, ‘r’, ‘i’, ‘a’, ‘s’, ‘a’, ‘u’, ‘r’, ‘u’, ‘s’]
single_example_ix [20, 21, 18, 9, 1, 19, 1, 21, 18, 21, 19]
X = [None, 20, 21, 18, 9, 1, 19, 1, 21, 18, 21, 19]
Y = [20, 21, 18, 9, 1, 19, 1, 21, 18, 21, 19, 0
If the input sequence X and target sequence Y are the same then how is the network learning anything?