aali commited on
Commit
4bab141
1 Parent(s): cb2ab29

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -6
README.md CHANGED
@@ -29,8 +29,6 @@ model_inputs = encodeds['input_ids'].to(device)
29
  generated_ids = model.generate(model_inputs, max_new_tokens=100, do_sample=False)
30
  decoded = tokenizer.batch_decode(generated_ids)
31
  print(decoded[0])
32
- # '<s> Natalia sold clips to 48 of her friends in April,and then she sold half as
33
- # many clips in May.How many clips did Natalia sell altogether in April and May?\n\n
34
  # Natalia sold 48 clips in April.\nIn May, she sold half as many clips as in April,
35
  # so she sold 48/2 = 24 clips.\nAltogether, Natalia sold 48 + 24 = 72 clips in April and May.\n#### 72\nThe answer is: 72</s>'
36
 
@@ -41,10 +39,7 @@ model_inputs = encodeds['input_ids'].to(device)
41
  generated_ids = model.generate(model_inputs, max_new_tokens=100, do_sample=False)
42
  decoded = tokenizer.batch_decode(generated_ids)
43
  print(decoded[0])
44
- # '<s> James loves to go swimming and has to swim across a 20-mile lake. He can swim
45
- # at a pace of 2 miles per hour. He swims 60% of the distance. After that, he stops
46
- # on an island and rests for half as long as the swimming time. He then finishes the
47
- # remaining distance while going half the speed. How long did it take him to get across the lake?<GPT4></s>'
48
  ```
49
 
50
  ## Learn More
 
29
  generated_ids = model.generate(model_inputs, max_new_tokens=100, do_sample=False)
30
  decoded = tokenizer.batch_decode(generated_ids)
31
  print(decoded[0])
 
 
32
  # Natalia sold 48 clips in April.\nIn May, she sold half as many clips as in April,
33
  # so she sold 48/2 = 24 clips.\nAltogether, Natalia sold 48 + 24 = 72 clips in April and May.\n#### 72\nThe answer is: 72</s>'
34
 
 
39
  generated_ids = model.generate(model_inputs, max_new_tokens=100, do_sample=False)
40
  decoded = tokenizer.batch_decode(generated_ids)
41
  print(decoded[0])
42
+ # <GPT4></s>'
 
 
 
43
  ```
44
 
45
  ## Learn More