Upload folder using huggingface_hub
Browse files- .gitattributes +1 -33
- 1_Pooling/config.json +10 -0
- README.md +1101 -3
- config.json +24 -0
- config_sentence_transformers.json +10 -0
- model.safetensors +3 -0
- modules.json +20 -0
- sentence_bert_config.json +4 -0
- special_tokens_map.json +51 -0
- tokenizer.json +0 -0
- tokenizer_config.json +73 -0
- vocab.txt +0 -0
.gitattributes
CHANGED
@@ -1,35 +1,3 @@
|
|
1 |
-
*.7z filter=lfs diff=lfs merge=lfs -text
|
2 |
-
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
-
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5 |
-
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
6 |
-
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
-
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
-
*.h5 filter=lfs diff=lfs merge=lfs -text
|
9 |
-
*.joblib filter=lfs diff=lfs merge=lfs -text
|
10 |
-
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
11 |
-
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
12 |
-
*.model filter=lfs diff=lfs merge=lfs -text
|
13 |
-
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
14 |
-
*.npy filter=lfs diff=lfs merge=lfs -text
|
15 |
-
*.npz filter=lfs diff=lfs merge=lfs -text
|
16 |
-
*.onnx filter=lfs diff=lfs merge=lfs -text
|
17 |
-
*.ot filter=lfs diff=lfs merge=lfs -text
|
18 |
-
*.parquet filter=lfs diff=lfs merge=lfs -text
|
19 |
-
*.pb filter=lfs diff=lfs merge=lfs -text
|
20 |
-
*.pickle filter=lfs diff=lfs merge=lfs -text
|
21 |
-
*.pkl filter=lfs diff=lfs merge=lfs -text
|
22 |
*.pt filter=lfs diff=lfs merge=lfs -text
|
23 |
-
|
24 |
-
*.rar filter=lfs diff=lfs merge=lfs -text
|
25 |
-
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
26 |
-
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
27 |
-
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
28 |
-
*.tar filter=lfs diff=lfs merge=lfs -text
|
29 |
-
*.tflite filter=lfs diff=lfs merge=lfs -text
|
30 |
-
*.tgz filter=lfs diff=lfs merge=lfs -text
|
31 |
-
*.wasm filter=lfs diff=lfs merge=lfs -text
|
32 |
-
*.xz filter=lfs diff=lfs merge=lfs -text
|
33 |
-
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
-
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
-
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
1 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
*.pt filter=lfs diff=lfs merge=lfs -text
|
3 |
+
model.safetensors filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
CHANGED
@@ -1,3 +1,1101 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- sentence-transformers
|
4 |
+
- sentence-similarity
|
5 |
+
- feature-extraction
|
6 |
+
- generated_from_trainer
|
7 |
+
- dataset_size:864
|
8 |
+
- loss:CosineSimilarityLoss
|
9 |
+
base_model: sentence-transformers/all-mpnet-base-v2
|
10 |
+
widget:
|
11 |
+
- source_sentence: "KEY COMPETENCIES â\x9C¶Multi - Operations Managementâ\x9C¶People\
|
12 |
+
\ Management â\x9C¶Customer Services - Emails â\x9C¶ MIS â\x9C¶Vendor & Client\
|
13 |
+
\ Services Managementâ\x9C¶Cross Functional Coordinationâ\x9C¶Banking & Financial\
|
14 |
+
\ Servicesâ\x9C¶ Transaction Monitoring * ATM Operations â\x9C¶ & Prepaid Card\
|
15 |
+
\ Operations (Pre-Issuance & Post-Issuance) â\x9C¶ POS Operations * JOB PROFILE\
|
16 |
+
\ & SKILLS: â\x80¢ An effective communicator with excellent relationship building\
|
17 |
+
\ & interpersonal skills. Strong analytical, problem solving & organizational\
|
18 |
+
\ abilities. â\x80¢ Extensive experience in managing operations with demonstrated\
|
19 |
+
\ leadership qualities & organisational skills during the tenure. â\x80¢ Managing\
|
20 |
+
\ customer centric operations & ensuring customer satisfaction by achieving service\
|
21 |
+
\ quality norms. â\x80¢ Analyzing of all operational problems, customer complaints\
|
22 |
+
\ and take preventive and corrective actions to resolve the same. â\x80¢ Receive\
|
23 |
+
\ and respond to Key customer inquiries in an effective manner and provide relevant\
|
24 |
+
\ and timely information. â\x80¢ Deft in steering banking back-end operations,\
|
25 |
+
\ analyzing risks and managing delinquencies with dexterity across applying techniques\
|
26 |
+
\ for maximizing recoveries and minimizing credit losses. â\x80¢ Analyzed & identified\
|
27 |
+
\ training needs of the team members and developing, organizing and conducting\
|
28 |
+
\ training programs and manage bottom quartile team to improve their performance.\
|
29 |
+
\ â\x80¢ Preparing and maintaining daily MIS reports to evaluate the performance\
|
30 |
+
\ and efficiency of the process relate to various verticals. â\x80¢ Measuring\
|
31 |
+
\ the performance of the processes in terms of efficiency and effectiveness matrix\
|
32 |
+
\ and ensuring adherence to SLA. â\x80¢ Major Activities Define processes for\
|
33 |
+
\ Field Services were monitored and necessary checks were executed and controlled.\
|
34 |
+
\ Also measured Vendor SLA by analyzing the TAT of vendors & the Client SLA provided\
|
35 |
+
\ to us. â\x80¢ As per company procedures, handling & ensuring vendor's payment\
|
36 |
+
\ issues to be sorted out &payments are processed on quarterly basis. â\x80¢ Appropriately\
|
37 |
+
\ plan and execute each skill of operations in accordance with the department's\
|
38 |
+
\ policies and procedures. â\x80¢ Manage relationships with business team, software\
|
39 |
+
\ development team and other services to achieve project objectives. Different\
|
40 |
+
\ software Worked till now: - a. CTL prime - Axis Bank Credit Cards b. Insight\
|
41 |
+
\ - For POS Machine technical operations for Amex (MID & TID Generation- ATOS\
|
42 |
+
\ (Venture Infotek) c. Ticket Management System - TATA Communications Private\
|
43 |
+
\ Services Ltd (ATM - NOC Operations) d. Branch Portal (Yalamanchili Software\
|
44 |
+
\ Exports Ltd) - Prepaid Cards (SBI Bank & Zaggle Prepaid Oceans Services Ltd)\
|
45 |
+
\ Zaggle Prepaid Ocean Services Pvt Ltd Oct, 2017 to Till Date Designation: Manager\
|
46 |
+
\ - Operations (Payment Industry - Prepaid Cards - INR) Education Details \r\n\
|
47 |
+
\ Commerce Mumbai, Maharashtra Mumbai University\r\nOperations Manager \r\n\r\
|
48 |
+
\nService Manager - Operations (Payment Industry - Prepaid Cards - INR & FTC)\r\
|
49 |
+
\nSkill Details \r\nOPERATIONS- Exprience - 73 months\r\nSATISFACTION- Exprience\
|
50 |
+
\ - 48 months\r\nTRAINING- Exprience - 24 months\r\nNOC- Exprience - 23 months\r\
|
51 |
+
\nPOINT OF SALE- Exprience - 20 monthsCompany Details \r\ncompany - Zaggle Prepaid\
|
52 |
+
\ Ocean Services Pvt Ltd\r\ndescription - Card Operations\r\ncompany - Yalamanchili\
|
53 |
+
\ Software Exports Ltd\r\ndescription - 24*7 Operations Pvt Ltd) Dec 2015 to Feb\
|
54 |
+
\ 2017\r\n\r\nDesignation: Service Manager - Operations (Payment Industry - Prepaid\
|
55 |
+
\ Cards - INR & FTC)\r\n\r\nKey Contributions: â\x80¢ A result-oriented business\
|
56 |
+
\ professional in planning, executing& managing processes, improving efficiency\
|
57 |
+
\ of operations, team building and detailing process information to determine\
|
58 |
+
\ effective result into operations.\r\nâ\x80¢ Ensuring PINs generation (SLA) is\
|
59 |
+
\ maintained and chargeback cases are raised in perfect timeframe.\r\nâ\x80¢ Managing\
|
60 |
+
\ email customer services properly and ensuring the emails are replied properly.\
|
61 |
+
\ Also, ensuring transaction monitoring is properly managed 24/7.\r\nâ\x80¢ Assisting\
|
62 |
+
\ Bankers (SBI & Associated Banks) for their BCP plans by getting executed in\
|
63 |
+
\ the system with the help of DR-PR plans & vice versa or any other business requirements.\r\
|
64 |
+
\nâ\x80¢ Expertise in maintaining highest level of quality in operations; ensuring\
|
65 |
+
\ adherence to all the quality parameters and procedures as per the stringent\
|
66 |
+
\ norms.\r\nâ\x80¢ Lead, manage and supervise the execution of external audit\
|
67 |
+
\ engagements and responsible for presenting the findings & developing a quality\
|
68 |
+
\ reports to the senior Management and Clients.\r\nâ\x80¢ Coach/mentor (20) team\
|
69 |
+
\ members to perform at a higher level by giving opportunities, providing timely\
|
70 |
+
\ continuous feedback and working with staff to improve their communication, time\
|
71 |
+
\ management, decision making, organization, and analytical skills.\r\nâ\x80¢\
|
72 |
+
\ Providing the solutions and services to the client in their own premises with\
|
73 |
+
\ aforesaid count of team members.\r\nâ\x80¢ Also ensuring end to end process\
|
74 |
+
\ of PR & DR as per client requirements (PR- DR & DR -PR) by interacting with\
|
75 |
+
\ internal & external stakeholders.\r\nâ\x80¢ Determining process gaps and designing\
|
76 |
+
\ & conducting training programs to enhance operational efficiency and retain\
|
77 |
+
\ talent by providing optimum opportunities for personal and professional growth.\r\
|
78 |
+
\ncompany - Credit Cards\r\ndescription - Ensured highest standard of customer\
|
79 |
+
\ satisfaction and quality service; developing new policies and procedures to\
|
80 |
+
\ improve based on customer feedback and resolving customer queries via correspondence,\
|
81 |
+
\ inbound calls & email channels with the strength of (12-16) Team members.\r\n\
|
82 |
+
company - AGS Transact Technologies Limited\r\ndescription - Key Contributions:\
|
83 |
+
\ Lead - SPOC to Banks\r\ncompany - TATA Communications Payment Solutions Ltd\r\
|
84 |
+
\ndescription - To make ATMs operational within TAT by analyzing the issue is\
|
85 |
+
\ technical or non-technical and also by interacting with internal & external\
|
86 |
+
\ stakeholders.\r\ncompany - Vertex Customer Solutions India Private Ltd\r\ndescription\
|
87 |
+
\ - Key Contributions: â\x80¢ Build positive working relationship with all team\
|
88 |
+
\ members and clients by keeping Management informed of KYC document collection\
|
89 |
+
\ & con-current audit progress, responding timely to Management inquiries, understanding\
|
90 |
+
\ the business and conducting self professionally.\r\ncompany - Financial Inclusion\
|
91 |
+
\ Network & Operations Limited\r\ndescription - Key Contributions: POS-Operations\
|
92 |
+
\ â\x80¢ Cascading the adherence of process is strictly followed by team members\
|
93 |
+
\ & training them to reduce the downtime.\r\nâ\x80¢ Managing Stock of EDC Terminals\
|
94 |
+
\ â\x80¢ Managing Deployments of terminals through Multiple teams â\x80¢ Would\
|
95 |
+
\ have worked with multiple terminal make & model â\x80¢ Managing Inward, Outward\
|
96 |
+
\ & QC of applications installed in the POS machines.\r\ncompany - Venture Infotek\
|
97 |
+
\ Private Ltd\r\ndescription - Key Contributions: POS-Operations\r\ncompany -\
|
98 |
+
\ Axis Bank Ltd - Customer Services\r\ndescription - Aug 2006 to Oct 2009 (Ma-Foi&I-\
|
99 |
+
\ smart)\r\n\r\nDesignation: Team Leader/Executive - Emails, Phone Banking & Correspondence\
|
100 |
+
\ Unit (Snail Mails)"
|
101 |
+
sentences:
|
102 |
+
- '⢠Responsible for & maintaining a high standard of customer service by providing
|
103 |
+
an excellent service experience and meeting the business objectives.
|
104 |
+
|
105 |
+
⢠Provide a fast, accurate and efficient service to the customer by responding
|
106 |
+
to customer enquiries promptly and accurately.
|
107 |
+
|
108 |
+
⢠Provide friendly and professional customer service to customers and other staff.
|
109 |
+
|
110 |
+
⢠Ensure that a high level of accuracy and customer service is always maintained.
|
111 |
+
|
112 |
+
⢠Ensure that customer service and customer requirements are met, & ensure that
|
113 |
+
customer''s expectations are met and exceeded.
|
114 |
+
|
115 |
+
⢠Ensure that customer service and customer requirements are met, & ensure that
|
116 |
+
customer''s expectations are met and exceeded.
|
117 |
+
|
118 |
+
⢠Maintain customer service systems and processes to ensure that all customer
|
119 |
+
queries and complaints are resolved on time.
|
120 |
+
|
121 |
+
⢠Ensure that customer information is up to date and that customer information
|
122 |
+
is maintained in the relevant format.
|
123 |
+
|
124 |
+
⢠Ensure that all customer procedures are followed and that customer data is
|
125 |
+
confidential.
|
126 |
+
|
127 |
+
⢠Ensure customer'''
|
128 |
+
- 'We are looking for an Electrical Engineer with 1 year of experience to join our
|
129 |
+
Solar Energy division in Bhopal, Madhya Pradesh. The division is responsible for
|
130 |
+
the design, installation, operation and maintenance of Solar Energy plants. The
|
131 |
+
candidate should have experience in the following areas:
|
132 |
+
|
133 |
+
|
134 |
+
1. Solar Power Plant Installation
|
135 |
+
|
136 |
+
2. Maintenance
|
137 |
+
|
138 |
+
|
139 |
+
Responsibilities:
|
140 |
+
|
141 |
+
- Design, installation and commissioning of solar plant.
|
142 |
+
|
143 |
+
- Maintaining Solar power plant''s operation and maintenance.
|
144 |
+
|
145 |
+
- Troubleshooting of solar panel and system.
|
146 |
+
|
147 |
+
- Analyzing electrical bills and ensuring energy efficiency.
|
148 |
+
|
149 |
+
- Providing technical support for solar panel installation and maintenance.
|
150 |
+
|
151 |
+
|
152 |
+
Requirements:
|
153 |
+
|
154 |
+
- Electrical Engineering Degree (BE / B.Tech)
|
155 |
+
|
156 |
+
- 1 year of experience
|
157 |
+
|
158 |
+
- Good knowledge of Solar Energy Plant Installation
|
159 |
+
|
160 |
+
- Good analytical skills.
|
161 |
+
|
162 |
+
- Good communication skills.
|
163 |
+
|
164 |
+
- Willing to work in shifts and on weekends.'
|
165 |
+
- 'We are looking for a self-motivated & result oriented Quality Engineer with experience
|
166 |
+
in the above mentioned areas. The role will involve:
|
167 |
+
|
168 |
+
1. Verifying & testing of PCBs (using multimeter, DSO, PC and other required instruments).
|
169 |
+
|
170 |
+
2. Working with 2D & 3D software like SolidWorks, CATIA, AutoCAD etc.
|
171 |
+
|
172 |
+
3. Preparation of drawings & drafting of mechanical parts.
|
173 |
+
|
174 |
+
4. Verifying & testing of PCB assemblies (using multimeter, DSO, PC and other
|
175 |
+
required instruments).
|
176 |
+
|
177 |
+
5. Knowledge of CAD software like Solidworks, CATIA, etc.
|
178 |
+
|
179 |
+
6. Knowledge of drafting & machining techniques.
|
180 |
+
|
181 |
+
7. Knowledge of quality processes/stability analysis.
|
182 |
+
|
183 |
+
8. Knowledge of design for reliability.
|
184 |
+
|
185 |
+
9. Knowledge of design for manufacturing (DFM)
|
186 |
+
|
187 |
+
10. Knowledge of product quality processes.
|
188 |
+
|
189 |
+
11. Knowledge of design for manufacturing (DFM)'
|
190 |
+
- source_sentence: "SKILLS Bitcoin, Ethereum Solidity Hyperledger, Beginner Go, Beginner\
|
191 |
+
\ R3 Corda, Beginner Tendermint, Nodejs, C Programming, Java, Machine Learning\
|
192 |
+
\ specilaized in Brain Computer Interface, Computer Networking and Server Admin,\
|
193 |
+
\ Computer Vision, Data Analytics, Cloud Computing, Reactjs, angularEducation\
|
194 |
+
\ Details \r\nJanuary 2014 to January 2018 Bachelor of Engineering Computer Science\
|
195 |
+
\ & Engineering Thakur College of Engineering and Technology\r\nSeptember 2016\
|
196 |
+
\ to March 2017 Dynamic Blood Bank System Mumbai, Maharashtra IIT\r\nJanuary\
|
197 |
+
\ 2014 CBSE Senior Secondary\r\nJanuary 2011 CBSE Banking VIDYASHRAM PUBLIC\
|
198 |
+
\ SCHOOL\r\nBlockchain Developer \r\n\r\nBlockchain Developer - Zhypility Technologies\r\
|
199 |
+
\nSkill Details \r\nNETWORKING- Exprience - 27 months\r\nDATA ANALYTICS- Exprience\
|
200 |
+
\ - 11 months\r\nCOMPUTER VISION- Exprience - 6 months\r\nJAVA- Exprience - 6\
|
201 |
+
\ months\r\nMACHINE LEARNING- Exprience - 6 monthsCompany Details \r\ncompany\
|
202 |
+
\ - Zhypility Technologies\r\ndescription - une 2018\r\ncompany - Area Business\
|
203 |
+
\ Owner Amway Enterprise Limited\r\ndescription - Business Strategizing Promotion,\
|
204 |
+
\ Analytics and Networking Terms\r\ncompany - Virtual\r\ndescription - Developing\
|
205 |
+
\ Prototype of Smart India Hackthon to deployment level.\r\n3.Networking And Switch\
|
206 |
+
\ Intern Bharti Airtel Private Limited (Mumbai)\r\ncompany - 1.International Research\
|
207 |
+
\ Scholar- University Of Rome, Tor Vergata (Rome)\r\ndescription - Nov 2017 -\
|
208 |
+
\ Nov 2017\r\nHas done research on Reality Based Brain computer Interface and\
|
209 |
+
\ proposed paper in International Journal of Advanced Research (IJAR-20656) accepted\
|
210 |
+
\ paper by reviewer and Smart Kisan -Revolutionizing Country -IJSRD accepted for\
|
211 |
+
\ publication\r\ncompany - \r\ndescription - under Reliance Jio (Mumbai) Dec 2017\
|
212 |
+
\ - Jan 2017\r\ncompany - Maharastra State Government Hackthon\r\ndescription\
|
213 |
+
\ - \r\ncompany - Virtual\r\ndescription - I was handling group of Interns in\
|
214 |
+
\ the marketing and sales team of nearby to promote on all social media platform\
|
215 |
+
\ the nearby products.\r\ncompany - Promotion And Stock Marketing Drums Foods\
|
216 |
+
\ International\r\ndescription - \r\ncompany - 8.Data Science And Web Analytics\
|
217 |
+
\ POSITRON INTERNET (Virtual)\r\ndescription - \r\ncompany - \r\ndescription -\
|
218 |
+
\ I was making people aware about women equality rights and raise voice against\
|
219 |
+
\ violence through various modes of events and other sources of media to help\
|
220 |
+
\ the society.\r\ncompany - IIT Bombay And IIT KGP Startup\r\ndescription - \r\
|
221 |
+
\ncompany - IIT Bombay And IIT KGP Startup\r\ndescription - "
|
222 |
+
sentences:
|
223 |
+
- 'We are looking for a Blockchain Developer with experience in Hyperledger Fabric
|
224 |
+
to join our product development team.
|
225 |
+
|
226 |
+
The developer will be responsible for building and maintaining the infrastructure
|
227 |
+
and services required for the Hyperledger Fabric blockchain. The developer will
|
228 |
+
be required to develop the core components of the Hyperledger Fabric, such as
|
229 |
+
the consensus algorithms, client libraries, and transaction processing.
|
230 |
+
|
231 |
+
|
232 |
+
The developer will also be required to build the Hyperledger Fabric node and perform
|
233 |
+
the node registration, configuration and startup.
|
234 |
+
|
235 |
+
|
236 |
+
The developer will be able to design and develop the Hyperledger Fabric node,
|
237 |
+
perform continuous integration and system testing.
|
238 |
+
|
239 |
+
|
240 |
+
The developer will also be required to build a Hyperledger Fabric client application,
|
241 |
+
which will be required to communicate with the Hyperledger Fabric node.
|
242 |
+
|
243 |
+
|
244 |
+
The developer will be required to develop various applications on the Hyperledger
|
245 |
+
Fabric platform, such as smart contracts, data and identity management, and application
|
246 |
+
development. The developer will be required to design and develop'
|
247 |
+
- 'â¦
|
248 |
+
|
249 |
+
â¦
|
250 |
+
|
251 |
+
â¦
|
252 |
+
|
253 |
+
â¦
|
254 |
+
|
255 |
+
â¦
|
256 |
+
|
257 |
+
â¦
|
258 |
+
|
259 |
+
â¦
|
260 |
+
|
261 |
+
â¦
|
262 |
+
|
263 |
+
â¦
|
264 |
+
|
265 |
+
â¦
|
266 |
+
|
267 |
+
â¦
|
268 |
+
|
269 |
+
â¦
|
270 |
+
|
271 |
+
â¦
|
272 |
+
|
273 |
+
â¦
|
274 |
+
|
275 |
+
â¦
|
276 |
+
|
277 |
+
â¦
|
278 |
+
|
279 |
+
â¦
|
280 |
+
|
281 |
+
â¦
|
282 |
+
|
283 |
+
â¦
|
284 |
+
|
285 |
+
â¦
|
286 |
+
|
287 |
+
â¦
|
288 |
+
|
289 |
+
â¦
|
290 |
+
|
291 |
+
â¦
|
292 |
+
|
293 |
+
â¦
|
294 |
+
|
295 |
+
â¦
|
296 |
+
|
297 |
+
â¦
|
298 |
+
|
299 |
+
â¦
|
300 |
+
|
301 |
+
â¦
|
302 |
+
|
303 |
+
â¦
|
304 |
+
|
305 |
+
â¦
|
306 |
+
|
307 |
+
â¦
|
308 |
+
|
309 |
+
â¦
|
310 |
+
|
311 |
+
â¦
|
312 |
+
|
313 |
+
â¦
|
314 |
+
|
315 |
+
â¦
|
316 |
+
|
317 |
+
â¦
|
318 |
+
|
319 |
+
â¦
|
320 |
+
|
321 |
+
â¦
|
322 |
+
|
323 |
+
â¦
|
324 |
+
|
325 |
+
â¦
|
326 |
+
|
327 |
+
â¦
|
328 |
+
|
329 |
+
â¦
|
330 |
+
|
331 |
+
â¦
|
332 |
+
|
333 |
+
â¦
|
334 |
+
|
335 |
+
â¦
|
336 |
+
|
337 |
+
â¦
|
338 |
+
|
339 |
+
â¦
|
340 |
+
|
341 |
+
â¦
|
342 |
+
|
343 |
+
â¦
|
344 |
+
|
345 |
+
â¦
|
346 |
+
|
347 |
+
â¦
|
348 |
+
|
349 |
+
â¦
|
350 |
+
|
351 |
+
â¦
|
352 |
+
|
353 |
+
â¦
|
354 |
+
|
355 |
+
â¦
|
356 |
+
|
357 |
+
â¦
|
358 |
+
|
359 |
+
â¦
|
360 |
+
|
361 |
+
â¦
|
362 |
+
|
363 |
+
â¦
|
364 |
+
|
365 |
+
â¦
|
366 |
+
|
367 |
+
â¦
|
368 |
+
|
369 |
+
â¦
|
370 |
+
|
371 |
+
â¦
|
372 |
+
|
373 |
+
â¦
|
374 |
+
|
375 |
+
â¦
|
376 |
+
|
377 |
+
â¦
|
378 |
+
|
379 |
+
â'
|
380 |
+
- "1. Java Web Developer. \n2. PHP developer. \n3..Net developer.\n\nWe are looking\
|
381 |
+
\ for a candidate who can work independently and handle multiple projects. \n\n\
|
382 |
+
The candidate must have:\n1. Strong coding skills in Java, JSP, and Spring.\n\
|
383 |
+
2. Experience in database design and SQL queries.\n3. Good communication skills\
|
384 |
+
\ to collaborate with a team.\n4. Knowledge of HTML, CSS, and JavaScript.\n5.\
|
385 |
+
\ Knowledge of design patterns and development best practices.\n\nWe offer benefits\
|
386 |
+
\ package including salary, holidays, medical, and other allowances.\n\nIf you\
|
387 |
+
\ are interested in this position, please email your resume to [email protected]"
|
388 |
+
- source_sentence: "SOFTWARE SKILLS: Languages: C, C++ & java Operating Systems: Windows\
|
389 |
+
\ XP, 7, Ubuntu RDBMS: Oracle (SQL) Database, My SQL, PostgreSQL Markup & Scripting:\
|
390 |
+
\ HTML, JavaScript & PHP, CSS, JQuery, Angular js. Framework: Struts, Hibernate,\
|
391 |
+
\ spring, MVC Web Server: Tomcat and Glassfish. Web Services: REST AND SOAP TRAINING\
|
392 |
+
\ DETAIL Duration: 4 months From: - United Telecommunication Limited Jharnet project\
|
393 |
+
\ (Place - Ranchi, Jharkhand) Networking Requirements: Elementary configuration\
|
394 |
+
\ of router and switch, IP and MAC addressing, Lease Line, OSI Layers, Routing\
|
395 |
+
\ protocols. Status: - Network Designer.Education Details \r\n 2 High School\r\
|
396 |
+
\n Diploma Government Women Ranchi, Jharkhand The Institution\r\nBlockchain Engineer\
|
397 |
+
\ \r\n\r\nBlockchain Engineer - Auxledger\r\nSkill Details \r\nJAVA- Exprience\
|
398 |
+
\ - 19 months\r\nCSS- Exprience - 12 months\r\nHTML- Exprience - 12 months\r\n\
|
399 |
+
JAVASCRIPT- Exprience - 12 months\r\nC++- Exprience - 6 monthsCompany Details\
|
400 |
+
\ \r\ncompany - Auxledger\r\ndescription - Worked with on lots of product on blockchain.\r\
|
401 |
+
\n\r\nâ\x80¢ Bitcoin: Build Wallet and explorer on Bitcoin\r\nâ\x80¢ Ethereum:\
|
402 |
+
\ Build Wallet and explorer on ethereum blockchain.\r\nâ\x80¢ Customize product\
|
403 |
+
\ on Ethereum: Inventory system (Build smart contract in solidity,\r\ndeployed\
|
404 |
+
\ in java byte code and on ethereum as well and I have written API in java spring\
|
405 |
+
\ on that and then build front end and called all Api)\r\nâ\x80¢ Audit Logger:\
|
406 |
+
\ I have audit logger for OTC exchange to keep all transaction record in blockchain.\r\
|
407 |
+
\nâ\x80¢ DOC Safe on ethereum: I have build an ethereum application to keep Documents\
|
408 |
+
\ safe on blockchain and document in encrypted form on server.\r\nâ\x80¢ And explore\
|
409 |
+
\ with Litecoin, Ripple & exchange (OTC P2P) Hyperledger Fabric ..continue \
|
410 |
+
\ ..\r\ncompany - \r\ndescription - Worked with a USA team on blockchain on ethereum,\
|
411 |
+
\ I have designed product on ethereum\r\nblockchain,\r\nâ\x80¢ Setup private ethereum\
|
412 |
+
\ and bitcoin blockchain. Worked on loyalty program system and HER\r\nSystem on\
|
413 |
+
\ ethereum network.\r\ncompany - ERP System, CRM for Real Estate Company\r\ndescription\
|
414 |
+
\ - â\x80¢ At Lavisa Infrastructure Bangalore \
|
415 |
+
\ Sep 2015- Oct 2016\r\nSoftware developer\r\nâ\x80¢ ERP System, CRM for\
|
416 |
+
\ Real Estate Company.\r\ncompany - News Portal\r\ndescription - â\x80¢ On demand\
|
417 |
+
\ product development from client side requirement. Like\r\nâ\x80¢ Dynamic website:\
|
418 |
+
\ Content management system where I have designed front end with backend where\
|
419 |
+
\ content of website was manageable from admin panel.\r\nâ\x80¢ News Portal: News\
|
420 |
+
\ portal where content was in Hindi language. I have used Html, Css,\r\nJavaScript,\
|
421 |
+
\ JDBC, MySQL data base.\r\nâ\x80¢ Birthday Reminder: A small web application\
|
422 |
+
\ for birthday reminder, I have used HTMl, CSS,\r\nJavaScript, JDBC, MySQL DB.\r\
|
423 |
+
\nâ\x80¢ Car parking System: A web application for Management of Car Parking System,\
|
424 |
+
\ I have used\r\nHTMl, CSS, JavaScript, JDBC, MySQL DB.\r\ncompany - Company portal\
|
425 |
+
\ for employee management for Inside Company\r\ndescription - â\x80¢ At United\
|
426 |
+
\ Telecom Limited Ranchi Nov 2013-Sep\
|
427 |
+
\ 2014\r\nWeb developer\r\nâ\x80¢ Company portal for employee management for Inside\
|
428 |
+
\ Company. Onsite employee, & in different-different district. And management\
|
429 |
+
\ of all kind of government service like adhar\r\ncard, Birth certificate, pan\
|
430 |
+
\ card tracker etc.\r\n\r\nTechnology skill:\r\n\r\nTechnology: Blockchain (Bitcoin,\
|
431 |
+
\ Ethereum, Ripple, Hyperledger Fabric)\r\nBlock-chain: Private setup of blockchain,\
|
432 |
+
\ Node building.\r\nSmart Contract: Solidity Language.\r\nSmart Contract Api:\
|
433 |
+
\ Java Spring\r\nDapp Building: Node js, React js, Express js"
|
434 |
+
sentences:
|
435 |
+
- 'We are looking for an experienced Full Stack Developer to handle our website
|
436 |
+
development based in the United States. The candidate should have strong experience
|
437 |
+
working with Node.js, React, and MongoDB.
|
438 |
+
|
439 |
+
|
440 |
+
The ideal candidate should possess a solid understanding of the full-stack development
|
441 |
+
process, including gathering customer needs, coding, testing, and deployment.
|
442 |
+
|
443 |
+
|
444 |
+
Responsibilities:
|
445 |
+
|
446 |
+
- Develops and maintains the website, ensuring it is well-structured and responsive
|
447 |
+
to all users.
|
448 |
+
|
449 |
+
- Collaborate on the website design and layout, including the look and feel of
|
450 |
+
the website.
|
451 |
+
|
452 |
+
- Optimize and enhance web content to improve user experience.
|
453 |
+
|
454 |
+
- Troubleshoot issues and resolve problems to ensure website uptime.
|
455 |
+
|
456 |
+
- Develop and maintain the website in accordance with the latest industry trends
|
457 |
+
and best practices.
|
458 |
+
|
459 |
+
- Collaborate with the front-end development team to ensure the website is optimized
|
460 |
+
for all devices.
|
461 |
+
|
462 |
+
- Code, test, and maintain the user interface, including Javascript, CSS, and
|
463 |
+
HTML'
|
464 |
+
- 'The company is looking for a software developer who has a minimum of 2 years
|
465 |
+
of experience in
|
466 |
+
|
467 |
+
blockchain development, specifically with the Solidity language. The candidate
|
468 |
+
should also have
|
469 |
+
|
470 |
+
experience in smart contract development and dapp building. The job requires that
|
471 |
+
the developer
|
472 |
+
|
473 |
+
should also have experience in setting up and managing a private blockchain from
|
474 |
+
scratch.
|
475 |
+
|
476 |
+
|
477 |
+
The candidate should have a thorough understanding of the blockchain architecture,
|
478 |
+
mining,
|
479 |
+
|
480 |
+
wallet systems, chaincode development, and smart contract development. The experience
|
481 |
+
should be
|
482 |
+
|
483 |
+
demonstrated through relevant projects and examples.
|
484 |
+
|
485 |
+
|
486 |
+
The candidate should also have experience in deploying and maintaining blockchain
|
487 |
+
|
488 |
+
applications, and developing dapps. The candidate should also be familiar with
|
489 |
+
coding
|
490 |
+
|
491 |
+
standards and security best practices.
|
492 |
+
|
493 |
+
|
494 |
+
The candidate should have experience in working with databases and designing,
|
495 |
+
maintaining,
|
496 |
+
|
497 |
+
and upgrading them.
|
498 |
+
|
499 |
+
|
500 |
+
The candidate should also have experience in setting up and maintaining a Solidity
|
501 |
+
|
502 |
+
environment. The candidate should have experience in integrating'
|
503 |
+
- '- Responsible for the implementation and maintenance of data warehousing environment
|
504 |
+
|
505 |
+
- Worked with different data sources that includes mainframe (SAP) databases and
|
506 |
+
various SQL databases
|
507 |
+
|
508 |
+
- Worked with SAP Data Services, SAP SQL Server 2008/2012, SAP Business Objects
|
509 |
+
Analysis services, SAP Business Objects Dashboard design and SAP Business Objects
|
510 |
+
Data Visualization.
|
511 |
+
|
512 |
+
- Worked with SAP HANA, SAP Business Objects Analysis Services, SAP Business Objects
|
513 |
+
Dashboard design, SAP Business Objects Data Visualization and SAP Business Objects
|
514 |
+
Data Services
|
515 |
+
|
516 |
+
- Worked with SAP Data Services (ODS)
|
517 |
+
|
518 |
+
- Worked with SAP SQL Server 2008/2012, SAP Business Objects Analysis services,
|
519 |
+
SAP Business Objects Dashboard design, SAP Business Objects Data Visualization
|
520 |
+
and SAP Business Objects Data Services.
|
521 |
+
|
522 |
+
- Worked with SAP Business Objects Analysis services, SAP Business Objects Dashboard
|
523 |
+
design, SAP Business Objects Data Visualization and SAP Business Objects Data
|
524 |
+
Services.
|
525 |
+
|
526 |
+
- Worked with SAP HANA, SAP Business'
|
527 |
+
- source_sentence: "Computer Skills: â\x80¢ Proficient in MS office (Word, Basic Excel,\
|
528 |
+
\ Power point) Strength: â\x80¢ Hard working, Loyalty & Creativity â\x80¢ Self-motivated,\
|
529 |
+
\ Responsible & Initiative â\x80¢ Good people management skill & positive attitude.\
|
530 |
+
\ â\x80¢ knowledge of windows, Internet.Education Details \r\n Bachelor of Electrical\
|
531 |
+
\ Engineering Electrical Engineering Nashik, Maharashtra Guru Gobind Singh College\
|
532 |
+
\ of Engineering and Research Centre\r\n Diploma Electrical Engineering Nashik,\
|
533 |
+
\ Maharashtra S. M. E. S. Polytechnic College\r\nTesting Engineer \r\n\r\n\r\n\
|
534 |
+
Skill Details \r\nEXCEL- Exprience - 6 months\r\nMS OFFICE- Exprience - 6 months\r\
|
535 |
+
\nWORD- Exprience - 6 monthsCompany Details \r\ncompany - \r\ndescription - Department:\
|
536 |
+
\ Testing\r\n\r\nResponsibilities: â\x80¢ To check ACB and VCB of Circuit Breaker.\r\
|
537 |
+
\nâ\x80¢ Following test conducted of Circuit Breaker as per drawing.\r\n1. To\
|
538 |
+
\ check breaker timing.\r\n2. To check contact resistance using contact resistance\
|
539 |
+
\ meter (CRM) 3. To check breaker insulation resistance (IR) 4. To check breaker\
|
540 |
+
\ rack out and rack in properly or not.\r\n5. To check closing and tripping operation\
|
541 |
+
\ work properly or not.\r\nâ\x80¢ To check and following test conducted in MCC\
|
542 |
+
\ & PCC panel.\r\n1. Insulation Resistance (IR) test.\r\n2. Contact Resistance\
|
543 |
+
\ (CRM) test.\r\n3. To check connection on mcc & pcc panel as per drawing.\r\n\
|
544 |
+
â\x80¢ To check and following test conducted in transformer.\r\n1. Insulation\
|
545 |
+
\ Resistance (IR) test.\r\n2. Transformer Ratio test.\r\n3. Transformer Vector\
|
546 |
+
\ Group test.\r\n4. Magnetic Balance test.\r\n5. Magnetic Current test.\r\n6.\
|
547 |
+
\ To check the transformer tapping remotely as well as manually 7. To check the\
|
548 |
+
\ all alarm and tripping protection command work properly\r\nOr not as per circuit\
|
549 |
+
\ diagram.\r\n â\x80¢ To check and test conducted in HV cables.\r\n1. Hi-Pot test.\r\
|
550 |
+
\n2. Insulation resistance (IR) test.\r\nâ\x80¢ To check the LV cables using megger\
|
551 |
+
\ (IR Test) â\x80¢ To check the relay connections as per circuit diagram.\r\n\
|
552 |
+
Create the defects list which arising during the testing and try to find the solution\
|
553 |
+
\ to minimize the problem.\r\ncompany - TRANS POWER SOLUTIONS\r\ndescription -\
|
554 |
+
\ Lake-Site CO-Op.Soc. Adi Shankaracharya Marg,\r\nOpp. IIT Main Gate, Powai 400076."
|
555 |
+
sentences:
|
556 |
+
- "We are looking for a competent and experienced Testing Engineer to join our team.\
|
557 |
+
\ The primary responsibility of the Testing Engineer is to test, maintain and\
|
558 |
+
\ troubleshoot the electrical systems to ensure that the performance of the products\
|
559 |
+
\ matches the specifications.\n\nThe ideal candidate should have experience in\
|
560 |
+
\ the following areas: \n\n1. Testing of electrical systems\n2. Troubleshooting\
|
561 |
+
\ of electrical systems\n3. Electrical panel inspection\n4. Follow-up with the\
|
562 |
+
\ client\n5. Test the electrical product using the necessary tools\n\nQualification\
|
563 |
+
\ Required: \nB.E./B.Tech. (Electrical/ Electronics) or M.B.A.\nKnowledge Required:\
|
564 |
+
\ \nKnowledge of Windows, Internet, MS Office, and other relevant software/tools.\n\
|
565 |
+
Experience: \n2-3 years of experience in a relevant field.\nSalary Details: \n\
|
566 |
+
The candidate will be paid according to industry standards.\nWorking Location:\
|
567 |
+
\ \nPowai, Mumbai."
|
568 |
+
- 'We are looking for a Java Developer who can build applications and services using
|
569 |
+
Java. The developer should have experience in all the core Java technologies like
|
570 |
+
JDBC, Swing, JDBC, J2EE, and JavaScript/jQuery.
|
571 |
+
|
572 |
+
|
573 |
+
The candidate would need to have a strong technical background in Java and should
|
574 |
+
have experience in a variety of Java frameworks and technologies. The responsibilities
|
575 |
+
for the Java Developer include developing and testing various applications, frameworks
|
576 |
+
and tools. The developer would also be responsible for troubleshooting and resolving
|
577 |
+
technical issues.
|
578 |
+
|
579 |
+
|
580 |
+
The candidate should be comfortable working with JavaScript/jQuery to help build
|
581 |
+
and maintain dynamic user interfaces. The developer will also be required to document
|
582 |
+
code and participate in team meetings. The candidate should have experience in
|
583 |
+
software development life cycle, coding and testing techniques.
|
584 |
+
|
585 |
+
|
586 |
+
The candidate should have a basic understanding of Java, JavaScript, Swing and
|
587 |
+
JDBC. They should also have experience in web application development with Java.
|
588 |
+
The candidate should also be able to work independently with limited supervision'
|
589 |
+
- 'A position in a large Financial Services company to lead a small team and be
|
590 |
+
responsible for the following activities: ·     Â           Â
|
591 |
+
                                      Â
|
592 |
+
                                      Â
|
593 |
+
                                      Â
|
594 |
+
                                      Â
|
595 |
+
  Â'
|
596 |
+
- source_sentence: "TechnicalProficiencies DB: Oracle 11g Domains: Investment Banking,\
|
597 |
+
\ Advertising, Insurance. Programming Skills: SQL, PLSQL BI Tools: Informatica\
|
598 |
+
\ 9.1 OS: Windows, Unix Professional Development Trainings â\x80¢ Concepts in\
|
599 |
+
\ Data Warehousing, Business Intelligence, ETL. â\x80¢ BI Tools -Informatica 9X\
|
600 |
+
\ Education Details \r\n BCA Nanded, Maharashtra Nanded University\r\nETL Developer\
|
601 |
+
\ \r\n\r\nETL Developer - Sun Trust Bank NY\r\nSkill Details \r\nETL- Exprience\
|
602 |
+
\ - 39 months\r\nEXTRACT, TRANSFORM, AND LOAD- Exprience - 39 months\r\nINFORMATICA-\
|
603 |
+
\ Exprience - 39 months\r\nORACLE- Exprience - 39 months\r\nUNIX- Exprience -\
|
604 |
+
\ 39 monthsCompany Details \r\ncompany - Sun Trust Bank NY\r\ndescription - Sun\
|
605 |
+
\ Trust Bank, NY JAN 2018 to present\r\nClient: Sun Trust Bank NY\r\nEnvironment:\
|
606 |
+
\ Informatica Power Center 9.1, Oracle 11g, unix.\r\n\r\nRole: ETL Developer\r\
|
607 |
+
\n\r\nProject Profile:\r\nSun Trust Bank is a US based multinational financial\
|
608 |
+
\ services holding company, headquarters in NY that operates the Bank in New York\
|
609 |
+
\ and other financial services investments. The company is organized as a stock\
|
610 |
+
\ corporation with four divisions: investment banking, private banking, Retail\
|
611 |
+
\ banking and a shared services group that provides\r\nFinancial services and\
|
612 |
+
\ support to the other divisions.\r\nThe objective of the first module was to\
|
613 |
+
\ create a DR system for the bank with a central point of communication and storage\
|
614 |
+
\ for Listed, Cash securities, Loans, Bonds, Notes, Equities, Rates, Commodities,\
|
615 |
+
\ and\r\nFX asset classes.\r\nContribution / Highlights:\r\n\r\nâ\x80¢ Liaising\
|
616 |
+
\ closely with Project Manager, Business Analysts, Product Architects, and Requirements\
|
617 |
+
\ Modelers (CFOC) to define Technical requirements and create project documentation.\r\
|
618 |
+
\nâ\x80¢ Development using Infa 9.1, 11g/Oracle, UNIX.\r\nâ\x80¢ Use Informatica\
|
619 |
+
\ PowerCenter for extraction, transformation and loading (ETL) of data in the\
|
620 |
+
\ Database.\r\nâ\x80¢ Created and configured Sessions in Informatica workflow\
|
621 |
+
\ Manager for loading data into Data base tables from various heterogeneous database\
|
622 |
+
\ sources like Flat Files, Oracle etc.\r\nâ\x80¢ Unit testing and system integration\
|
623 |
+
\ testing of the developed mappings.\r\nâ\x80¢ Providing production Support of\
|
624 |
+
\ the deployed code.\r\nâ\x80¢ Providing solutions to the business for the Production\
|
625 |
+
\ issues.\r\nâ\x80¢ Had one to One interaction with the client throughout the\
|
626 |
+
\ project and in daily meetings.\r\n\r\nProject #2\r\ncompany - Marshall Multimedia\r\
|
627 |
+
\ndescription - JUN 2016 to DEC 2017\r\n\r\nClient: Marshall Multimedia\r\nEnvironment:\
|
628 |
+
\ Informatica Power Center 9.1, Oracle 11g, unix.\r\n\r\nRole: ETL Developer\r\
|
629 |
+
\n\r\nProject Profile:\r\nMarshall Multimedia is a US based multimedia advertisement\
|
630 |
+
\ services based organization which has\r\nhead courter in New York. EGC interface\
|
631 |
+
\ systems are advert management, Customer Management, Billing and\r\nProvisioning\
|
632 |
+
\ Systems for Consumer& Enterprise Customers.\r\nThe main aim of the project was\
|
633 |
+
\ to create an enterprise data warehouse which would suffice the need of reports\
|
634 |
+
\ belonging to the following categories: Financial reports, management reports\
|
635 |
+
\ and\r\nrejection reports. The professional reports were created by Cognos and\
|
636 |
+
\ ETL work was performed by\r\nInformatica. This project is to load the advert\
|
637 |
+
\ details and magazine details coming in Relational tables into data warehouse\
|
638 |
+
\ and calculate the compensation and incentive amount monthly twice as per business\r\
|
639 |
+
\nrules.\r\n\r\nContribution / Highlights:\r\nâ\x80¢ Developed mappings using\
|
640 |
+
\ different sources by using Informatica transformations.\r\nâ\x80¢ Created and\
|
641 |
+
\ configured Sessions in Informatica workflow Manager for loading data into Data\
|
642 |
+
\ Mart tables from various heterogeneous database sources like Flat Files, Oracle\
|
643 |
+
\ etc.\r\n\r\n2\r\nâ\x80¢ Unit testing and system integration testing of the developed\
|
644 |
+
\ mappings.\r\nâ\x80¢ Providing solutions to the business for the Production issues.\r\
|
645 |
+
\n\r\nProject #3\r\ncompany - Assurant healthcare/Insurance Miami USA\r\ndescription\
|
646 |
+
\ - Assurant, USA \
|
647 |
+
\ NOV 2015 to MAY 2016\r\n\r\nProject:\
|
648 |
+
\ ACT BI - State Datamart\r\nClient: Assurant healthcare/Insurance Miami USA\r\
|
649 |
+
\nEnvironment: Informatica Power Center 9.1, Oracle 11g, unix.\r\n\r\nRole: ETL\
|
650 |
+
\ Developer\r\n\r\nProject Profile:\r\nAssurant, Inc. is a holding company with\
|
651 |
+
\ businesses that provide a diverse set of specialty, niche-market insurance\r\
|
652 |
+
\nproducts in the property, casualty, life and health insurance sectors. The company's\
|
653 |
+
\ four operating segments are Assurant\r\nEmployee Benefits, Assurant Health,\
|
654 |
+
\ Assurant Solutions and Assurant Specialty Property.\r\nThe project aim at building\
|
655 |
+
\ State Datamart for enterprise solution. I am part of team which is responsible\
|
656 |
+
\ for ETL\r\nDesign & development along with testing.\r\n\r\nContribution / Highlights:\r\
|
657 |
+
\nâ\x80¢ Performed small enhancement\r\nâ\x80¢ Daily load monitoring\r\nâ\x80\
|
658 |
+
¢ Attend to Informatica job failures by analyzing the root cause, resolving\
|
659 |
+
\ the failure using standard\r\ndocumented process.\r\nâ\x80¢ Experience in\
|
660 |
+
\ writing SQL statements.\r\nâ\x80¢ Strong Problem Analysis & Resolution skills\
|
661 |
+
\ and ability to work in Multi Platform Environments\r\nâ\x80¢ Scheduled the\
|
662 |
+
\ Informatica jobs using Informatica scheduler\r\nâ\x80¢ Extensively used ETL\
|
663 |
+
\ methodology for developing and supporting data extraction, transformations and\
|
664 |
+
\ loading process, in a corporate-wide-ETL Solution using Informatica.\r\nâ\x80\
|
665 |
+
¢ Involved in creating the Unit cases and uploaded in to Quality Center for\
|
666 |
+
\ Unit Testing and UTR\r\nâ\x80�� Ensure that daily support tasks are done in\
|
667 |
+
\ accordance with the defined SLA."
|
668 |
+
sentences:
|
669 |
+
- 'The incumbent would be responsible for testing and maintenance of the Transformers,
|
670 |
+
BPCB''s, Transformer, PCC, MCC, HV cables, LV cables with respect to the electrical
|
671 |
+
and mechanical aspects.
|
672 |
+
|
673 |
+
|
674 |
+
Job Requirements:
|
675 |
+
|
676 |
+
- B.E. / B.Tech. (Electrical/Mechanical) with minimum 60% aggregate.
|
677 |
+
|
678 |
+
- Minimum 2 years of experience in testing and maintenance of transformers, BPCB''s,
|
679 |
+
Transformer, PCC, HV cables, LV cables.
|
680 |
+
|
681 |
+
- Knowledge of transformer ratio test, transformer vector group test, transformer
|
682 |
+
magnetic balance test, transformer tripping protection command, etc.
|
683 |
+
|
684 |
+
- Knowledge of working of electrical/mechanical systems and related components
|
685 |
+
(like motors, starters, etc.)
|
686 |
+
|
687 |
+
- Knowledge of electrical/mechanical maintenance of transformers etc.
|
688 |
+
|
689 |
+
- Ability to check transformer/MCC/PCC/HV cables/LV cables for defects and to
|
690 |
+
work on them to fix'
|
691 |
+
- "â\x80¢ Knowledge of Informatica Power Center (ver. 9.1 and 10) ETL Tool: Mapping\
|
692 |
+
\ designing, usage of multiple transformations. Integration of various data source\
|
693 |
+
\ like SQL Server tables, Flat Files, etc. into target data warehouse.\r\nâ\x80\
|
694 |
+
¢ SQL/PLSQL working knowledge on Microsoft SQL server 2010.\r\nâ\x80¢ Unix Working\
|
695 |
+
\ Description on Microsoft SQL server 2010.\r\nâ\x80¢ Job scheduling using Autosys,\
|
696 |
+
\ Incident management and Change Requests through Service Now, JIRA, Agile Central.\
|
697 |
+
\ Education Details:\r\nâ\x80¢ BTech CSE Sangli, Maharashtra: Walchand College\
|
698 |
+
\ of Engineering\r\nâ\x80¢ H.S.C Sangli, Maharashtra: Willingdon College\r\nâ\x80\
|
699 |
+
¢ 2 years of experience in ETL Development."
|
700 |
+
- I am looking for an opportunity that would provide me with a chance to learn and
|
701 |
+
enhance my skills in the Oracle Financials domain. I have 4+ years of experience
|
702 |
+
in the domain and have worked with various clients. I have been working in the
|
703 |
+
finance domain for 9+ years. I have worked in Oracle Apps Financials and have
|
704 |
+
experience in Oracle Financials 11i, R12. I am also proficient in Financial Services
|
705 |
+
• ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢
|
706 |
+
¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢
|
707 |
+
¢ ¢ ¢
|
708 |
+
pipeline_tag: sentence-similarity
|
709 |
+
library_name: sentence-transformers
|
710 |
+
metrics:
|
711 |
+
- pearson_cosine
|
712 |
+
- spearman_cosine
|
713 |
+
model-index:
|
714 |
+
- name: SentenceTransformer based on sentence-transformers/all-mpnet-base-v2
|
715 |
+
results:
|
716 |
+
- task:
|
717 |
+
type: semantic-similarity
|
718 |
+
name: Semantic Similarity
|
719 |
+
dataset:
|
720 |
+
name: validation
|
721 |
+
type: validation
|
722 |
+
metrics:
|
723 |
+
- type: pearson_cosine
|
724 |
+
value: 0.8836967964163955
|
725 |
+
name: Pearson Cosine
|
726 |
+
- type: spearman_cosine
|
727 |
+
value: 0.8723963812329054
|
728 |
+
name: Spearman Cosine
|
729 |
+
---
|
730 |
+
|
731 |
+
# SentenceTransformer based on sentence-transformers/all-mpnet-base-v2
|
732 |
+
|
733 |
+
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [sentence-transformers/all-mpnet-base-v2](https://huggingface.co/sentence-transformers/all-mpnet-base-v2). It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
|
734 |
+
|
735 |
+
## Model Details
|
736 |
+
|
737 |
+
### Model Description
|
738 |
+
- **Model Type:** Sentence Transformer
|
739 |
+
- **Base model:** [sentence-transformers/all-mpnet-base-v2](https://huggingface.co/sentence-transformers/all-mpnet-base-v2) <!-- at revision 9a3225965996d404b775526de6dbfe85d3368642 -->
|
740 |
+
- **Maximum Sequence Length:** 384 tokens
|
741 |
+
- **Output Dimensionality:** 768 dimensions
|
742 |
+
- **Similarity Function:** Cosine Similarity
|
743 |
+
<!-- - **Training Dataset:** Unknown -->
|
744 |
+
<!-- - **Language:** Unknown -->
|
745 |
+
<!-- - **License:** Unknown -->
|
746 |
+
|
747 |
+
### Model Sources
|
748 |
+
|
749 |
+
- **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
|
750 |
+
- **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
|
751 |
+
- **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
|
752 |
+
|
753 |
+
### Full Model Architecture
|
754 |
+
|
755 |
+
```
|
756 |
+
SentenceTransformer(
|
757 |
+
(0): Transformer({'max_seq_length': 384, 'do_lower_case': False}) with Transformer model: MPNetModel
|
758 |
+
(1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
|
759 |
+
(2): Normalize()
|
760 |
+
)
|
761 |
+
```
|
762 |
+
|
763 |
+
## Usage
|
764 |
+
|
765 |
+
### Direct Usage (Sentence Transformers)
|
766 |
+
|
767 |
+
First install the Sentence Transformers library:
|
768 |
+
|
769 |
+
```bash
|
770 |
+
pip install -U sentence-transformers
|
771 |
+
```
|
772 |
+
|
773 |
+
Then you can load this model and run inference.
|
774 |
+
```python
|
775 |
+
from sentence_transformers import SentenceTransformer
|
776 |
+
|
777 |
+
# Download from the 🤗 Hub
|
778 |
+
model = SentenceTransformer("sentence_transformers_model_id")
|
779 |
+
# Run inference
|
780 |
+
sentences = [
|
781 |
+
"TechnicalProficiencies DB: Oracle 11g Domains: Investment Banking, Advertising, Insurance. Programming Skills: SQL, PLSQL BI Tools: Informatica 9.1 OS: Windows, Unix Professional Development Trainings â\x80¢ Concepts in Data Warehousing, Business Intelligence, ETL. â\x80¢ BI Tools -Informatica 9X Education Details \r\n BCA Nanded, Maharashtra Nanded University\r\nETL Developer \r\n\r\nETL Developer - Sun Trust Bank NY\r\nSkill Details \r\nETL- Exprience - 39 months\r\nEXTRACT, TRANSFORM, AND LOAD- Exprience - 39 months\r\nINFORMATICA- Exprience - 39 months\r\nORACLE- Exprience - 39 months\r\nUNIX- Exprience - 39 monthsCompany Details \r\ncompany - Sun Trust Bank NY\r\ndescription - Sun Trust Bank, NY JAN 2018 to present\r\nClient: Sun Trust Bank NY\r\nEnvironment: Informatica Power Center 9.1, Oracle 11g, unix.\r\n\r\nRole: ETL Developer\r\n\r\nProject Profile:\r\nSun Trust Bank is a US based multinational financial services holding company, headquarters in NY that operates the Bank in New York and other financial services investments. The company is organized as a stock corporation with four divisions: investment banking, private banking, Retail banking and a shared services group that provides\r\nFinancial services and support to the other divisions.\r\nThe objective of the first module was to create a DR system for the bank with a central point of communication and storage for Listed, Cash securities, Loans, Bonds, Notes, Equities, Rates, Commodities, and\r\nFX asset classes.\r\nContribution / Highlights:\r\n\r\nâ\x80¢ Liaising closely with Project Manager, Business Analysts, Product Architects, and Requirements Modelers (CFOC) to define Technical requirements and create project documentation.\r\nâ\x80¢ Development using Infa 9.1, 11g/Oracle, UNIX.\r\nâ\x80¢ Use Informatica PowerCenter for extraction, transformation and loading (ETL) of data in the Database.\r\nâ\x80¢ Created and configured Sessions in Informatica workflow Manager for loading data into Data base tables from various heterogeneous database sources like Flat Files, Oracle etc.\r\nâ\x80¢ Unit testing and system integration testing of the developed mappings.\r\nâ\x80¢ Providing production Support of the deployed code.\r\nâ\x80¢ Providing solutions to the business for the Production issues.\r\nâ\x80¢ Had one to One interaction with the client throughout the project and in daily meetings.\r\n\r\nProject #2\r\ncompany - Marshall Multimedia\r\ndescription - JUN 2016 to DEC 2017\r\n\r\nClient: Marshall Multimedia\r\nEnvironment: Informatica Power Center 9.1, Oracle 11g, unix.\r\n\r\nRole: ETL Developer\r\n\r\nProject Profile:\r\nMarshall Multimedia is a US based multimedia advertisement services based organization which has\r\nhead courter in New York. EGC interface systems are advert management, Customer Management, Billing and\r\nProvisioning Systems for Consumer& Enterprise Customers.\r\nThe main aim of the project was to create an enterprise data warehouse which would suffice the need of reports belonging to the following categories: Financial reports, management reports and\r\nrejection reports. The professional reports were created by Cognos and ETL work was performed by\r\nInformatica. This project is to load the advert details and magazine details coming in Relational tables into data warehouse and calculate the compensation and incentive amount monthly twice as per business\r\nrules.\r\n\r\nContribution / Highlights:\r\nâ\x80¢ Developed mappings using different sources by using Informatica transformations.\r\nâ\x80¢ Created and configured Sessions in Informatica workflow Manager for loading data into Data Mart tables from various heterogeneous database sources like Flat Files, Oracle etc.\r\n\r\n2\r\nâ\x80¢ Unit testing and system integration testing of the developed mappings.\r\nâ\x80¢ Providing solutions to the business for the Production issues.\r\n\r\nProject #3\r\ncompany - Assurant healthcare/Insurance Miami USA\r\ndescription - Assurant, USA NOV 2015 to MAY 2016\r\n\r\nProject: ACT BI - State Datamart\r\nClient: Assurant healthcare/Insurance Miami USA\r\nEnvironment: Informatica Power Center 9.1, Oracle 11g, unix.\r\n\r\nRole: ETL Developer\r\n\r\nProject Profile:\r\nAssurant, Inc. is a holding company with businesses that provide a diverse set of specialty, niche-market insurance\r\nproducts in the property, casualty, life and health insurance sectors. The company's four operating segments are Assurant\r\nEmployee Benefits, Assurant Health, Assurant Solutions and Assurant Specialty Property.\r\nThe project aim at building State Datamart for enterprise solution. I am part of team which is responsible for ETL\r\nDesign & development along with testing.\r\n\r\nContribution / Highlights:\r\nâ\x80¢ Performed small enhancement\r\nâ\x80¢ Daily load monitoring\r\nâ\x80¢ Attend to Informatica job failures by analyzing the root cause, resolving the failure using standard\r\ndocumented process.\r\nâ\x80¢ Experience in writing SQL statements.\r\nâ\x80¢ Strong Problem Analysis & Resolution skills and ability to work in Multi Platform Environments\r\nâ\x80¢ Scheduled the Informatica jobs using Informatica scheduler\r\nâ\x80¢ Extensively used ETL methodology for developing and supporting data extraction, transformations and loading process, in a corporate-wide-ETL Solution using Informatica.\r\nâ\x80¢ Involved in creating the Unit cases and uploaded in to Quality Center for Unit Testing and UTR\r\nâ\x80¢ Ensure that daily support tasks are done in accordance with the defined SLA.",
|
782 |
+
'I am looking for an opportunity that would provide me with a chance to learn and enhance my skills in the Oracle Financials domain. I have 4+ years of experience in the domain and have worked with various clients. I have been working in the finance domain for 9+ years. I have worked in Oracle Apps Financials and have experience in Oracle Financials 11i, R12. I am also proficient in Financial Services • ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢ ¢',
|
783 |
+
"The incumbent would be responsible for testing and maintenance of the Transformers, BPCB's, Transformer, PCC, MCC, HV cables, LV cables with respect to the electrical and mechanical aspects.\n\nJob Requirements:\n- B.E. / B.Tech. (Electrical/Mechanical) with minimum 60% aggregate.\n- Minimum 2 years of experience in testing and maintenance of transformers, BPCB's, Transformer, PCC, HV cables, LV cables.\n- Knowledge of transformer ratio test, transformer vector group test, transformer magnetic balance test, transformer tripping protection command, etc.\n- Knowledge of working of electrical/mechanical systems and related components (like motors, starters, etc.)\n- Knowledge of electrical/mechanical maintenance of transformers etc.\n- Ability to check transformer/MCC/PCC/HV cables/LV cables for defects and to work on them to fix",
|
784 |
+
]
|
785 |
+
embeddings = model.encode(sentences)
|
786 |
+
print(embeddings.shape)
|
787 |
+
# [3, 768]
|
788 |
+
|
789 |
+
# Get the similarity scores for the embeddings
|
790 |
+
similarities = model.similarity(embeddings, embeddings)
|
791 |
+
print(similarities.shape)
|
792 |
+
# [3, 3]
|
793 |
+
```
|
794 |
+
|
795 |
+
<!--
|
796 |
+
### Direct Usage (Transformers)
|
797 |
+
|
798 |
+
<details><summary>Click to see the direct usage in Transformers</summary>
|
799 |
+
|
800 |
+
</details>
|
801 |
+
-->
|
802 |
+
|
803 |
+
<!--
|
804 |
+
### Downstream Usage (Sentence Transformers)
|
805 |
+
|
806 |
+
You can finetune this model on your own dataset.
|
807 |
+
|
808 |
+
<details><summary>Click to expand</summary>
|
809 |
+
|
810 |
+
</details>
|
811 |
+
-->
|
812 |
+
|
813 |
+
<!--
|
814 |
+
### Out-of-Scope Use
|
815 |
+
|
816 |
+
*List how the model may foreseeably be misused and address what users ought not to do with the model.*
|
817 |
+
-->
|
818 |
+
|
819 |
+
## Evaluation
|
820 |
+
|
821 |
+
### Metrics
|
822 |
+
|
823 |
+
#### Semantic Similarity
|
824 |
+
|
825 |
+
* Dataset: `validation`
|
826 |
+
* Evaluated with [<code>EmbeddingSimilarityEvaluator</code>](https://sbert.net/docs/package_reference/sentence_transformer/evaluation.html#sentence_transformers.evaluation.EmbeddingSimilarityEvaluator)
|
827 |
+
|
828 |
+
| Metric | Value |
|
829 |
+
|:--------------------|:-----------|
|
830 |
+
| pearson_cosine | 0.8837 |
|
831 |
+
| **spearman_cosine** | **0.8724** |
|
832 |
+
|
833 |
+
<!--
|
834 |
+
## Bias, Risks and Limitations
|
835 |
+
|
836 |
+
*What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
|
837 |
+
-->
|
838 |
+
|
839 |
+
<!--
|
840 |
+
### Recommendations
|
841 |
+
|
842 |
+
*What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
|
843 |
+
-->
|
844 |
+
|
845 |
+
## Training Details
|
846 |
+
|
847 |
+
### Training Dataset
|
848 |
+
|
849 |
+
#### Unnamed Dataset
|
850 |
+
|
851 |
+
* Size: 864 training samples
|
852 |
+
* Columns: <code>sentence_0</code>, <code>sentence_1</code>, and <code>label</code>
|
853 |
+
* Approximate statistics based on the first 864 samples:
|
854 |
+
| | sentence_0 | sentence_1 | label |
|
855 |
+
|:--------|:-------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------|:---------------------------------------------------------------|
|
856 |
+
| type | string | string | float |
|
857 |
+
| details | <ul><li>min: 24 tokens</li><li>mean: 316.25 tokens</li><li>max: 384 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 164.37 tokens</li><li>max: 218 tokens</li></ul> | <ul><li>min: 0.0</li><li>mean: 0.56</li><li>max: 1.0</li></ul> |
|
858 |
+
* Samples:
|
859 |
+
| sentence_0 | sentence_1 | label |
|
860 |
+
|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------|
|
861 |
+
| <code>KEY SKILLS: ⢠Computerized accounting with tally ⢠Sincere & hard working ⢠Management accounting & income tax ⢠Good communication & leadership ⢠Two and four wheeler driving license ⢠Internet & Ecommerce management COMPUTER SKILLS: ⢠C Language ⢠Web programing ⢠Tally ⢠Dbms Education Details
|
862 |
+
<br>June 2017 to June 2019 Mba Finance/hr India Mlrit
|
863 |
+
<br>June 2014 to June 2017 Bcom Computer Hyderabad, Telangana Osmania university
|
864 |
+
<br>June 2012 to April 2014 Inter MEC India Srimedhav
|
865 |
+
<br>Hr
|
866 |
+
<br>
|
867 |
+
<br>Nani
|
868 |
+
<br>Skill Details
|
869 |
+
<br>accounting- Exprience - 6 months
|
870 |
+
<br>DATABASE MANAGEMENT SYSTEM- Exprience - 6 months
|
871 |
+
<br>Dbms- Exprience - 6 months
|
872 |
+
<br>Management accounting- Exprience - 6 months
|
873 |
+
<br>Ecommerce- Exprience - 6 monthsCompany Details
|
874 |
+
<br>company - Valuelabs
|
875 |
+
<br>description - They will give the RRF form the required DLT then the hand over to RLT then scrum master will take the form from the RLT then scrum master will give the forms to trainee which we can work on the requirement till the candidate rece...</code> | <code>We are looking for a hardworking and self-motivated candidate who can implement strategies to maximize sales. Key responsibilities will include: <br><br>1. Sales and Customer Service: <br>Identify and develop new customers and maintain a successful relationship with them. Develop sales strategies and objectives and work with the marketing team to ensure that sales are achieved. Coordinate sales efforts with the customer service team. <br>2. Sales Administration:<br>Coordinate sales with administrative functions and maintain records. Conducting market research and analyzing data. Prepare sales forecasts and reports. <br>3. Business Management:<br>Manage customer service team, sales team and marketing team to ensure sales and customer satisfaction are met. Develop a business strategy to achieve a competitive advantage in the marketplace. <br>4. Sales Promotion:<br>Develop, maintain and execute sales promotion plans. <br>5. Sales Analysis:<br>Analyze sales performance and develop sales strategies and objectives.<br><br>Key Ski...</code> | <code>0.5287528648371803</code> |
|
876 |
+
| <code>IT SKILLS ⢠Well versed with MS Office and Internet Applications and various ERP systems implemented in the company ie.SAGE, Flotilla, LM ERP, Tally 9, WMS, Exceed 4000 etc PERSONAL DOSSIER Permanent Address: Bandra West, Mumbai 400 050Education Details
|
877 |
+
<br> B.Com commerce Mumbai, Maharashtra Bombay University
|
878 |
+
<br> Mumbai, Maharashtra St. Andrews College
|
879 |
+
<br> DIM Business Management IGNOU
|
880 |
+
<br>Operations Manager
|
881 |
+
<br>
|
882 |
+
<br>Operations Manager - Landmark Insurance Brokers Pvt Ltd
|
883 |
+
<br>Skill Details
|
884 |
+
<br>EMPLOYEE RESOURCE GROUP- Exprience - 6 months
|
885 |
+
<br>ENTERPRISE RESOURCE PLANNING- Exprience - 6 months
|
886 |
+
<br>ERP- Exprience - 6 months
|
887 |
+
<br>MS OFFICE- Exprience - 6 months
|
888 |
+
<br>Tally- Exprience - 6 monthsCompany Details
|
889 |
+
<br>company - Landmark Insurance Brokers Pvt Ltd
|
890 |
+
<br>description - Jan 2019 till Date
|
891 |
+
<br>About the Company
|
892 |
+
<br>One of India Largest Insurance Brokerage firms with offices across 24 states PAN India and a part of the LandmarkGroup with an annual turnover of 2200 cr
|
893 |
+
<br>
|
894 |
+
<br>Position: Operations Manager
|
895 |
+
<br>Leading and overseeing a...</code> | <code>⢠A company with a very strong reputation for a high performance culture and strong customer focus is looking to recruit talented and motivated individuals to work within the Customer Service Team.<br>⢠You will be responsible for handling customer enquiries and queries from a wide range of customers. You will be working with other teams within the company to ensure that customers have a seamless experience.<br>⢠Your role will be to ensure that all customers are satisfied with the service they receive from the business.<br>⢠You will be responsible for ensuring that all customer queries are handled in a timely manner to ensure that customers have a seamless experience with the business.<br>⢠This role will require you to handle a high volume of calls and emails daily.<br>⢠You will need to have a strong customer focus and be able to work in a fast paced environment.<br>⢠You will need to be able</code> | <code>0.3646167498289064</code> |
|
896 |
+
| <code>TECHNICAL STRENGTHS Computer Language Java/J2EE, Swift, HTML, Shell script, MySQL Databases MySQL Tools SVN, Jenkins, Hudson, Weblogic12c Software Android Studio, Eclipse, Oracle, Xcode Operating Systems Win 10, Mac (High Sierra) Education Details
|
897 |
+
<br>June 2016 B.E. Information Technology Goregaon, MAHARASHTRA, IN Vidyalankar Institute of Technology
|
898 |
+
<br>May 2013 Mumbai, Maharashtra Thakur Polytechnic
|
899 |
+
<br>May 2010 Mumbai, Maharashtra St. John's Universal School
|
900 |
+
<br>Java developer
|
901 |
+
<br>
|
902 |
+
<br>Java developer - Tech Mahindra
|
903 |
+
<br>Skill Details
|
904 |
+
<br>JAVA- Exprience - 21 months
|
905 |
+
<br>MYSQL- Exprience - 21 months
|
906 |
+
<br>DATABASES- Exprience - 17 months
|
907 |
+
<br>J2EE- Exprience - 17 months
|
908 |
+
<br>ANDROID- Exprience - 6 monthsCompany Details
|
909 |
+
<br>company - Tech Mahindra
|
910 |
+
<br>description - Team Size: 5
|
911 |
+
<br>Environment: Java, Mysql, Shell script.
|
912 |
+
<br>Webserver: Jenkins.
|
913 |
+
<br>Description: OR-Formatter is an application which takes the input file as Geneva Modified File GMF from Geneva server and reads the data to generate Bill backup and Bill Invoices for Clie...</code> | <code>We are looking for a Java Developer to join our growing team. We will be looking for a highly skilled developer with experience in Java/J2EE, Shell script, HTML, MYSQL, Databases, Java Tools, Android, and iOS.<br><br>TECHNICAL SKILL</code> | <code>0.5360567140232494</code> |
|
914 |
+
* Loss: [<code>CosineSimilarityLoss</code>](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#cosinesimilarityloss) with these parameters:
|
915 |
+
```json
|
916 |
+
{
|
917 |
+
"loss_fct": "torch.nn.modules.loss.MSELoss"
|
918 |
+
}
|
919 |
+
```
|
920 |
+
|
921 |
+
### Training Hyperparameters
|
922 |
+
#### Non-Default Hyperparameters
|
923 |
+
|
924 |
+
- `eval_strategy`: steps
|
925 |
+
- `per_device_train_batch_size`: 16
|
926 |
+
- `per_device_eval_batch_size`: 16
|
927 |
+
- `multi_dataset_batch_sampler`: round_robin
|
928 |
+
|
929 |
+
#### All Hyperparameters
|
930 |
+
<details><summary>Click to expand</summary>
|
931 |
+
|
932 |
+
- `overwrite_output_dir`: False
|
933 |
+
- `do_predict`: False
|
934 |
+
- `eval_strategy`: steps
|
935 |
+
- `prediction_loss_only`: True
|
936 |
+
- `per_device_train_batch_size`: 16
|
937 |
+
- `per_device_eval_batch_size`: 16
|
938 |
+
- `per_gpu_train_batch_size`: None
|
939 |
+
- `per_gpu_eval_batch_size`: None
|
940 |
+
- `gradient_accumulation_steps`: 1
|
941 |
+
- `eval_accumulation_steps`: None
|
942 |
+
- `torch_empty_cache_steps`: None
|
943 |
+
- `learning_rate`: 5e-05
|
944 |
+
- `weight_decay`: 0.0
|
945 |
+
- `adam_beta1`: 0.9
|
946 |
+
- `adam_beta2`: 0.999
|
947 |
+
- `adam_epsilon`: 1e-08
|
948 |
+
- `max_grad_norm`: 1
|
949 |
+
- `num_train_epochs`: 3
|
950 |
+
- `max_steps`: -1
|
951 |
+
- `lr_scheduler_type`: linear
|
952 |
+
- `lr_scheduler_kwargs`: {}
|
953 |
+
- `warmup_ratio`: 0.0
|
954 |
+
- `warmup_steps`: 0
|
955 |
+
- `log_level`: passive
|
956 |
+
- `log_level_replica`: warning
|
957 |
+
- `log_on_each_node`: True
|
958 |
+
- `logging_nan_inf_filter`: True
|
959 |
+
- `save_safetensors`: True
|
960 |
+
- `save_on_each_node`: False
|
961 |
+
- `save_only_model`: False
|
962 |
+
- `restore_callback_states_from_checkpoint`: False
|
963 |
+
- `no_cuda`: False
|
964 |
+
- `use_cpu`: False
|
965 |
+
- `use_mps_device`: False
|
966 |
+
- `seed`: 42
|
967 |
+
- `data_seed`: None
|
968 |
+
- `jit_mode_eval`: False
|
969 |
+
- `use_ipex`: False
|
970 |
+
- `bf16`: False
|
971 |
+
- `fp16`: False
|
972 |
+
- `fp16_opt_level`: O1
|
973 |
+
- `half_precision_backend`: auto
|
974 |
+
- `bf16_full_eval`: False
|
975 |
+
- `fp16_full_eval`: False
|
976 |
+
- `tf32`: None
|
977 |
+
- `local_rank`: 0
|
978 |
+
- `ddp_backend`: None
|
979 |
+
- `tpu_num_cores`: None
|
980 |
+
- `tpu_metrics_debug`: False
|
981 |
+
- `debug`: []
|
982 |
+
- `dataloader_drop_last`: False
|
983 |
+
- `dataloader_num_workers`: 0
|
984 |
+
- `dataloader_prefetch_factor`: None
|
985 |
+
- `past_index`: -1
|
986 |
+
- `disable_tqdm`: False
|
987 |
+
- `remove_unused_columns`: True
|
988 |
+
- `label_names`: None
|
989 |
+
- `load_best_model_at_end`: False
|
990 |
+
- `ignore_data_skip`: False
|
991 |
+
- `fsdp`: []
|
992 |
+
- `fsdp_min_num_params`: 0
|
993 |
+
- `fsdp_config`: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
|
994 |
+
- `fsdp_transformer_layer_cls_to_wrap`: None
|
995 |
+
- `accelerator_config`: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
|
996 |
+
- `deepspeed`: None
|
997 |
+
- `label_smoothing_factor`: 0.0
|
998 |
+
- `optim`: adamw_torch
|
999 |
+
- `optim_args`: None
|
1000 |
+
- `adafactor`: False
|
1001 |
+
- `group_by_length`: False
|
1002 |
+
- `length_column_name`: length
|
1003 |
+
- `ddp_find_unused_parameters`: None
|
1004 |
+
- `ddp_bucket_cap_mb`: None
|
1005 |
+
- `ddp_broadcast_buffers`: False
|
1006 |
+
- `dataloader_pin_memory`: True
|
1007 |
+
- `dataloader_persistent_workers`: False
|
1008 |
+
- `skip_memory_metrics`: True
|
1009 |
+
- `use_legacy_prediction_loop`: False
|
1010 |
+
- `push_to_hub`: False
|
1011 |
+
- `resume_from_checkpoint`: None
|
1012 |
+
- `hub_model_id`: None
|
1013 |
+
- `hub_strategy`: every_save
|
1014 |
+
- `hub_private_repo`: None
|
1015 |
+
- `hub_always_push`: False
|
1016 |
+
- `gradient_checkpointing`: False
|
1017 |
+
- `gradient_checkpointing_kwargs`: None
|
1018 |
+
- `include_inputs_for_metrics`: False
|
1019 |
+
- `include_for_metrics`: []
|
1020 |
+
- `eval_do_concat_batches`: True
|
1021 |
+
- `fp16_backend`: auto
|
1022 |
+
- `push_to_hub_model_id`: None
|
1023 |
+
- `push_to_hub_organization`: None
|
1024 |
+
- `mp_parameters`:
|
1025 |
+
- `auto_find_batch_size`: False
|
1026 |
+
- `full_determinism`: False
|
1027 |
+
- `torchdynamo`: None
|
1028 |
+
- `ray_scope`: last
|
1029 |
+
- `ddp_timeout`: 1800
|
1030 |
+
- `torch_compile`: False
|
1031 |
+
- `torch_compile_backend`: None
|
1032 |
+
- `torch_compile_mode`: None
|
1033 |
+
- `dispatch_batches`: None
|
1034 |
+
- `split_batches`: None
|
1035 |
+
- `include_tokens_per_second`: False
|
1036 |
+
- `include_num_input_tokens_seen`: False
|
1037 |
+
- `neftune_noise_alpha`: None
|
1038 |
+
- `optim_target_modules`: None
|
1039 |
+
- `batch_eval_metrics`: False
|
1040 |
+
- `eval_on_start`: False
|
1041 |
+
- `use_liger_kernel`: False
|
1042 |
+
- `eval_use_gather_object`: False
|
1043 |
+
- `average_tokens_across_devices`: False
|
1044 |
+
- `prompts`: None
|
1045 |
+
- `batch_sampler`: batch_sampler
|
1046 |
+
- `multi_dataset_batch_sampler`: round_robin
|
1047 |
+
|
1048 |
+
</details>
|
1049 |
+
|
1050 |
+
### Training Logs
|
1051 |
+
| Epoch | Step | validation_spearman_cosine |
|
1052 |
+
|:------:|:----:|:--------------------------:|
|
1053 |
+
| 1.0 | 54 | 0.8040 |
|
1054 |
+
| 1.8519 | 100 | 0.8637 |
|
1055 |
+
| 2.0 | 108 | 0.8596 |
|
1056 |
+
| 3.0 | 162 | 0.8724 |
|
1057 |
+
|
1058 |
+
|
1059 |
+
### Framework Versions
|
1060 |
+
- Python: 3.11.11
|
1061 |
+
- Sentence Transformers: 3.4.1
|
1062 |
+
- Transformers: 4.48.2
|
1063 |
+
- PyTorch: 2.5.1+cu124
|
1064 |
+
- Accelerate: 1.3.0
|
1065 |
+
- Datasets: 3.2.0
|
1066 |
+
- Tokenizers: 0.21.0
|
1067 |
+
|
1068 |
+
## Citation
|
1069 |
+
|
1070 |
+
### BibTeX
|
1071 |
+
|
1072 |
+
#### Sentence Transformers
|
1073 |
+
```bibtex
|
1074 |
+
@inproceedings{reimers-2019-sentence-bert,
|
1075 |
+
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
|
1076 |
+
author = "Reimers, Nils and Gurevych, Iryna",
|
1077 |
+
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
|
1078 |
+
month = "11",
|
1079 |
+
year = "2019",
|
1080 |
+
publisher = "Association for Computational Linguistics",
|
1081 |
+
url = "https://arxiv.org/abs/1908.10084",
|
1082 |
+
}
|
1083 |
+
```
|
1084 |
+
|
1085 |
+
<!--
|
1086 |
+
## Glossary
|
1087 |
+
|
1088 |
+
*Clearly define terms in order to be accessible across audiences.*
|
1089 |
+
-->
|
1090 |
+
|
1091 |
+
<!--
|
1092 |
+
## Model Card Authors
|
1093 |
+
|
1094 |
+
*Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
|
1095 |
+
-->
|
1096 |
+
|
1097 |
+
<!--
|
1098 |
+
## Model Card Contact
|
1099 |
+
|
1100 |
+
*Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
|
1101 |
+
-->
|
config.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "fine_tuned_sbert",
|
3 |
+
"architectures": [
|
4 |
+
"MPNetModel"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"bos_token_id": 0,
|
8 |
+
"eos_token_id": 2,
|
9 |
+
"hidden_act": "gelu",
|
10 |
+
"hidden_dropout_prob": 0.1,
|
11 |
+
"hidden_size": 768,
|
12 |
+
"initializer_range": 0.02,
|
13 |
+
"intermediate_size": 3072,
|
14 |
+
"layer_norm_eps": 1e-05,
|
15 |
+
"max_position_embeddings": 514,
|
16 |
+
"model_type": "mpnet",
|
17 |
+
"num_attention_heads": 12,
|
18 |
+
"num_hidden_layers": 12,
|
19 |
+
"pad_token_id": 1,
|
20 |
+
"relative_attention_num_buckets": 32,
|
21 |
+
"torch_dtype": "float32",
|
22 |
+
"transformers_version": "4.48.2",
|
23 |
+
"vocab_size": 30527
|
24 |
+
}
|
config_sentence_transformers.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"__version__": {
|
3 |
+
"sentence_transformers": "3.4.1",
|
4 |
+
"transformers": "4.48.2",
|
5 |
+
"pytorch": "2.5.1+cu124"
|
6 |
+
},
|
7 |
+
"prompts": {},
|
8 |
+
"default_prompt_name": null,
|
9 |
+
"similarity_fn_name": "cosine"
|
10 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2344194036596f753f64bc1fdb03961949fc3e81e49fa75f2bfd9abece05d4a9
|
3 |
+
size 437967672
|
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": 384,
|
3 |
+
"do_lower_case": false
|
4 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<s>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"cls_token": {
|
10 |
+
"content": "<s>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"eos_token": {
|
17 |
+
"content": "</s>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"mask_token": {
|
24 |
+
"content": "<mask>",
|
25 |
+
"lstrip": true,
|
26 |
+
"normalized": false,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
},
|
30 |
+
"pad_token": {
|
31 |
+
"content": "<pad>",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": false,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false
|
36 |
+
},
|
37 |
+
"sep_token": {
|
38 |
+
"content": "</s>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false
|
43 |
+
},
|
44 |
+
"unk_token": {
|
45 |
+
"content": "[UNK]",
|
46 |
+
"lstrip": false,
|
47 |
+
"normalized": false,
|
48 |
+
"rstrip": false,
|
49 |
+
"single_word": false
|
50 |
+
}
|
51 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "<s>",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"1": {
|
12 |
+
"content": "<pad>",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"2": {
|
20 |
+
"content": "</s>",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"3": {
|
28 |
+
"content": "<unk>",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": true,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"104": {
|
36 |
+
"content": "[UNK]",
|
37 |
+
"lstrip": false,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
},
|
43 |
+
"30526": {
|
44 |
+
"content": "<mask>",
|
45 |
+
"lstrip": true,
|
46 |
+
"normalized": false,
|
47 |
+
"rstrip": false,
|
48 |
+
"single_word": false,
|
49 |
+
"special": true
|
50 |
+
}
|
51 |
+
},
|
52 |
+
"bos_token": "<s>",
|
53 |
+
"clean_up_tokenization_spaces": false,
|
54 |
+
"cls_token": "<s>",
|
55 |
+
"do_lower_case": true,
|
56 |
+
"eos_token": "</s>",
|
57 |
+
"extra_special_tokens": {},
|
58 |
+
"mask_token": "<mask>",
|
59 |
+
"max_length": 128,
|
60 |
+
"model_max_length": 384,
|
61 |
+
"pad_to_multiple_of": null,
|
62 |
+
"pad_token": "<pad>",
|
63 |
+
"pad_token_type_id": 0,
|
64 |
+
"padding_side": "right",
|
65 |
+
"sep_token": "</s>",
|
66 |
+
"stride": 0,
|
67 |
+
"strip_accents": null,
|
68 |
+
"tokenize_chinese_chars": true,
|
69 |
+
"tokenizer_class": "MPNetTokenizer",
|
70 |
+
"truncation_side": "right",
|
71 |
+
"truncation_strategy": "longest_first",
|
72 |
+
"unk_token": "[UNK]"
|
73 |
+
}
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|