mirror of
https://github.com/osmarks/nanogpt-experiments.git
synced 2024-11-10 20:09:58 +00:00
Merge pull request #429 from adambala/fixes
Open "shakespeare" data in UTF-8 in "prepare.py"
This commit is contained in:
commit
a022d02ee2
2
.gitignore
vendored
2
.gitignore
vendored
@ -8,3 +8,5 @@ __pycache__/
|
||||
*.pt
|
||||
*.pyc
|
||||
input.txt
|
||||
env/
|
||||
venv/
|
@ -7,10 +7,10 @@ import numpy as np
|
||||
input_file_path = os.path.join(os.path.dirname(__file__), 'input.txt')
|
||||
if not os.path.exists(input_file_path):
|
||||
data_url = 'https://raw.githubusercontent.com/karpathy/char-rnn/master/data/tinyshakespeare/input.txt'
|
||||
with open(input_file_path, 'w') as f:
|
||||
with open(input_file_path, 'w', encoding='utf-8') as f:
|
||||
f.write(requests.get(data_url).text)
|
||||
|
||||
with open(input_file_path, 'r') as f:
|
||||
with open(input_file_path, 'r', encoding='utf-8') as f:
|
||||
data = f.read()
|
||||
n = len(data)
|
||||
train_data = data[:int(n*0.9)]
|
||||
|
Loading…
Reference in New Issue
Block a user