Update README.md
Browse files
README.md
CHANGED
@@ -27,7 +27,7 @@ This model is licensed under CC BY-NC and is freely used for non-commercial, res
|
|
27 |
```python
|
28 |
from transformers import pipeline
|
29 |
pipe = pipeline("image-classification", model="Mitsua/mitsua-japanese-tagger")
|
30 |
-
ret = pipe("test.jpg", top_k=100)
|
31 |
print(ret)
|
32 |
```
|
33 |
|
|
|
27 |
```python
|
28 |
from transformers import pipeline
|
29 |
pipe = pipeline("image-classification", model="Mitsua/mitsua-japanese-tagger")
|
30 |
+
ret = pipe("test.jpg", function_to_apply="sigmoid", top_k=100)
|
31 |
print(ret)
|
32 |
```
|
33 |
|