silky commited on
Commit
4cbce34
1 Parent(s): 3ea7db3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -51,7 +51,7 @@ sample_outputs = model.generate(
51
  num_return_sequences=20
52
  )
53
 
54
- print("Output:\
55
  " + 100 * '-')
56
  for i, sample_output in enumerate(sample_outputs):
57
  m = tokenizer.decode(sample_output, skip_special_tokens=True)
@@ -62,5 +62,6 @@ for i, sample_output in enumerate(sample_outputs):
62
 
63
  ## TODO
64
 
 
65
  - [ ] Preprocess the data in a better way
66
  - [ ] Download github and train it on everything
 
51
  num_return_sequences=20
52
  )
53
 
54
+ print("Output:\\
55
  " + 100 * '-')
56
  for i, sample_output in enumerate(sample_outputs):
57
  m = tokenizer.decode(sample_output, skip_special_tokens=True)
 
62
 
63
  ## TODO
64
 
65
+ - [ ] Fixup the data; it seems to contain multiple todo's per line
66
  - [ ] Preprocess the data in a better way
67
  - [ ] Download github and train it on everything