Views
No views yet
1>>> from transformers import pipeline
2>>> pipe = pipeline("text-classification", model="Isotonic/deberta-v3-base-market", num_labels=2, use_fast=False)
3>>> text = "identify candle: open: 21788.19, close: 21900, high: 21965.23, low: 21788.19"
4>>> pipe(text)
5[{'label': 'Bullish', 'score': 0.9999979734420776}]