Instructions to use DeepLearning101/Medical-Advice with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- paddlenlp
How to use DeepLearning101/Medical-Advice with paddlenlp:
from paddlenlp.transformers import AutoTokenizer, UIEM tokenizer = AutoTokenizer.from_pretrained("DeepLearning101/Medical-Advice", from_hf_hub=True) model = UIEM.from_pretrained("DeepLearning101/Medical-Advice", from_hf_hub=True) - Notebooks
- Google Colab
- Kaggle
File size: 452 Bytes
e69522b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | {
"architectures": [
"UIEM"
],
"attention_probs_dropout_prob": 0.1,
"dtype": "float32",
"hidden_act": "gelu",
"hidden_dropout_prob": 0.1,
"hidden_size": 1024,
"initializer_range": 0.02,
"intermediate_size": 3072,
"max_position_embeddings": 514,
"model_type": "ernie_m",
"num_attention_heads": 16,
"num_hidden_layers": 24,
"pad_token_id": 1,
"paddlenlp_version": null,
"type_vocab_size": 16,
"vocab_size": 250002
}
|