Using the tensorflow website, I am learning to make a RNN. This is how the website says to upload a dataset:
# Dataset
path_to_file = tf.keras.utils.get_file('shakespeare.txt',
'https://storage.googleapis.com/download.tensorflow.org/data/shakespeare.txt')
But I was wondering if there was a way for me to use a text file I already have saved on my computer, instead of this one, and if so, how do I do this?
Sorry if this is a very stupid question, but I will appreciate any help, thank you.