Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
5 |
```
|
|
|
1 |
+
---
|
2 |
+
---
|
3 |
+
# how to load the pipeline
|
4 |
+
```python
|
5 |
+
from transformers import pipeline
|
6 |
+
pipe = pipeline(model="not-lain/test-dynamic-pipeline",trust_remote_code=True)
|
7 |
+
pipe("hi",second_text="hello")
|
8 |
```
|