VladimirVorobev
commited on
Commit
•
baa9fa2
1
Parent(s):
180ddbe
Update README.md
Browse files
README.md
CHANGED
@@ -53,34 +53,35 @@ paraphrase(text)
|
|
53 |
```
|
54 |
**Output:**
|
55 |
```python
|
56 |
-
['
|
|
|
57 |
'Which places should I not miss when visiting New York?',
|
58 |
-
'
|
59 |
-
'Which
|
60 |
-
'What are some of the must-visit locations in New York?']
|
61 |
```
|
62 |
|
63 |
**Input:**
|
64 |
```python
|
65 |
-
text = "
|
66 |
paraphrase(text)
|
67 |
```
|
68 |
**Output:**
|
69 |
```python
|
70 |
-
[
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
```
|
76 |
|
77 |
|
78 |
**Train parameters:**
|
79 |
```python
|
80 |
-
epochs =
|
81 |
-
batch_size =
|
|
|
82 |
lr = 5e-5
|
83 |
-
batches_qty =
|
84 |
betas = (0.9, 0.999)
|
85 |
eps = 1e-08
|
86 |
```
|
|
|
53 |
```
|
54 |
**Output:**
|
55 |
```python
|
56 |
+
['Which are the top destinations to explore in New York?',
|
57 |
+
'What are some must-see locations in New York?',
|
58 |
'Which places should I not miss when visiting New York?',
|
59 |
+
'What are some must-see attractions in New York?',
|
60 |
+
'Which are the top tourist destinations in New York?']
|
|
|
61 |
```
|
62 |
|
63 |
**Input:**
|
64 |
```python
|
65 |
+
text = "Rammstein's album Mutter was recorded in the south of France in May and June 2000, and mixed in Stockholm in October of that year."
|
66 |
paraphrase(text)
|
67 |
```
|
68 |
**Output:**
|
69 |
```python
|
70 |
+
['In May and June 2000, Rammstein recorded Mutter in the south of France, and in October of that year, it was mixed in Stockholm.',
|
71 |
+
'In May and June 2000, Rammstein filmed the album Mutter in the south of France, and in October of that year, it was mixed in Stockholm.',
|
72 |
+
'In May and June 2000, Rammstein recorded Mutter in the south of France, followed by mixing in Stockholm in October of the same year.',
|
73 |
+
'The album Mutter by Rammstein was recorded in the south of France in May and June 2000, and mixed in Stockholm in October of the same year.',
|
74 |
+
'In May and June 2000, Rammstein recorded Mutter in the south of France, followed by mixing in Stockholm in October of that year.']
|
75 |
```
|
76 |
|
77 |
|
78 |
**Train parameters:**
|
79 |
```python
|
80 |
+
epochs = 2
|
81 |
+
batch_size = 64
|
82 |
+
max_length = 128
|
83 |
lr = 5e-5
|
84 |
+
batches_qty = 196465
|
85 |
betas = (0.9, 0.999)
|
86 |
eps = 1e-08
|
87 |
```
|