Update README.md
Browse files
README.md
CHANGED
|
@@ -100,6 +100,16 @@ sequences = pipeline(
|
|
| 100 |
for seq in sequences:
|
| 101 |
print(seq['generated_text'][len(input_text):])
|
| 102 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 103 |
# Training
|
| 104 |
|
| 105 |
## Hardware
|
|
@@ -207,6 +217,14 @@ for seq in sequences:
|
|
| 207 |
print(seq['generated_text'][len(input_text):])
|
| 208 |
```
|
| 209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 210 |
|
| 211 |
|
| 212 |
# 训练
|
|
|
|
| 100 |
for seq in sequences:
|
| 101 |
print(seq['generated_text'][len(input_text):])
|
| 102 |
```
|
| 103 |
+
|
| 104 |
+
**generate output**
|
| 105 |
+
|
| 106 |
+
```python
|
| 107 |
+
# Test case
|
| 108 |
+
arr = [5, 2, 9, 1, 7]
|
| 109 |
+
print(quick_sort(arr))
|
| 110 |
+
|
| 111 |
+
```
|
| 112 |
+
|
| 113 |
# Training
|
| 114 |
|
| 115 |
## Hardware
|
|
|
|
| 217 |
print(seq['generated_text'][len(input_text):])
|
| 218 |
```
|
| 219 |
|
| 220 |
+
**generate output**
|
| 221 |
+
|
| 222 |
+
```python
|
| 223 |
+
# Test case
|
| 224 |
+
arr = [5, 2, 9, 1, 7]
|
| 225 |
+
print(quick_sort(arr))
|
| 226 |
+
|
| 227 |
+
```
|
| 228 |
|
| 229 |
|
| 230 |
# 训练
|