Instructions to use Jarnails1559/sentiment-analyzer-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jarnails1559/sentiment-analyzer-model with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Jarnails1559/sentiment-analyzer-model", dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 438 Bytes
26b34f0 61c75cf 26b34f0 31deeba 26b34f0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | {
"attn_pdrop": 0.1,
"embd_pdrop": 0.1,
"layer_norm_epsilon": 1e-5,
"model_type": "gpt2",
"n_head": 12,
"n_layer": 12,
"n_embd": 768,
"resid_pdrop": 0.1,
"initializer_range": 0.02,
"summary_type": "cls_index",
"summary_use_proj": true,
"summary_activation": null,
"summary_proj_to_labels": true,
"summary_first_dropout": 0.1,
"summary_last_dropout": 0.1,
"vocab_size": 50257,
"framework": "tensorflow"
}
|