模型:
FinanceInc/auditor_sentiment_finetuned
该模型是从内部训练的 FinBERT 的专有版本进行微调的,使用了demo.org专有的审计师情感评价数据集。
FinBERT是在大规模财经文本上预先训练的BERT模型。旨在增强财经自然语言处理研究和实践,希望财经从业者和研究人员能够从该模型中受益,而无需大量计算资源来训练模型。
该模型使用demo-org/auditor_review评论数据集中的 Autotrain 进行了微调。
该模型目前正在开发中进行评估,评估将持续到本季度结束。根据结果,可能会将其提升到生产环境。
在训练过程中使用了以下超参数:
您可以使用cURL访问此模型:
$ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoTrain"}' https://api-inference.huggingface.co/models/rajistics/autotrain-auditor-sentiment-1167143226
或使用Python API:
from transformers import AutoModelForSequenceClassification, AutoTokenizer model = AutoModelForSequenceClassification.from_pretrained("rajistics/autotrain-auditor-sentiment-1167143226", use_auth_token=True) tokenizer = AutoTokenizer.from_pretrained("rajistics/autotrain-auditor-sentiment-1167143226", use_auth_token=True) inputs = tokenizer("I love AutoTrain", return_tensors="pt") outputs = model(**inputs)