Add SetFit model
Browse files- 1_Pooling/config.json +10 -0
- README.md +0 -0
- config.json +57 -0
- config_sentence_transformers.json +10 -0
- config_setfit.json +565 -0
- model.safetensors +3 -0
- model_head.pkl +3 -0
- modules.json +20 -0
- sentence_bert_config.json +4 -0
- special_tokens_map.json +37 -0
- tokenizer.json +0 -0
- tokenizer_config.json +56 -0
- vocab.txt +0 -0
1_Pooling/config.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"word_embedding_dimension": 768,
|
3 |
+
"pooling_mode_cls_token": false,
|
4 |
+
"pooling_mode_mean_tokens": true,
|
5 |
+
"pooling_mode_max_tokens": false,
|
6 |
+
"pooling_mode_mean_sqrt_len_tokens": false,
|
7 |
+
"pooling_mode_weightedmean_tokens": false,
|
8 |
+
"pooling_mode_lasttoken": false,
|
9 |
+
"include_prompt": true
|
10 |
+
}
|
README.md
ADDED
The diff for this file is too large to render.
See raw diff
|
|
config.json
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"activation_function": "swiglu",
|
3 |
+
"architectures": [
|
4 |
+
"NomicBertModel"
|
5 |
+
],
|
6 |
+
"attn_pdrop": 0.0,
|
7 |
+
"auto_map": {
|
8 |
+
"AutoConfig": "nomic-ai/nomic-bert-2048--configuration_hf_nomic_bert.NomicBertConfig",
|
9 |
+
"AutoModel": "nomic-ai/nomic-bert-2048--modeling_hf_nomic_bert.NomicBertModel",
|
10 |
+
"AutoModelForMaskedLM": "nomic-ai/nomic-bert-2048--modeling_hf_nomic_bert.NomicBertForPreTraining"
|
11 |
+
},
|
12 |
+
"bos_token_id": null,
|
13 |
+
"causal": false,
|
14 |
+
"dense_seq_output": true,
|
15 |
+
"embd_pdrop": 0.0,
|
16 |
+
"eos_token_id": null,
|
17 |
+
"fused_bias_fc": true,
|
18 |
+
"fused_dropout_add_ln": true,
|
19 |
+
"initializer_range": 0.02,
|
20 |
+
"layer_norm_epsilon": 1e-12,
|
21 |
+
"max_trained_positions": 2048,
|
22 |
+
"mlp_fc1_bias": false,
|
23 |
+
"mlp_fc2_bias": false,
|
24 |
+
"model_type": "nomic_bert",
|
25 |
+
"n_embd": 768,
|
26 |
+
"n_head": 12,
|
27 |
+
"n_inner": 3072,
|
28 |
+
"n_layer": 12,
|
29 |
+
"n_positions": 8192,
|
30 |
+
"pad_vocab_size_multiple": 64,
|
31 |
+
"parallel_block": false,
|
32 |
+
"parallel_block_tied_norm": false,
|
33 |
+
"prenorm": false,
|
34 |
+
"qkv_proj_bias": false,
|
35 |
+
"reorder_and_upcast_attn": false,
|
36 |
+
"resid_pdrop": 0.0,
|
37 |
+
"rotary_emb_base": 1000,
|
38 |
+
"rotary_emb_fraction": 1.0,
|
39 |
+
"rotary_emb_interleaved": false,
|
40 |
+
"rotary_emb_scale_base": null,
|
41 |
+
"rotary_scaling_factor": 2,
|
42 |
+
"scale_attn_by_inverse_layer_idx": false,
|
43 |
+
"scale_attn_weights": true,
|
44 |
+
"summary_activation": null,
|
45 |
+
"summary_first_dropout": 0.1,
|
46 |
+
"summary_proj_to_labels": true,
|
47 |
+
"summary_type": "cls_index",
|
48 |
+
"summary_use_proj": true,
|
49 |
+
"torch_dtype": "float32",
|
50 |
+
"transformers_version": "4.50.0",
|
51 |
+
"type_vocab_size": 2,
|
52 |
+
"use_cache": true,
|
53 |
+
"use_flash_attn": true,
|
54 |
+
"use_rms_norm": false,
|
55 |
+
"use_xentropy": true,
|
56 |
+
"vocab_size": 30528
|
57 |
+
}
|
config_sentence_transformers.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"__version__": {
|
3 |
+
"sentence_transformers": "3.4.1",
|
4 |
+
"transformers": "4.50.0",
|
5 |
+
"pytorch": "2.6.0+cu124"
|
6 |
+
},
|
7 |
+
"prompts": {},
|
8 |
+
"default_prompt_name": null,
|
9 |
+
"similarity_fn_name": "cosine"
|
10 |
+
}
|
config_setfit.json
ADDED
@@ -0,0 +1,565 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"labels": [
|
3 |
+
"ATM / Debit Cards",
|
4 |
+
"ATM/Debit Cards",
|
5 |
+
"Aadhaar Seeding Online",
|
6 |
+
"Aadhar enrolment / correction form",
|
7 |
+
"Aadhar enrolment / correction form(Hindi)",
|
8 |
+
"Access Restricted",
|
9 |
+
"Account Balance",
|
10 |
+
"Account Opening Forms NRI",
|
11 |
+
"Add to your Financial Stability with IND Shakti 555 days",
|
12 |
+
"Add to your Financial Stability \u2013 with IND Shakti 555 days",
|
13 |
+
"Agri Clinic and Agri Business Centres",
|
14 |
+
"Agricultural Godowns / Cold Storage",
|
15 |
+
"Agricultural Jewel Loan Scheme",
|
16 |
+
"Agriculture Loan",
|
17 |
+
"Amalgamation",
|
18 |
+
"Analyst Coverage",
|
19 |
+
"Analyst Coverage on Bank\u2019s Share Price",
|
20 |
+
"Annual General Meeting",
|
21 |
+
"Annual General Meetings and Extraordinary General Meetings",
|
22 |
+
"Annual Reports",
|
23 |
+
"Another Option for Pension",
|
24 |
+
"Application Downloads",
|
25 |
+
"Applications supported by Blocked Amount (ASBA)",
|
26 |
+
"Audio/ Video Recording/Concall Transcripts",
|
27 |
+
"Awards & Accolades",
|
28 |
+
"Azadi Ka Amrit Mahotsav #TogetherforBiggerThings",
|
29 |
+
"Azadi Ka Amrit Mahotsav \u2013 #TogetherforBiggerThings",
|
30 |
+
"BCSBI - Code of Bank\u2019s Commitment\nto Customers",
|
31 |
+
"BE Safe in Your Cyber Behaviour",
|
32 |
+
"BHIM AADHAAR PAY",
|
33 |
+
"BHIM Aadhaar Pay",
|
34 |
+
"BSBDA AND SMALL ACCOUNT",
|
35 |
+
"BSBDA and Small Account",
|
36 |
+
"Banking Ombudsman 2021",
|
37 |
+
"Bank\u00e2\u20ac\u2122s Profile",
|
38 |
+
"Bank\u2019s Profile",
|
39 |
+
"Base I -II Disclosures",
|
40 |
+
"Best Practices code of the Bank",
|
41 |
+
"Bharat Aadhaar Seeding Enabler",
|
42 |
+
"Block Lost ATM Card",
|
43 |
+
"Block Lost Credit Card",
|
44 |
+
"Block all channels",
|
45 |
+
"Board of Directors",
|
46 |
+
"Booklet on Digital Products & services",
|
47 |
+
"Business Responsibility and Sustainability Report",
|
48 |
+
"CA FOR STATE /CENTRAL GOVT & CONSULAR & IND PFMS",
|
49 |
+
"CA FOR STATE /CENTRAL GOVT & CONSULAR & IND PFMS\n",
|
50 |
+
"CA FOR STATE/CENTRAL GOVT & CONSULAR & IND PFMS (Government Accounts)",
|
51 |
+
"CAMS-CRA_Registration",
|
52 |
+
"CAMS-CRA_Standing Instructions",
|
53 |
+
"CAMS-CRA_Subscription",
|
54 |
+
"CENTRAL BANK DIGITAL CURRENCY (CBDC) -Indian Bank Digital Rupee Application",
|
55 |
+
"CGRS",
|
56 |
+
"CITIZENS\u2019 CHARTER ",
|
57 |
+
"CONTACTS FOR QUERIES",
|
58 |
+
"CORPORATE LOAN",
|
59 |
+
"Capital Gains",
|
60 |
+
"Capital Gains SB account",
|
61 |
+
"Careers",
|
62 |
+
"Centralized Pension Processing Centre",
|
63 |
+
"Chief General Managers",
|
64 |
+
"Chief Vigilance Officer",
|
65 |
+
"Choosing the Right Term Deposit: Fixed, Recurring or Money Multiplier Your Best Fit?",
|
66 |
+
"Choosing the Right Term Deposit: Fixed, Recurring or Money Multiplier \u2013 Your Best Fit?",
|
67 |
+
"Coin vending machines(CVMs) location in chennai",
|
68 |
+
"Colombo Branch",
|
69 |
+
"Common Account Opening Form-Non Individuals",
|
70 |
+
"Compressed Bio Gas plant financing under Sustainable alternative towards affordable Transportation",
|
71 |
+
"Corporate Blog",
|
72 |
+
"Corporate Credit",
|
73 |
+
"Corporate Governance",
|
74 |
+
"Corporate Governance Reports",
|
75 |
+
"Corporate Loan",
|
76 |
+
"Corporate Social Responsiblity",
|
77 |
+
"Corporate credit",
|
78 |
+
"Covering letter to be obtained from the customers currently holding lockers",
|
79 |
+
"Credit Cards",
|
80 |
+
"Credit Life Insurance Coverages in Association with M/s. Kotak Life",
|
81 |
+
"Credit Life Insurance Coverages in association with M/s. Aditya Birla Sun Life Insurance",
|
82 |
+
"Current Account",
|
83 |
+
"Current Account \u2013 Minimum Balance Requirement",
|
84 |
+
"Cusomer Feedback",
|
85 |
+
"Customer Centric Services",
|
86 |
+
"Customer Complaint/Awareness",
|
87 |
+
"Customer Complaint/Awareness_Cyber Awareness Content",
|
88 |
+
"Customer Complaint/UEBT",
|
89 |
+
"Customer Complaints / Awareness",
|
90 |
+
"Customer On-Boarding using TAB",
|
91 |
+
"Customer care",
|
92 |
+
"Cyber Awareness Content",
|
93 |
+
"Cyber crime / Unauthorized transaction",
|
94 |
+
"DEAF Transaction List",
|
95 |
+
"DISPLAY OF INFORMATION SECURED ASSETS POSSESSED UNDER THE SARFAESI ACT 2002",
|
96 |
+
"DRAT & DRT NODAL AND LIAISON Officers ",
|
97 |
+
"Dairy Loan",
|
98 |
+
"Dealing Dishonour of cheques",
|
99 |
+
"Death Claim Settlement",
|
100 |
+
"Debenture Trustee",
|
101 |
+
"Debit Card",
|
102 |
+
"Debit Cards",
|
103 |
+
"Debit card",
|
104 |
+
"Defending Against Rising Online Frauds: Stay Cyber-Safe!",
|
105 |
+
"Deposit Insurance & Credit Guarantee Corp..",
|
106 |
+
"Deposit Interest Certificate",
|
107 |
+
"Deposit Rates",
|
108 |
+
"Derivatives",
|
109 |
+
"Designated Authority for Whistle Blower Complaints",
|
110 |
+
"Details of Outstanding Tier 1 and Tier 2 Bonds",
|
111 |
+
"Digital Banking Unit: Shaping the Financial Future of India",
|
112 |
+
"Digital Insurance Platform",
|
113 |
+
"Digital Personal Data Protection Policy \n(Eng)",
|
114 |
+
"Digitizing the Indian Banking Experience",
|
115 |
+
"Disclaimer",
|
116 |
+
"Disclosures",
|
117 |
+
"Disclosures made to Stock Exchanges",
|
118 |
+
"Display of Information - Secured Assets Possessed Under The Sarfaesi ACT 2002",
|
119 |
+
"Dividend Details",
|
120 |
+
"Don\u2019t Be a Money Mule: Protect Yourself from Fraud",
|
121 |
+
"Doorstep Banking",
|
122 |
+
"Doorstep Banking: Your Convenience, Our Priority",
|
123 |
+
"E Confirmation of Bank Guarantee",
|
124 |
+
"E-ALLAHABAD BANK",
|
125 |
+
"E-Shopping",
|
126 |
+
"ECSNoticetoCustomers(Pdf)",
|
127 |
+
"ED's Profile",
|
128 |
+
"Education Loan Subsidy Schemes",
|
129 |
+
"Education Loan \u2013 Subsidy Schemes",
|
130 |
+
"Education loan",
|
131 |
+
"Electronic BG Applicant video",
|
132 |
+
"Electronic BG Benificiary video",
|
133 |
+
"Empanelments / Engagements",
|
134 |
+
"Event Updates/ Newspaper Advertisement",
|
135 |
+
"Executive Director\u00e2\u20ac\u2122s Profile",
|
136 |
+
"Executive Director\u2019s Profile",
|
137 |
+
"External Sites",
|
138 |
+
"Extraordinary General Meetings",
|
139 |
+
"F.A.Qs",
|
140 |
+
"FCNR (B) Accounts",
|
141 |
+
"FCNR (B) DEPOSITS Rates",
|
142 |
+
"FIXED DEPOSIT",
|
143 |
+
"Fair Lending Practices Code",
|
144 |
+
"Featured Products / Services / Schemes",
|
145 |
+
"Financial Inclusion",
|
146 |
+
"Financial Inclusion in India: Filling the Void",
|
147 |
+
"Financial Results",
|
148 |
+
"Financing Agriculturists for Purchase of Tractors & Other Farm Machinery",
|
149 |
+
"Find the Best Avenues for Tax Savings with Indian Bank",
|
150 |
+
"First Quarter Financial Results 2024-25",
|
151 |
+
"Fixed Deposit",
|
152 |
+
"Fixed ROI for Retail Loans",
|
153 |
+
"Food and Agro Processing",
|
154 |
+
"Foreign Branches",
|
155 |
+
"Forex Rates for Treasury",
|
156 |
+
"Forex Remittance Facility through Internet Banking- Retail",
|
157 |
+
"Frequently Asked Questions Internet Banking and Mobile Banking",
|
158 |
+
"General Managers",
|
159 |
+
"Government Deposit Schemes",
|
160 |
+
"Government Sponsored Jan Suraksha Schemes: Trio Pack for Your Financial Security",
|
161 |
+
"Head Office Departments",
|
162 |
+
"Helpline for Women in Distress - 7827170170",
|
163 |
+
"Helpline for Women in Distress - 7827170172",
|
164 |
+
"History",
|
165 |
+
"Home Loan",
|
166 |
+
"Home Loan Scheme for Economically Weaker Section (EWS), Low Income Group (LIG) and Middle Income Group (MIG) individuals: Urban Areas",
|
167 |
+
"Home Loan to Corporate Entity",
|
168 |
+
"Home Loans: A Strategic Move to Preserve Your Savings",
|
169 |
+
"How to Save Tax 101: A Comprehensive Guide to Tax Saving Investment Options",
|
170 |
+
"How-to Videos Internet Banking",
|
171 |
+
"How-to Videos Mobile Banking",
|
172 |
+
"IB Arogya Raksha \u2013 Portability Options for existing customers",
|
173 |
+
"IB COMFORT- DOMESTIC AND NRE",
|
174 |
+
"IB CONTRACTORS",
|
175 |
+
"IB CORP SB Payroll Package Scheme for Salaried Class",
|
176 |
+
"IB CORP SB \u2013 Payroll package scheme for salaried class",
|
177 |
+
"IB Corp SB \u2013 Payroll Package Scheme for Salaried Class",
|
178 |
+
"IB Doctor Plus",
|
179 |
+
"IB Education Loan (IBA",
|
180 |
+
"IB Education Loan (IBA)",
|
181 |
+
"IB Education Loan(IBA)",
|
182 |
+
"IB Gen X For the Vibrant Youth",
|
183 |
+
"IB Gen X \u2013 For the Vibrant Youth",
|
184 |
+
"IB Golden Ager Term Deposit Product for Super Senior Citizens",
|
185 |
+
"IB Golden Ager \u2013 Term Deposit Product for Super Senior Citizens",
|
186 |
+
"IB HARIT",
|
187 |
+
"IB HOME ENRICH",
|
188 |
+
"IB Home ENRICH",
|
189 |
+
"IB Home Improve",
|
190 |
+
"IB Home Loan",
|
191 |
+
"IB Home Loan Flexi",
|
192 |
+
"IB Home Loan Plus",
|
193 |
+
"IB Kishore Savings Bank Account for Minors",
|
194 |
+
"IB Kishore \u2013 Savings Bank Account for Minors",
|
195 |
+
"IB Loan against Sovereign Gold Bond",
|
196 |
+
"IB MSME Jewel Loan",
|
197 |
+
"IB MY OWN SHOP",
|
198 |
+
"IB Mahila Shakti For Women",
|
199 |
+
"IB Mahila Shakti \u2013 For Women",
|
200 |
+
"IB PROFESSIONAL",
|
201 |
+
"IB Pension Loan",
|
202 |
+
"IB Plot Loan",
|
203 |
+
"IB Produce Marketing Loan Loan Against eNWRs",
|
204 |
+
"IB Produce Marketing Loan \u2013 Loan Against eNWRs",
|
205 |
+
"IB RERA CURRENT ACCOUNT",
|
206 |
+
"IB RERA Current Account",
|
207 |
+
"IB Salaam Special Account for Defence Personnel",
|
208 |
+
"IB Salaam \u2013 Special Account for Defence Personnel",
|
209 |
+
"IB Sammaan",
|
210 |
+
"IB Smart Kid",
|
211 |
+
"IB Star Agro Mills (Rice Mill, Dhal Mill, Oil Mill and Flour Mill)",
|
212 |
+
"IB TAX SAVER SCHEME",
|
213 |
+
"IB Tax Saver Scheme",
|
214 |
+
"IB Tradewell",
|
215 |
+
"IB Vehicle Loan",
|
216 |
+
"IB Vidyarthi Suraksha (With PNB-Metlife)",
|
217 |
+
"IB i-Freedom Current Account",
|
218 |
+
"IB \u2013 COMFORT - DOMESTIC AND NRE (Minimum Balance & Charges)",
|
219 |
+
"IB \u2013 Sammaan",
|
220 |
+
"IB \u2013COMFORT- DOMESTIC AND NRE",
|
221 |
+
"IBEX GOLD CARD SCHEME (GCS) FOR EXPORTERS",
|
222 |
+
"IMAGE",
|
223 |
+
"IMAGE ",
|
224 |
+
"IMAGE Computer Centre",
|
225 |
+
"IMAGE Contact Us",
|
226 |
+
"IMAGE Email Id\u00e2\u20ac\u2122s",
|
227 |
+
"IMAGE Email Id\u2019s",
|
228 |
+
"IMAGE Infrastructure",
|
229 |
+
"IMAGE Principal\u2019s Message",
|
230 |
+
"IMAGE Training Philosophy",
|
231 |
+
"IMPORTANT TERMS AND CONDITIONS CA",
|
232 |
+
"IMPORTANT TERMS AND CONDITIONS SB",
|
233 |
+
"IMPORTANT TERMS AND CONDITIONS \u2013 CA",
|
234 |
+
"IMPORTANT TERMS AND CONDITIONS \u2013 CA (Account Transfer)",
|
235 |
+
"IMPORTANT TERMS AND CONDITIONS \u2013 CA (Current Account)",
|
236 |
+
"IMPORTANT TERMS AND CONDITIONS \u2013 SB",
|
237 |
+
"IND COURT",
|
238 |
+
"IND Corp SB Elite\u201d Payroll package scheme for Salaried Class with bundled Group Personal Accidental Insurance (PAI)",
|
239 |
+
"IND Corp SB \u2013 Elite (Payroll Package Scheme)",
|
240 |
+
"IND EQUIPMENT & WHEELS (CE/CV) scheme",
|
241 |
+
"IND GST ADVANTAGE",
|
242 |
+
"IND GURUDEV",
|
243 |
+
"IND GURUDEV (Auto Sweep & SMS Alert)",
|
244 |
+
"IND HEALTH CARE",
|
245 |
+
"IND KISAN SAUR SHAKTHI (PM KUSUM) Additional Component (Component C- Feeder level Solarisation)",
|
246 |
+
"IND KISAN SAUR SHAKTHI (PM KUSUM) Additional Component (Component C- Feeder level Solarisation)\n",
|
247 |
+
"IND Krishi Vaahan",
|
248 |
+
"IND MSME SAKHI",
|
249 |
+
"IND MSME VEHICLE",
|
250 |
+
"IND Micro Food Processing Enterprises- (PMFME)",
|
251 |
+
"IND Millionaire Recurring Deposit Account NRE",
|
252 |
+
"IND Millionaire Recurring Deposit Account \u2013 NRE",
|
253 |
+
"IND NAVYA",
|
254 |
+
"IND Non-Callable Deposit",
|
255 |
+
"IND PASHUDHAN Mitra- Animal Husbandry Infrastructure Development Fund (AHIDF)",
|
256 |
+
"IND PM Vishwakarma",
|
257 |
+
"IND Professional Special",
|
258 |
+
"IND Rupee Gain",
|
259 |
+
"IND SAMPOORNA SALARY PACKAGE",
|
260 |
+
"IND SME Secure",
|
261 |
+
"IND SUPER 400 DAYS",
|
262 |
+
"IND SUPREME 300 DAYS",
|
263 |
+
"IND \u2013 PM Vishwakarma",
|
264 |
+
"IND- KRISHI INFRA FUND (AGRICULTURE INFRA FUND)",
|
265 |
+
"IND-SME E-VAAHAN",
|
266 |
+
"IND-SME EASE",
|
267 |
+
"IND-SURYA SHAKTI",
|
268 |
+
"INDIAN BANK MUTUAL FUND",
|
269 |
+
"INDIAN BANK TRUST FOR RURAL DEVELOPMENT (IBTRD)\n",
|
270 |
+
"Image",
|
271 |
+
"Important Communication regarding Amalgamation (Internet Banking / Mobile Banking)",
|
272 |
+
"Important Contacts",
|
273 |
+
"Important Notices to Shareholders / Bondholders",
|
274 |
+
"Ind Advantage (Reward Program)",
|
275 |
+
"Ind Jet Remit (RTGS)",
|
276 |
+
"Ind Lakhpati Didi Scheme",
|
277 |
+
"Ind Mortgage",
|
278 |
+
"Ind Netbanking",
|
279 |
+
"Ind QwikCollect",
|
280 |
+
"IndOASIS Checksum",
|
281 |
+
"IndOASIS Checksum\n",
|
282 |
+
"IndOASIS Terms and Conditions",
|
283 |
+
"IndSMART",
|
284 |
+
"IndSMART Mobile Banking App Checksum",
|
285 |
+
"IndSMART: Indian Bank\u00e2\u20ac\u2122s Omni channel Mobile App",
|
286 |
+
"IndSMART: Indian Bank\u2019s Omni channel Mobile App",
|
287 |
+
"IndSmart",
|
288 |
+
"Indbank Merchant Banking - Online share trading",
|
289 |
+
"Indian Bank Annual Reports",
|
290 |
+
"Indian Bank Debit Card Shopping Perks",
|
291 |
+
"Indian Bank Financial Results",
|
292 |
+
"Indian Bank One Co-Branded Credit Card",
|
293 |
+
"Indian Bank Prepaid Card App Terms and Conditions",
|
294 |
+
"Indian Bank, IFSC Banking Unit, GIFT City",
|
295 |
+
"Indoasis",
|
296 |
+
"Interest Rate for Agri Products",
|
297 |
+
"Interest Rate for agri Products",
|
298 |
+
"Interest Rates for Small Savings Schemes",
|
299 |
+
"Interest Rates on Personal Segment Loan Products Fixed",
|
300 |
+
"Interest Rates on Personal Segment Loan Products: Floating",
|
301 |
+
"Interest Rates on SB / NRO / NRE Accounts",
|
302 |
+
"Internet Banking",
|
303 |
+
"Internet banking",
|
304 |
+
"Internet/Mobile/Tele Banking",
|
305 |
+
"Investor / Analyst Presentation",
|
306 |
+
"Investor Grievances",
|
307 |
+
"Investor Guide / FAQ",
|
308 |
+
"Investor Relations",
|
309 |
+
"Investors",
|
310 |
+
"Investors Services Center",
|
311 |
+
"Jaffna Branch",
|
312 |
+
"Jewel Loan",
|
313 |
+
"Jewel Loan appointment",
|
314 |
+
"Jewel Loan: Unlock the Value of Your Gold for Financial Flexibility",
|
315 |
+
"Joint Liability Group (JLG)",
|
316 |
+
"KCC Gold Plus",
|
317 |
+
"KCC Marine Gold Scheme",
|
318 |
+
"Kisan Credit Card (KCC)",
|
319 |
+
"Kisan Credit Card (KCC) Animal Husbandry and Fisheries",
|
320 |
+
"Kisan Credit Card (KCC) \u2013 Animal Husbandry and Fisheries",
|
321 |
+
"LOAN AGAINST LEASE RENTALS",
|
322 |
+
"LOAN AGAINST LEASE RENTALS(IB RENTAL)",
|
323 |
+
"Lab Grown Diamond Scheme",
|
324 |
+
"Lending Rates",
|
325 |
+
"Lending rates",
|
326 |
+
"Lending rates for Export Credit",
|
327 |
+
"Lending rates for RMD",
|
328 |
+
"Lending rates for Retail Assets",
|
329 |
+
"Life Certificate",
|
330 |
+
"Life Insurance",
|
331 |
+
"Life Insurance Corporation Of India",
|
332 |
+
"Loan / OD against NSC / KVP / Relief bonds of RBI / LIC policies",
|
333 |
+
"Loan Application Status",
|
334 |
+
"Loan for Purchase of \u00e2\u20ac\u0153Van / Minibus / Bus / Ambulance\u00e2\u20ac\uf19d to Institutions / Firms / PSU / Company / Hospitals",
|
335 |
+
"Loan for Purchase of \u201cVan / Minibus / Bus / Ambulance\u201d to Institutions / Firms / PSU / Company / Hospitals",
|
336 |
+
"Loan/OD/Credit Card against Deposit",
|
337 |
+
"Login Procedure for Internet Banking",
|
338 |
+
"Login procedure for Mobile Banking",
|
339 |
+
"Loyalty Program Delights: Unlocking Special Rewards for Your Loyalty",
|
340 |
+
"MACT SB",
|
341 |
+
"MCA Payment",
|
342 |
+
"MD & CEO Speeches / Media Interaction",
|
343 |
+
"MD & CEO's Profile",
|
344 |
+
"MONEY MULTIPLIER DEPOSITS",
|
345 |
+
"MSME",
|
346 |
+
"MSME AUTO RENEWAL",
|
347 |
+
"MSME AUTO \u2013 RENEWAL",
|
348 |
+
"MSME DIGI Jewel Loan and Jewel Loan (Re-Pledge)",
|
349 |
+
"MSME LAP",
|
350 |
+
"MSME Loans_Download_Digital Personal Data Protection Policy-1-26102024",
|
351 |
+
"MSME Loans_GST Advantage",
|
352 |
+
"MSME Loans_MSME Loan Renewal",
|
353 |
+
"MSME Loans_Pre Approved Bussiness Loan",
|
354 |
+
"MSME Loans_Shishu Mudra Loan",
|
355 |
+
"Managing Director & CEO\u00e2\u20ac\u2122s Profile",
|
356 |
+
"Managing Director & CEO\u2019s Profile",
|
357 |
+
"Media Speaks",
|
358 |
+
"Merchant UPI QR Code",
|
359 |
+
"Mini Statement",
|
360 |
+
"Mobile Banking",
|
361 |
+
"Mobile Banking/Internet Banking",
|
362 |
+
"Money multiplier Deposits",
|
363 |
+
"Motor Accident Claim Tribunal Deposit(MACAD) Scheme",
|
364 |
+
"Mutual Funds, IPO, Demat & Trading",
|
365 |
+
"N R I / Foreign Exchange",
|
366 |
+
"NABARD",
|
367 |
+
"NEFT",
|
368 |
+
"NETC FASTag",
|
369 |
+
"NPS VATSALYA",
|
370 |
+
"NRE FD/ MMD/ RD ACCOUNTS",
|
371 |
+
"NRE SB ACCOUNTS",
|
372 |
+
"NRE and RFC SB interest Rates",
|
373 |
+
"NRI A/cs",
|
374 |
+
"NRI Home Loan",
|
375 |
+
"NRI INFO BEAM Monthly Newsletter",
|
376 |
+
"NRI Plot Loan",
|
377 |
+
"NRI and Forex",
|
378 |
+
"National Common Mobility Card (NCMC)",
|
379 |
+
"New Pension Scheme as an avenue for Tax Savings",
|
380 |
+
"New SB Product for Salaried Customers IND SALARY SURAKSHA",
|
381 |
+
"New SB Product for Salaried Customers IND SALARY SURAKSHA\n",
|
382 |
+
"Nodal Officers - Cusomer service",
|
383 |
+
"Nodal Officers RBI Integrated Ombudsman Scheme, 2021",
|
384 |
+
"Nodal Officers- Customer service",
|
385 |
+
"Nodal Officers_Ombudsman Scheme,2021",
|
386 |
+
"Nodal Officers_Ombudsman Scheme,2022",
|
387 |
+
"Nomination: A Must Have in Your Accounts",
|
388 |
+
"Non-Life Insurance",
|
389 |
+
"Non-Resident Ordinary Account",
|
390 |
+
"Notifications",
|
391 |
+
"OD against Gold Jewels",
|
392 |
+
"ONLINE SHISHU MUDRA LOAN",
|
393 |
+
"OVERDRAFT FACILITY IN SB SALARY A/C\u00e2\u20ac\u0153IB INSTA CASH\u00e2\u20ac\uf19d",
|
394 |
+
"OVERDRAFT FACILITY IN SB SALARY A/C\u201cIB INSTA CASH\u201d",
|
395 |
+
"One Time Settlement for NPA Borrowers (eOTS)",
|
396 |
+
"Online Collection Products",
|
397 |
+
"Online Form 16 A Download",
|
398 |
+
"Online Interest Certificate",
|
399 |
+
"Online Loans",
|
400 |
+
"Online Locker Facility",
|
401 |
+
"Online Re-KYC Portal",
|
402 |
+
"Online Services",
|
403 |
+
"Open Online Account with Video-Based Customer Identification Process (V- CIP)",
|
404 |
+
"PM Surya Ghar: Muft Bijli Yojna",
|
405 |
+
"PMMY-MUDRA-Tarun Plus",
|
406 |
+
"PMSurya Ghar: Muft Bijli Yojana Roof Top Solar Loan Scheme",
|
407 |
+
"PSB LOANS IN 59 MINUTES",
|
408 |
+
"Personal Loan",
|
409 |
+
"Personal loan",
|
410 |
+
"Point of Sale (PoS)",
|
411 |
+
"Policies and Regulations",
|
412 |
+
"Policy On Green Deposit",
|
413 |
+
"Policy for Social Media ",
|
414 |
+
"Policy on Appointment of Statutory Branch Auditors 2023-24 and Onwards (HI)",
|
415 |
+
"Policy on Co-Lending by Bank and NBFCs/HFCs\nto priority sectors",
|
416 |
+
"Policy on Determination and disclosure of material events / information",
|
417 |
+
"Policy on Determining Material Subsidiary",
|
418 |
+
"Policy on Related Party Transactions",
|
419 |
+
"Policy on appointment of SABs -year 2023 -24 (Domestic & Overseas)",
|
420 |
+
"Positive Pay Syatem(PPS)",
|
421 |
+
"Positive Pay System",
|
422 |
+
"Positive Pay System (PPS)",
|
423 |
+
"Pre Approved Business Loan",
|
424 |
+
"Premium Current Account",
|
425 |
+
"Premium Services",
|
426 |
+
"Press Releases",
|
427 |
+
"Privacy Policy Corporate Merchant App",
|
428 |
+
"Privacy Policy Digital Currency",
|
429 |
+
"Privacy Policy IB Merchant App",
|
430 |
+
"Privacy Policy IndOASIS",
|
431 |
+
"Privacy Policy Mobile Banking (IndSmart)",
|
432 |
+
"Privacy Policy for Bhim Aadhaar Pay",
|
433 |
+
"Privacy Policy for SoftPos",
|
434 |
+
"Procedure on locker / safe deposit articles",
|
435 |
+
"Process for claiming Unclaimed Deposit transferred to Depositor Education and Awareness (DEA) Fund",
|
436 |
+
"Processing Charges in Agri Term Loans, JL(Ag), SHG Loan & JP(NP)",
|
437 |
+
"Processing Charges of SME Products",
|
438 |
+
"Profile Updation",
|
439 |
+
"Protean-CRA",
|
440 |
+
"Puduvai Bharathiar Grama Bank",
|
441 |
+
"QIP",
|
442 |
+
"QIP WEBSITE DISCLAIMER",
|
443 |
+
"Queries / Feedback",
|
444 |
+
"Quick Contact",
|
445 |
+
"Quick Contacts",
|
446 |
+
"RBI Monetory Museum Bank Notes and Security Features",
|
447 |
+
"RECURRING DEPOSIT",
|
448 |
+
"REPO Based Lending Rate for MSME",
|
449 |
+
"RFC TERM DEPOSIT Rates",
|
450 |
+
"Rajbhasha",
|
451 |
+
"Re-KYC (based on declaration)",
|
452 |
+
"Re-KYC: Periodic Update of KYC Details",
|
453 |
+
"Recovery Agents Empaneled / Engaged by bank(Eng)",
|
454 |
+
"Recurring Deposit",
|
455 |
+
"Regulatory Disclosures Section",
|
456 |
+
"Remittance To India",
|
457 |
+
"Request a Call Back",
|
458 |
+
"Reserve Bank Of India",
|
459 |
+
"Resident Foreign Currency account for Returning Indians",
|
460 |
+
"Retail Loans_Credit Card",
|
461 |
+
"Retail Loans_Home Loan",
|
462 |
+
"Retail Loans_OD/Term Loan/Credit Card Against Deposit",
|
463 |
+
"Retail Loans_Overdraft against Insurance ",
|
464 |
+
"Retail Loans_Vehicle Loan",
|
465 |
+
"Reverse Mortgage",
|
466 |
+
"RuPay Key Chain",
|
467 |
+
"SB FOR CENTRAL / STATE GOVERNMENT / CONSULAR OFFICES & IND PFMS",
|
468 |
+
"SB Platinum Savings Bank Platinum Account with Sweep facility",
|
469 |
+
"SB Platinum \u2013 Savings Bank Platinum Account",
|
470 |
+
"SB Platinum \u2013 Savings Bank Platinum Account with Sweep facility",
|
471 |
+
"SB for IND PFMS & SB for Central/State Government/Consular Offices",
|
472 |
+
"SB for students under govt scholarship & SB for DBT",
|
473 |
+
"SELF HELP GROUP (SHG) SHAKTI",
|
474 |
+
"SELF HELP GROUP (SHG) \u2013 SHAKTI",
|
475 |
+
"SHG Bank Linkage Programme Direct Linkage to SHGs",
|
476 |
+
"SHG Bank Linkage Programme \u2013 Direct Linkage to SHGs",
|
477 |
+
"SHG GRIHALAKSHMI (Housing Loan to SHG Members)",
|
478 |
+
"SHG GRIHALAKSHMI (Housing loan to SHG Members)",
|
479 |
+
"SHORT TERM DEPOSITS",
|
480 |
+
"SMS Banking/ Missed Call Service",
|
481 |
+
"SOVA Android Trojan ALERT!!",
|
482 |
+
"Salary Loan IB Clean Loan to Salaried Class",
|
483 |
+
"Salary Loan \u2013 IB Clean Loan to Salaried Class",
|
484 |
+
"Saptagiri Grameena Bank",
|
485 |
+
"Savings Bank",
|
486 |
+
"Savings Bank Account",
|
487 |
+
"Savings Bank Account for Pensioners",
|
488 |
+
"Savings Bank Accounts \u2013 Terms & Conditions",
|
489 |
+
"Say No to Queues and Yes to Fastag!!!!!",
|
490 |
+
"Scheme for financing MSMEs for setting up Biomass Pellets manufacturing units",
|
491 |
+
"Scheme on financing Manufacturers / Suppliers / Vendors of Solar panels and other ancillary products",
|
492 |
+
"Security",
|
493 |
+
"Security Alert (Hindi)",
|
494 |
+
"Security Alert (pdf)",
|
495 |
+
"Service Charges",
|
496 |
+
"Service Charges / Forex Rates",
|
497 |
+
"Service Charges on ATM Services",
|
498 |
+
"Services",
|
499 |
+
"Services rendered free of charge",
|
500 |
+
"Shareholding Pattern",
|
501 |
+
"Short Term Deposits",
|
502 |
+
"Small Farmers' Agri-Business Consortium",
|
503 |
+
"Special Non-Resident Rupee Account (SNRR)",
|
504 |
+
"Specialist Officers Exam Result (SO)",
|
505 |
+
"Stamp Charges Details for Executing for Locker agreement",
|
506 |
+
"Statement",
|
507 |
+
"Statement Through Email",
|
508 |
+
"Statutory Central Auditors",
|
509 |
+
"Stay Safe: Watch Out for Suspicious Files, APKs, and Links",
|
510 |
+
"Subsidiaries and Joint Ventures",
|
511 |
+
"Sukanya Samriddhi Account",
|
512 |
+
"Sukanya Samriddhi Account Scheme",
|
513 |
+
"Supply Chain Finance",
|
514 |
+
"TERM LOAN",
|
515 |
+
"TERMS AND CONDITIONS - TERM DEPOSIT ACCOUNT",
|
516 |
+
"TERMS AND CONDITIONS-TERM DEPOSIT ACCOUNT",
|
517 |
+
"Tab Banking",
|
518 |
+
"Tamil Nadu Grama Bank",
|
519 |
+
"Tap, Pay and Go: RuPay NCMC Card",
|
520 |
+
"Tarun Plus Scheme",
|
521 |
+
"Tenders / Auction",
|
522 |
+
"Term Deposit",
|
523 |
+
"Term Loan",
|
524 |
+
"Termination Clause Mobile Banking (IndSmart)",
|
525 |
+
"Terms and Conditions Indian Bank Digital Rupee",
|
526 |
+
"Terms and Conditions \u2013 Indian Bank Digital Rupee",
|
527 |
+
"The Convenience Revolution: Mobile Banking Explained",
|
528 |
+
"UPI through USSD(Eng)",
|
529 |
+
"UPI through USSD(Hin)",
|
530 |
+
"United India Insurance Company",
|
531 |
+
"Units of IMAGE",
|
532 |
+
"Unleash your Entrepreneurial Skills with Indian Bank\u00e2\u20ac\u2122s MSME Loans",
|
533 |
+
"Unleash your Entrepreneurial Skills with Indian Bank\u2019s MSME Loans",
|
534 |
+
"V-CIP",
|
535 |
+
"VARIABLE RECURRING DEPOSIT",
|
536 |
+
"Variable Recurring Deposit",
|
537 |
+
"Vehicle loan",
|
538 |
+
"Vision and Mission",
|
539 |
+
"WORKING CAPITAL",
|
540 |
+
"Wealth Management Services",
|
541 |
+
"Weaver MUDRA",
|
542 |
+
"Welcome aboard!",
|
543 |
+
"Welcome to a New Year of Good Returns with Ind-Swagat",
|
544 |
+
"Welfare of Minorities",
|
545 |
+
"What and How of Phishing",
|
546 |
+
"What is a Credit Score and How it Shapes Financial Health",
|
547 |
+
"WhatsApp Banking",
|
548 |
+
"What\u00e2\u20ac\u2122s New?",
|
549 |
+
"What\u2019s New?",
|
550 |
+
"Whistle Blower Policy",
|
551 |
+
"Working Capital",
|
552 |
+
"e Allahabad Bank Journey",
|
553 |
+
"e Payment of Direct Taxes",
|
554 |
+
"e Payment of Indirect Taxes",
|
555 |
+
"e-Allahabad Bank Journey",
|
556 |
+
"e-OD Against Deposit",
|
557 |
+
"e-OD Against Deposit\n",
|
558 |
+
"\u00e2\u20ac\u0153IND Corp SB Elite\u00e2\u20ac\uf19d Payroll package scheme for Salaried Class with bundled Group Personal Accidental Insurance (PAI)",
|
559 |
+
"\u00e2\u20ac\u0153New SB Product for Pensioners\u00e2\u20ac\uf19d IND PENSION PRIME",
|
560 |
+
"\u201cIND Corp SB Elite\u201d Payroll package scheme for Salaried Class with bundled Group Personal Accidental Insurance (PAI)",
|
561 |
+
"\u201cIND Corp SB \u2013 Elite\u201d Payroll package scheme for Salaried Class with bundled Group Personal Accidental Insurance (PAI)\n",
|
562 |
+
"\u201cNew SB Product for Pensioners\u201d IND PENSION PRIME"
|
563 |
+
],
|
564 |
+
"normalize_embeddings": false
|
565 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:097ff9303be92cc5d18137d9bba689fedcce0441ee10219a227b24fcf4e050ba
|
3 |
+
size 546938168
|
model_head.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c87f7e203351c0541aa62d003d82a649ca0eaf97af714de84f8da4947e366cd7
|
3 |
+
size 3743879
|
modules.json
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
{
|
3 |
+
"idx": 0,
|
4 |
+
"name": "0",
|
5 |
+
"path": "",
|
6 |
+
"type": "sentence_transformers.models.Transformer"
|
7 |
+
},
|
8 |
+
{
|
9 |
+
"idx": 1,
|
10 |
+
"name": "1",
|
11 |
+
"path": "1_Pooling",
|
12 |
+
"type": "sentence_transformers.models.Pooling"
|
13 |
+
},
|
14 |
+
{
|
15 |
+
"idx": 2,
|
16 |
+
"name": "2",
|
17 |
+
"path": "2_Normalize",
|
18 |
+
"type": "sentence_transformers.models.Normalize"
|
19 |
+
}
|
20 |
+
]
|
sentence_bert_config.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"max_seq_length": 8192,
|
3 |
+
"do_lower_case": false
|
4 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cls_token": {
|
3 |
+
"content": "[CLS]",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"mask_token": {
|
10 |
+
"content": "[MASK]",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": {
|
17 |
+
"content": "[PAD]",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"sep_token": {
|
24 |
+
"content": "[SEP]",
|
25 |
+
"lstrip": false,
|
26 |
+
"normalized": false,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
},
|
30 |
+
"unk_token": {
|
31 |
+
"content": "[UNK]",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": false,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false
|
36 |
+
}
|
37 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "[PAD]",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"100": {
|
12 |
+
"content": "[UNK]",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"101": {
|
20 |
+
"content": "[CLS]",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"102": {
|
28 |
+
"content": "[SEP]",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"103": {
|
36 |
+
"content": "[MASK]",
|
37 |
+
"lstrip": false,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"clean_up_tokenization_spaces": true,
|
45 |
+
"cls_token": "[CLS]",
|
46 |
+
"do_lower_case": true,
|
47 |
+
"extra_special_tokens": {},
|
48 |
+
"mask_token": "[MASK]",
|
49 |
+
"model_max_length": 8192,
|
50 |
+
"pad_token": "[PAD]",
|
51 |
+
"sep_token": "[SEP]",
|
52 |
+
"strip_accents": null,
|
53 |
+
"tokenize_chinese_chars": true,
|
54 |
+
"tokenizer_class": "BertTokenizer",
|
55 |
+
"unk_token": "[UNK]"
|
56 |
+
}
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|