1
0
mirror of https://github.com/osmarks/nanogpt-experiments.git synced 2025-08-31 01:47:58 +00:00

bugfix in decode function

Return was left out of the decoder, so it didn't work.
This commit is contained in:
Christian Orr
2023-03-08 10:16:19 +02:00
committed by GitHub
parent 0d8fbd11ae
commit 36c7db8c44

View File

@@ -32,7 +32,7 @@ itos = { i:ch for i,ch in enumerate(chars) }
def encode(s):
return [stoi[c] for c in s] # encoder: take a string, output a list of integers
def decode(l):
''.join([itos[i] for i in l]) # decoder: take a list of integers, output a string
return ''.join([itos[i] for i in l]) # decoder: take a list of integers, output a string
# create the train and test splits
n = len(data)