AlekseyKulnevich commited on
Commit
a26951f
·
1 Parent(s): ffe30d3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -30
README.md CHANGED
@@ -30,36 +30,37 @@ questions = model.generate(input_ids=input_ids,
30
  num_return_sequences=10)
31
 
32
  tokenizer.batch_decode(questions, skip_special_tokens=True)
33
- output: ['What is the impact of human induced climate change on tropical cyclones?',
34
- 'What is the impact of climate change on tropical cyclones?',
35
- 'What is the impact of human induced climate change on tropical cyclone formation?',
36
- 'How many tropical cyclones will occur in the mid-latitudes?',
37
- 'What is the impact of climate change on the formation of tropical cyclones?',
38
- 'Is it possible for a tropical cyclone to form in the middle latitudes?',
39
- 'How many tropical cyclones will be formed in the mid-latitudes?',
40
- 'How many tropical cyclones will there be in the mid-latitudes?',
41
- 'How many tropical cyclones will form in the mid-latitudes?',
42
- 'What is the impact of global warming on tropical cyclones?',
43
- 'How long does it take for a tropical cyclone to form?',
44
- 'What are the impacts of climate change on tropical cyclones?',
45
- 'What are the effects of climate change on tropical cyclones?',
46
- 'How many tropical cyclones will be able to form in the middle latitudes?',
47
- 'What is the impact of climate change on tropical cyclone formation?',
48
- 'What is the effect of climate change on tropical cyclones?',
49
- 'How long does it take for a tropical cyclone to form in the middle latitude?',
50
- 'How many tropical cyclones will occur in the middle latitudes?',
51
- 'How many tropical cyclones are likely to form in the midlatitudes?',
52
- 'How many tropical cyclones are likely to form in the middle latitudes?',
53
- 'How many tropical cyclones are expected to form in the midlatitudes?',
54
- 'How many tropical cyclones will be formed in the middle latitudes?',
55
- 'How many tropical cyclones will there be in the middle latitudes?',
56
- 'How long will it take for a tropical cyclone to form in the middle latitude?',
57
- 'What is the impact of global warming on tropical cyclone formation?',
58
- 'How many tropical cyclones will form in the middle latitudes?',
59
- 'How many tropical cyclones can we expect to form in the middle latitudes?',
60
- 'Is it possible for a tropical cyclone to form in the middle latitude?',
61
- 'What is the effect of climate change on tropical cyclone formation?',
62
- 'What are the effects of climate change on tropical cyclone formation?']
 
63
  ```
64
 
65
 
 
30
  num_return_sequences=10)
31
 
32
  tokenizer.batch_decode(questions, skip_special_tokens=True)
33
+ output:
34
+ ['What is the impact of human induced climate change on tropical cyclones?',
35
+ 'What is the impact of climate change on tropical cyclones?',
36
+ 'What is the impact of human induced climate change on tropical cyclone formation?',
37
+ 'How many tropical cyclones will occur in the mid-latitudes?',
38
+ 'What is the impact of climate change on the formation of tropical cyclones?',
39
+ 'Is it possible for a tropical cyclone to form in the middle latitudes?',
40
+ 'How many tropical cyclones will be formed in the mid-latitudes?',
41
+ 'How many tropical cyclones will there be in the mid-latitudes?',
42
+ 'How many tropical cyclones will form in the mid-latitudes?',
43
+ 'What is the impact of global warming on tropical cyclones?',
44
+ 'How long does it take for a tropical cyclone to form?',
45
+ 'What are the impacts of climate change on tropical cyclones?',
46
+ 'What are the effects of climate change on tropical cyclones?',
47
+ 'How many tropical cyclones will be able to form in the middle latitudes?',
48
+ 'What is the impact of climate change on tropical cyclone formation?',
49
+ 'What is the effect of climate change on tropical cyclones?',
50
+ 'How long does it take for a tropical cyclone to form in the middle latitude?',
51
+ 'How many tropical cyclones will occur in the middle latitudes?',
52
+ 'How many tropical cyclones are likely to form in the midlatitudes?',
53
+ 'How many tropical cyclones are likely to form in the middle latitudes?',
54
+ 'How many tropical cyclones are expected to form in the midlatitudes?',
55
+ 'How many tropical cyclones will be formed in the middle latitudes?',
56
+ 'How many tropical cyclones will there be in the middle latitudes?',
57
+ 'How long will it take for a tropical cyclone to form in the middle latitude?',
58
+ 'What is the impact of global warming on tropical cyclone formation?',
59
+ 'How many tropical cyclones will form in the middle latitudes?',
60
+ 'How many tropical cyclones can we expect to form in the middle latitudes?',
61
+ 'Is it possible for a tropical cyclone to form in the middle latitude?',
62
+ 'What is the effect of climate change on tropical cyclone formation?',
63
+ 'What are the effects of climate change on tropical cyclone formation?']
64
  ```
65
 
66