File size: 495 Bytes
5fa1a76 |
1 2 3 4 5 6 7 8 9 10 11 |
thon pipe = pipeline("my-new-task") pipe("This is a test") [{"label": "1-star", "score": 0.8}, {"label": "2-star", "score": 0.1}, {"label": "3-star", "score": 0.05} {"label": "4-star", "score": 0.025}, {"label": "5-star", "score": 0.025}] pipe("This is a test", top_k=2) [{"label": "1-star", "score": 0.8}, {"label": "2-star", "score": 0.1}] In order to achieve that, we'll update our postprocess method with a default parameter to 5. and edit _sanitize_parameters to allow this new parameter. |