Instructions to use credentek/TenaliAI-FinTech-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use credentek/TenaliAI-FinTech-v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="credentek/TenaliAI-FinTech-v1")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("credentek/TenaliAI-FinTech-v1") model = AutoModelForSequenceClassification.from_pretrained("credentek/TenaliAI-FinTech-v1") - Notebooks
- Google Colab
- Kaggle
File size: 3,432 Bytes
f610ef0 565eb32 f610ef0 565eb32 0f340cf da32812 6f2f7a0 565eb32 f610ef0 565eb32 040de8e 0f340cf 040de8e 565eb32 f610ef0 040de8e f610ef0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | {
"_name_or_path": "TenaliAIModels/BertBaseModel",
"architectures": [
"BertForSequenceClassification"
],
"attention_probs_dropout_prob": 0.1,
"classifier_dropout": null,
"gradient_checkpointing": false,
"hidden_act": "gelu",
"hidden_dropout_prob": 0.1,
"hidden_size": 768,
"id2label": {
"0": "add_beneficiary",
"1": "balance_enquiry",
"2": "beneficiary_details",
"3": "bill_payment",
"4": "block_card",
"5": "bulk_payments",
"6": "bulk_payments_status",
"7": "change_contact_info",
"8": "debit_card_details",
"9": "delete_beneficiary",
"10": "fd_details",
"11": "fd_rate",
"12": "fd_rate_large_amount",
"13": "funds_transfer_other_bank",
"14": "funds_transfer_own_account",
"15": "funds_transfer_status",
"16": "funds_transfer_third_party",
"17": "gst_payment",
"18": "investment_details",
"19": "list_accounts",
"20": "list_beneficiary",
"21": "list_billers",
"22": "list_fd",
"23": "list_investments",
"24": "list_loans",
"25": "loan_details",
"26": "nrv_details",
"27": "open_account",
"28": "pending_authorization",
"29": "pin_change",
"30": "raise_request",
"31": "request_status",
"32": "saving_interest_rate",
"33": "send_money_abroad",
"34": "ss_fd_rate",
"35": "transaction_history",
"36": "transaction_limit",
"37": "update_beneficiary",
"38": "LABEL_38",
"39": "LABEL_39",
"40": "LABEL_40",
"41": "LABEL_41",
"42": "LABEL_42",
"43": "LABEL_43",
"44": "LABEL_44",
"45": "LABEL_45",
"46": "LABEL_46",
"47": "LABEL_47",
"48": "LABEL_48",
"49": "LABEL_49"
},
"initializer_range": 0.02,
"intermediate_size": 3072,
"label2id": {
"LABEL_38": 38,
"LABEL_39": 39,
"LABEL_40": 40,
"LABEL_41": 41,
"LABEL_42": 42,
"LABEL_43": 43,
"LABEL_44": 44,
"LABEL_45": 45,
"LABEL_46": 46,
"LABEL_47": 47,
"LABEL_48": 48,
"LABEL_49": 49,
"add_beneficiary": 0,
"balance_enquiry": 1,
"beneficiary_details": 2,
"bill_payment": 3,
"block_card": 4,
"bulk_payments": 5,
"bulk_payments_status": 6,
"change_contact_info": 7,
"debit_card_details": 8,
"delete_beneficiary": 9,
"fd_details": 10,
"fd_rate": 11,
"fd_rate_large_amount": 12,
"funds_transfer_other_bank": 13,
"funds_transfer_own_account": 14,
"funds_transfer_status": 15,
"funds_transfer_third_party": 16,
"gst_payment": 17,
"investment_details": 18,
"list_accounts": 19,
"list_beneficiary": 20,
"list_billers": 21,
"list_fd": 22,
"list_investments": 23,
"list_loans": 24,
"loan_details": 25,
"nrv_details": 26,
"open_account": 27,
"pending_authorization": 28,
"pin_change": 29,
"raise_request": 30,
"request_status": 31,
"saving_interest_rate": 32,
"send_money_abroad": 33,
"ss_fd_rate": 34,
"transaction_history": 35,
"transaction_limit": 36,
"update_beneficiary": 37
},
"layer_norm_eps": 1e-12,
"max_position_embeddings": 512,
"model_type": "bert",
"num_attention_heads": 12,
"num_hidden_layers": 12,
"pad_token_id": 0,
"position_embedding_type": "absolute",
"problem_type": "single_label_classification",
"torch_dtype": "float32",
"transformers_version": "4.30.0",
"type_vocab_size": 2,
"use_cache": true,
"vocab_size": 30522
}
|