Nguyễn Thanh Tùng commited on
Commit
ae024d5
·
1 Parent(s): 32aeb68

Improve prompt with semantic names

Browse files
evaluation/evaluate_recommendations.py CHANGED
@@ -42,7 +42,6 @@ def recommend_mentors(base_url: str, mentee_data: Dict[str, Any]) -> List[Dict[s
42
  "goals": mentee_data.get("goals"),
43
  "career_id": mentee_data.get("career_id"),
44
  "domain_ids": mentee_data.get("domain_ids"),
45
- "mentor_domain_ids": mentee_data.get("mentor_domain_ids"),
46
  "skill_ids": mentee_data.get("skill_ids"),
47
  "top_k": 30,
48
  "final_count": 6
@@ -514,6 +513,12 @@ def main():
514
  default=1.0,
515
  help="Delay between requests in seconds"
516
  )
 
 
 
 
 
 
517
 
518
  args = parser.parse_args()
519
 
@@ -525,7 +530,12 @@ def main():
525
 
526
  print("Step 1: Loading mentees data...")
527
  mentees = load_json(args.mentees_file)
528
- print(f"Loaded {len(mentees)} mentees\n")
 
 
 
 
 
529
 
530
  print("Step 2: Evaluating recommendations...")
531
  all_results = []
 
42
  "goals": mentee_data.get("goals"),
43
  "career_id": mentee_data.get("career_id"),
44
  "domain_ids": mentee_data.get("domain_ids"),
 
45
  "skill_ids": mentee_data.get("skill_ids"),
46
  "top_k": 30,
47
  "final_count": 6
 
513
  default=1.0,
514
  help="Delay between requests in seconds"
515
  )
516
+ parser.add_argument(
517
+ "--limit",
518
+ type=int,
519
+ default=None,
520
+ help="Limit number of mentees to evaluate"
521
+ )
522
 
523
  args = parser.parse_args()
524
 
 
530
 
531
  print("Step 1: Loading mentees data...")
532
  mentees = load_json(args.mentees_file)
533
+ print(f"Loaded {len(mentees)} mentees")
534
+
535
+ if args.limit:
536
+ mentees = mentees[:args.limit]
537
+ print(f"Limiting to first {args.limit} mentees for evaluation")
538
+ print("")
539
 
540
  print("Step 2: Evaluating recommendations...")
541
  all_results = []
evaluation/synthetic_mentee_evaluation.json CHANGED
@@ -1,2776 +1,1978 @@
1
  [
2
  {
3
  "mentee_id": 1,
4
- "goals": "I want to learn about Figma UI Design, Prototyping in the fields of E-commerce.",
5
- "career_id": 4,
6
  "domain_ids": [
7
- 2
8
- ],
9
- "mentor_domain_ids": [
10
- 2
11
  ],
12
  "skill_ids": [
13
- 41,
14
- 42
 
15
  ],
16
  "ground_truth_mentors": [
17
- 9,
18
- 24,
19
- 58,
20
- 79,
21
- 99,
22
- 108,
23
- 149,
24
- 169,
25
- 294,
26
- 299,
27
- 324,
28
- 334,
29
- 349,
30
- 399,
31
- 404,
32
- 438,
33
- 463,
34
- 474
35
  ]
36
  },
37
  {
38
  "mentee_id": 2,
39
- "goals": "I want to learn about Python, SQL, Tableau in the fields of E-commerce, Fintech.",
40
- "career_id": 3,
41
  "domain_ids": [
42
- 2,
43
- 1
44
- ],
45
- "mentor_domain_ids": [
46
- 2,
47
- 1
48
  ],
49
  "skill_ids": [
50
- 31,
51
- 30,
52
- 32
53
  ],
54
  "ground_truth_mentors": [
55
- 8,
56
- 23,
57
- 148,
58
- 168,
59
- 293,
60
- 298,
61
- 323,
62
- 333,
63
- 348,
64
- 398
 
 
 
 
 
 
65
  ]
66
  },
67
  {
68
  "mentee_id": 3,
69
- "goals": "I want to learn about Risk Management, Power BI, Agile/Scrum in the fields of Product Startups.",
70
- "career_id": 6,
71
  "domain_ids": [
72
- 18
73
- ],
74
- "mentor_domain_ids": [
75
- 18
76
  ],
77
  "skill_ids": [
78
- 503,
79
- 504,
80
- 501
81
  ],
82
  "ground_truth_mentors": [
83
- 13,
84
- 40,
85
- 69,
86
- 85,
87
- 93,
88
- 120,
89
- 125,
90
- 129,
91
- 160,
92
- 173,
93
- 178,
94
- 184,
95
- 188,
96
- 203,
97
- 210,
98
- 218,
99
- 228,
100
- 233,
101
- 243,
102
- 248
103
  ]
104
  },
105
  {
106
  "mentee_id": 4,
107
- "goals": "I want to learn about Jira in the fields of Software Services.",
108
- "career_id": 6,
109
  "domain_ids": [
110
- 508
111
- ],
112
- "mentor_domain_ids": [
113
- 508
114
  ],
115
  "skill_ids": [
116
- 602
117
  ],
118
  "ground_truth_mentors": [
119
- 15,
120
- 70,
121
- 95,
122
- 124,
123
- 130,
124
- 175,
125
- 180,
126
- 185,
127
- 190,
128
- 195,
129
- 205,
130
- 220,
131
- 230,
132
- 235,
133
- 245,
134
- 250,
135
- 255,
136
- 260,
137
- 265,
138
- 279
139
  ]
140
  },
141
  {
142
  "mentee_id": 5,
143
- "goals": "I want to learn about User Research, Figma/Adobe XD in the fields of Banking.",
144
- "career_id": 6,
145
  "domain_ids": [
146
- 210
147
- ],
148
- "mentor_domain_ids": [
149
- 210
150
  ],
151
  "skill_ids": [
152
- 114,
153
- 113
154
  ],
155
  "ground_truth_mentors": [
156
- 5,
157
- 20,
158
- 29,
159
- 34,
160
- 45,
161
- 50,
162
- 54,
163
- 65,
164
- 89,
165
- 115,
166
- 140,
167
- 145,
168
- 164,
169
- 200,
170
- 215,
171
- 239,
172
- 269,
173
- 305,
174
- 320,
175
- 329
176
  ]
177
  },
178
  {
179
  "mentee_id": 6,
180
- "goals": "I want to learn about Content Strategy, Data Tracking in the fields of Retail Tech.",
181
- "career_id": 2,
182
  "domain_ids": [
183
- 12
184
- ],
185
- "mentor_domain_ids": [
186
- 12
187
  ],
188
  "skill_ids": [
189
- 203,
190
- 204
191
  ],
192
  "ground_truth_mentors": [
193
- 12,
194
- 37,
195
- 67,
196
- 82,
197
- 92,
198
- 117,
199
- 122,
200
- 128,
201
- 157,
202
- 172,
203
- 177,
204
- 182,
205
- 187,
206
- 192,
207
- 202,
208
- 207,
209
- 217,
210
- 227,
211
- 232,
212
- 242
213
  ]
214
  },
215
  {
216
  "mentee_id": 7,
217
- "goals": "I want to learn about SQL, User Research, Design Systems in the fields of E-commerce.",
218
- "career_id": 1,
219
  "domain_ids": [
220
- 2
221
- ],
222
- "mentor_domain_ids": [
223
- 2
224
  ],
225
  "skill_ids": [
226
- 13,
227
- 10,
228
- 12
229
  ],
230
  "ground_truth_mentors": [
231
- 6,
232
- 21,
233
- 56,
234
- 73,
235
- 76,
236
- 96,
237
- 104,
238
- 106,
239
- 133,
240
- 146,
241
- 154,
242
- 166,
243
- 224,
244
- 291,
245
- 296,
246
- 321,
247
- 331,
248
- 346,
249
- 393,
250
- 396
251
  ]
252
  },
253
  {
254
  "mentee_id": 8,
255
- "goals": "I want to learn about Content Strategy in the fields of Retail, FMCG.",
256
- "career_id": 2,
257
  "domain_ids": [
258
- 204,
259
- 203
260
- ],
261
- "mentor_domain_ids": [
262
- 204,
263
- 203
264
  ],
265
  "skill_ids": [
266
- 106
 
267
  ],
268
  "ground_truth_mentors": [
269
- 2,
270
- 17,
271
- 27,
272
- 32,
273
- 42,
274
- 47,
275
- 52,
276
- 62,
277
- 87,
278
- 112,
279
- 137,
280
- 142,
281
- 162,
282
- 197,
283
- 212,
284
- 237,
285
- 267,
286
- 302,
287
- 317,
288
- 327
289
  ]
290
  },
291
  {
292
  "mentee_id": 9,
293
- "goals": "I want to learn about Risk Management, Stakeholder Management in the fields of Logistics, Digital Banking.",
294
- "career_id": 5,
295
  "domain_ids": [
296
- 10,
297
- 13
298
- ],
299
- "mentor_domain_ids": [
300
- 10,
301
- 13
302
  ],
303
  "skill_ids": [
304
- 503,
305
- 502
306
  ],
307
  "ground_truth_mentors": [
308
- 13,
309
- 40,
310
- 69,
311
- 85,
312
- 93,
313
- 120,
314
- 125,
315
- 129,
316
- 160,
317
- 173,
318
- 178,
319
- 184,
320
- 188,
321
- 203,
322
- 210,
323
- 218,
324
- 228,
325
- 233,
326
- 243,
327
- 248
328
  ]
329
  },
330
  {
331
  "mentee_id": 10,
332
- "goals": "I want to learn about Tableau in the fields of IT Services.",
333
- "career_id": 4,
334
  "domain_ids": [
335
- 16
 
336
  ],
337
- "mentor_domain_ids": [
338
- 16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
339
  ],
340
  "skill_ids": [
341
- 403
342
  ],
343
  "ground_truth_mentors": [
344
- 14,
345
  39,
346
- 68,
347
- 84,
348
- 94,
349
- 119,
350
- 123,
351
- 127,
352
  159,
353
  174,
354
- 179,
355
- 183,
356
  189,
357
- 194,
358
- 204,
359
- 209,
360
  219,
361
- 229,
362
- 234,
363
- 244
 
364
  ]
365
  },
366
  {
367
- "mentee_id": 11,
368
- "goals": "I want to learn about User Research in the fields of Fintech.",
369
  "career_id": 4,
370
  "domain_ids": [
371
- 1
372
- ],
373
- "mentor_domain_ids": [
374
- 1
375
  ],
376
  "skill_ids": [
377
- 10
 
 
378
  ],
379
  "ground_truth_mentors": [
380
- 6,
381
- 21,
382
- 56,
383
- 73,
384
- 76,
385
- 96,
386
- 104,
387
- 106,
388
- 133,
389
- 146,
390
- 154,
391
- 166,
392
- 224,
393
- 291,
394
- 296,
395
- 321,
396
- 331,
397
- 346,
398
- 393,
399
- 396
400
  ]
401
  },
402
  {
403
- "mentee_id": 12,
404
- "goals": "I want to learn about Growth Hacking in the fields of Tiêu dùng nhanh.",
405
- "career_id": 2,
406
  "domain_ids": [
407
- 21
408
- ],
409
- "mentor_domain_ids": [
410
- 21
411
  ],
412
  "skill_ids": [
413
- 202
414
  ],
415
  "ground_truth_mentors": [
416
- 12,
417
- 37,
418
- 67,
419
- 82,
420
- 92,
421
- 117,
422
- 122,
423
- 128,
424
- 157,
425
- 172,
426
- 177,
427
- 182,
428
- 187,
429
- 192,
430
- 202,
431
- 207,
432
- 217,
433
- 227,
434
- 232,
435
- 242
436
  ]
437
  },
438
  {
439
- "mentee_id": 13,
440
- "goals": "I want to learn about Agile/Scrum, Risk Management, Stakeholder Management in the fields of Sản xuất, Sản xuất.",
441
- "career_id": 5,
442
  "domain_ids": [
443
- 52,
444
- 51
445
- ],
446
- "mentor_domain_ids": [
447
- 52,
448
- 51
449
  ],
450
  "skill_ids": [
451
- 501,
452
- 503,
453
- 502
454
  ],
455
  "ground_truth_mentors": [
456
- 13,
457
- 40,
458
- 69,
459
- 85,
460
- 93,
461
- 120,
462
- 125,
463
- 129,
464
- 160,
465
- 173,
466
- 178,
467
- 184,
468
- 188,
469
- 203,
470
- 210,
471
- 218,
472
- 228,
473
- 233,
474
- 243,
475
- 248
476
  ]
477
  },
478
  {
479
- "mentee_id": 14,
480
- "goals": "I want to learn about Tableau in the fields of Technology.",
481
  "career_id": 4,
482
  "domain_ids": [
483
- 8
484
- ],
485
- "mentor_domain_ids": [
486
- 8
487
  ],
488
  "skill_ids": [
489
  403
490
  ],
491
  "ground_truth_mentors": [
492
- 14,
493
- 39,
494
- 68,
495
- 84,
496
- 94,
497
- 119,
498
- 123,
499
- 127,
500
- 159,
501
- 174,
502
  179,
503
- 183,
504
- 189,
505
- 194,
506
  204,
507
- 209,
508
- 219,
509
- 229,
510
- 234,
511
- 244
512
  ]
513
  },
514
  {
515
- "mentee_id": 15,
516
- "goals": "I want to learn about Machine Learning, Python/R, Tableau/Power BI in the fields of Edtech.",
517
- "career_id": 4,
518
  "domain_ids": [
519
- 207
520
- ],
521
- "mentor_domain_ids": [
522
- 207
523
  ],
524
  "skill_ids": [
525
- 112,
526
- 110,
527
- 111
528
  ],
529
  "ground_truth_mentors": [
530
- 4,
531
- 19,
532
- 28,
533
- 33,
534
- 44,
535
- 49,
536
- 53,
537
- 64,
538
- 88,
539
- 114,
540
- 139,
541
- 144,
542
- 163,
543
- 199,
544
- 214,
545
- 238,
546
- 268,
547
- 304,
548
- 319,
549
- 328
550
  ]
551
  },
552
  {
553
- "mentee_id": 16,
554
- "goals": "I want to learn about User Research, Design Systems, Wireframing in the fields of E-commerce.",
555
- "career_id": 1,
556
  "domain_ids": [
557
- 2
558
- ],
559
- "mentor_domain_ids": [
560
- 2
561
  ],
562
  "skill_ids": [
563
- 10,
564
  12,
565
- 11
566
  ],
567
  "ground_truth_mentors": [
568
  6,
569
  21,
570
  56,
571
- 73,
572
  76,
573
  96,
574
  104,
575
  106,
576
  133,
577
  146,
578
- 154,
579
  166,
580
- 224,
581
  291,
582
  296,
583
  321,
584
  331,
585
  346,
586
  393,
587
- 396
 
 
 
588
  ]
589
  },
590
  {
591
- "mentee_id": 17,
592
- "goals": "I want to learn about Design Thinking in the fields of SaaS, Mobile Apps.",
593
- "career_id": 3,
594
  "domain_ids": [
595
- 5,
596
- 6
597
- ],
598
- "mentor_domain_ids": [
599
- 5,
600
- 6
601
  ],
602
  "skill_ids": [
603
- 303
 
604
  ],
605
  "ground_truth_mentors": [
606
- 38,
607
- 83,
608
- 118,
609
- 158,
610
- 193,
611
- 208,
612
- 283,
613
- 308,
614
- 313,
615
- 373,
616
- 383,
617
- 423,
618
- 443,
619
- 503
620
  ]
621
  },
622
  {
623
- "mentee_id": 18,
624
- "goals": "I want to learn about Power BI, Stakeholder Management in the fields of Fintech.",
625
- "career_id": 5,
626
  "domain_ids": [
627
- 501
628
- ],
629
- "mentor_domain_ids": [
630
- 501
631
  ],
632
  "skill_ids": [
633
- 504,
634
- 502
635
  ],
636
  "ground_truth_mentors": [
637
- 13,
638
- 40,
639
- 69,
640
- 85,
641
- 93,
642
- 120,
643
- 125,
644
- 129,
645
- 160,
646
- 173,
647
- 178,
648
- 184,
649
- 188,
650
- 203,
651
- 210,
652
- 218,
653
- 228,
654
- 233,
655
- 243,
656
- 248
657
  ]
658
  },
659
  {
660
- "mentee_id": 19,
661
- "goals": "I want to learn about Figma/Adobe XD in the fields of IT Outsourcing.",
662
- "career_id": 7,
663
  "domain_ids": [
664
- 209
665
- ],
666
- "mentor_domain_ids": [
667
- 209
668
  ],
669
  "skill_ids": [
670
- 113
 
 
671
  ],
672
  "ground_truth_mentors": [
673
- 5,
674
- 20,
675
- 29,
676
- 34,
677
- 45,
678
- 50,
679
- 54,
680
- 65,
681
- 89,
682
- 115,
683
- 140,
684
- 145,
685
- 164,
686
- 200,
687
- 215,
688
- 239,
689
- 269,
690
- 305,
691
- 320,
692
- 329
693
  ]
694
  },
695
  {
696
- "mentee_id": 20,
697
- "goals": "I want to learn about System Design, Kubernetes in the fields of Fintech, Thương mại điện tử.",
698
- "career_id": 1,
699
  "domain_ids": [
700
- 201,
701
- 202
702
- ],
703
- "mentor_domain_ids": [
704
- 201,
705
- 202
706
  ],
707
  "skill_ids": [
708
- 103,
709
  104
710
  ],
711
  "ground_truth_mentors": [
712
- 1,
713
  2,
714
- 11,
715
- 16,
716
- 17,
717
- 26,
718
- 31,
719
- 36,
720
- 41,
721
  42,
722
- 46,
723
  47,
724
- 51,
725
- 61,
726
  62,
727
- 66,
728
- 81,
729
- 86,
730
- 91,
731
- 111
 
 
 
 
 
 
 
 
 
 
732
  ]
733
  },
734
  {
735
- "mentee_id": 21,
736
- "goals": "I want to learn about Kubernetes, SEO/SEM in the fields of Retail, FMCG.",
737
  "career_id": 2,
738
  "domain_ids": [
739
- 204,
740
- 203
741
- ],
742
- "mentor_domain_ids": [
743
- 204,
744
  203
745
  ],
746
  "skill_ids": [
747
- 104,
748
  105
749
  ],
750
  "ground_truth_mentors": [
751
  2,
752
- 11,
753
- 17,
754
- 26,
755
  27,
756
- 31,
757
  32,
758
  42,
759
  47,
760
- 51,
761
  52,
762
  62,
763
- 81,
764
- 86,
765
  87,
766
  112,
767
- 116,
768
  137,
769
  142,
770
- 161
 
 
 
 
 
 
 
 
771
  ]
772
  },
773
  {
774
- "mentee_id": 22,
775
- "goals": "I want to learn about Figma/Adobe XD in the fields of Edtech, Healthtech.",
776
- "career_id": 4,
777
  "domain_ids": [
778
- 207,
779
- 208
780
- ],
781
- "mentor_domain_ids": [
782
- 207,
783
- 208
784
  ],
785
  "skill_ids": [
786
- 113
 
787
  ],
788
  "ground_truth_mentors": [
789
- 5,
790
- 20,
791
- 29,
792
- 34,
793
- 45,
794
- 50,
795
- 54,
796
- 65,
797
- 89,
798
- 115,
799
- 140,
800
- 145,
801
- 164,
802
- 200,
803
- 215,
804
- 239,
805
- 269,
806
- 305,
807
- 320,
808
- 329
809
  ]
810
  },
811
  {
812
- "mentee_id": 23,
813
- "goals": "I want to learn about SEO/SEM, Kubernetes in the fields of Retail.",
814
  "career_id": 2,
815
  "domain_ids": [
816
  204
817
  ],
818
- "mentor_domain_ids": [
819
- 204
820
- ],
821
  "skill_ids": [
822
  105,
 
823
  104
824
  ],
825
  "ground_truth_mentors": [
826
  2,
827
- 11,
828
- 17,
829
- 26,
830
  27,
831
- 31,
832
  32,
833
- 42,
834
  47,
835
- 51,
836
  52,
837
  62,
838
- 81,
839
- 86,
840
  87,
841
  112,
842
- 116,
843
- 137,
844
  142,
845
- 161
846
- ]
847
- },
848
- {
849
- "mentee_id": 24,
850
- "goals": "I want to learn about Design Systems in the fields of E-commerce.",
851
- "career_id": 1,
852
- "domain_ids": [
853
- 2
854
- ],
855
- "mentor_domain_ids": [
856
- 2
857
- ],
858
- "skill_ids": [
859
- 12
860
- ],
861
- "ground_truth_mentors": [
862
- 6,
863
- 21,
864
- 56,
865
- 73,
866
- 76,
867
- 96,
868
- 104,
869
- 106,
870
- 133,
871
- 146,
872
- 154,
873
- 166,
874
- 224,
875
- 291,
876
- 296,
877
- 321,
878
- 331,
879
- 346,
880
- 393,
881
- 396
882
  ]
883
  },
884
  {
885
  "mentee_id": 25,
886
- "goals": "I want to learn about Brand Strategy, Google Analytics, SEO/SEM in the fields of Retail, FMCG.",
887
- "career_id": 2,
888
  "domain_ids": [
889
- 3,
890
- 4
891
- ],
892
- "mentor_domain_ids": [
893
- 3,
894
- 4
895
  ],
896
  "skill_ids": [
897
- 22,
898
- 23,
899
- 21
900
  ],
901
  "ground_truth_mentors": [
902
- 7,
903
- 22,
904
- 57,
905
- 77,
906
- 97,
907
- 107,
908
- 147,
909
- 167,
910
- 292,
911
- 297,
912
- 322,
913
- 332,
914
- 347,
915
- 397,
916
- 402,
917
- 437,
918
- 462,
919
- 472
920
  ]
921
  },
922
  {
923
  "mentee_id": 26,
924
- "goals": "I want to learn about Content Strategy, Google Ads in the fields of Retail, FMCG.",
925
- "career_id": 2,
926
  "domain_ids": [
927
- 3,
928
- 4
929
- ],
930
- "mentor_domain_ids": [
931
- 3,
932
- 4
933
  ],
934
  "skill_ids": [
935
- 6,
936
- 5
937
  ],
938
  "ground_truth_mentors": [
939
- 72,
940
- 102,
941
- 132,
942
- 152,
943
- 222,
944
- 392,
945
- 467,
946
- 497
947
  ]
948
  },
949
  {
950
  "mentee_id": 27,
951
- "goals": "I want to learn about Machine Learning, Python/SQL in the fields of Banking.",
952
- "career_id": 5,
953
  "domain_ids": [
954
- 7
955
- ],
956
- "mentor_domain_ids": [
957
- 7
958
  ],
959
  "skill_ids": [
960
- 51,
961
- 50
 
962
  ],
963
  "ground_truth_mentors": [
964
- 10,
965
- 25,
966
- 59,
967
- 78,
968
- 98,
969
- 109,
970
- 150,
971
- 170,
972
- 295,
973
- 300,
974
- 325,
975
- 335,
976
- 350,
977
- 400,
978
- 403,
979
- 440,
980
- 465,
981
- 473
982
  ]
983
  },
984
  {
985
  "mentee_id": 28,
986
- "goals": "I want to learn about Risk Management, Stakeholder Management in the fields of Mobile Apps, SaaS.",
987
  "career_id": 5,
988
  "domain_ids": [
989
- 6,
990
- 5
991
- ],
992
- "mentor_domain_ids": [
993
- 6,
994
- 5
995
  ],
996
  "skill_ids": [
997
- 503,
998
- 502
 
999
  ],
1000
  "ground_truth_mentors": [
1001
- 13,
1002
- 40,
1003
- 69,
1004
- 85,
1005
- 93,
1006
- 120,
1007
- 125,
1008
- 129,
1009
- 160,
1010
- 173,
1011
- 178,
1012
- 184,
1013
- 188,
1014
- 203,
1015
- 210,
1016
- 218,
1017
- 228,
1018
- 233,
1019
- 243,
1020
- 248
1021
  ]
1022
  },
1023
  {
1024
  "mentee_id": 29,
1025
- "goals": "I want to learn about Content Strategy, SEO/SEM, Growth Hacking in the fields of FMCG, Retail.",
1026
  "career_id": 2,
1027
  "domain_ids": [
1028
- 4,
1029
- 3
1030
- ],
1031
- "mentor_domain_ids": [
1032
- 4,
1033
- 3
1034
  ],
1035
  "skill_ids": [
1036
- 203,
1037
- 201,
1038
- 202
1039
  ],
1040
  "ground_truth_mentors": [
1041
- 12,
1042
- 37,
1043
- 67,
1044
- 82,
1045
- 92,
1046
- 117,
1047
- 122,
1048
- 128,
1049
- 157,
1050
- 172,
1051
- 177,
1052
- 182,
1053
- 187,
1054
- 192,
1055
- 202,
1056
- 207,
1057
- 217,
1058
- 227,
1059
- 232,
1060
- 242
1061
  ]
1062
  },
1063
  {
1064
  "mentee_id": 30,
1065
- "goals": "I want to learn about Wireframing, User Research, Design Systems in the fields of FMCG.",
1066
- "career_id": 3,
1067
  "domain_ids": [
1068
- 14
1069
- ],
1070
- "mentor_domain_ids": [
1071
- 14
1072
  ],
1073
  "skill_ids": [
1074
- 11,
1075
- 10,
1076
- 12
1077
  ],
1078
  "ground_truth_mentors": [
1079
- 6,
1080
- 21,
1081
- 56,
1082
- 73,
1083
- 76,
1084
- 96,
1085
- 104,
1086
- 106,
1087
- 133,
1088
- 146,
1089
- 154,
1090
- 166,
1091
- 224,
1092
- 291,
1093
- 296,
1094
- 321,
1095
- 331,
1096
- 346,
1097
- 393,
1098
- 396
1099
  ]
1100
  },
1101
  {
1102
  "mentee_id": 31,
1103
- "goals": "I want to learn about Design Systems, User Research, Wireframing in the fields of Fintech, E-commerce.",
1104
- "career_id": 1,
1105
  "domain_ids": [
1106
- 1,
1107
- 2
1108
- ],
1109
- "mentor_domain_ids": [
1110
- 1,
1111
- 2
1112
  ],
1113
  "skill_ids": [
1114
- 12,
1115
- 10,
1116
- 11
1117
  ],
1118
  "ground_truth_mentors": [
1119
- 6,
1120
- 21,
1121
- 56,
1122
- 73,
1123
- 76,
1124
- 96,
1125
- 104,
1126
- 106,
1127
- 133,
1128
- 146,
1129
- 154,
1130
- 166,
1131
- 224,
1132
- 291,
1133
- 296,
1134
- 321,
1135
- 331,
1136
- 346,
1137
- 393,
1138
- 396
1139
  ]
1140
  },
1141
  {
1142
  "mentee_id": 32,
1143
- "goals": "I want to learn about Power BI, Agile/Scrum, Risk Management in the fields of Product Startups.",
1144
- "career_id": 6,
1145
  "domain_ids": [
1146
- 18
1147
- ],
1148
- "mentor_domain_ids": [
1149
- 18
1150
  ],
1151
  "skill_ids": [
1152
- 504,
1153
- 501,
1154
- 503
1155
  ],
1156
  "ground_truth_mentors": [
1157
- 13,
1158
- 40,
1159
- 69,
1160
- 85,
1161
- 93,
1162
- 120,
1163
- 125,
1164
- 129,
1165
- 160,
1166
- 173,
1167
- 178,
1168
- 184,
1169
- 188,
1170
- 203,
1171
- 210,
1172
- 218,
1173
- 228,
1174
- 233,
1175
- 243,
1176
- 248
1177
  ]
1178
  },
1179
  {
1180
  "mentee_id": 33,
1181
- "goals": "I want to learn about Node.js, React.js, Kubernetes in the fields of Thương mại điện tử, Fintech.",
1182
- "career_id": 1,
1183
  "domain_ids": [
1184
- 202,
1185
- 201
1186
- ],
1187
- "mentor_domain_ids": [
1188
- 202,
1189
- 201
1190
  ],
1191
  "skill_ids": [
1192
- 102,
1193
- 101,
1194
- 104
1195
  ],
1196
  "ground_truth_mentors": [
1197
- 1,
1198
- 11,
1199
- 16,
1200
- 26,
1201
- 31,
1202
- 36,
1203
- 41,
1204
- 46,
1205
- 51,
1206
- 61,
1207
- 66,
1208
- 81,
1209
- 86,
1210
- 91,
1211
- 111,
1212
- 116,
1213
- 121,
1214
- 126,
1215
- 136,
1216
- 141
1217
  ]
1218
  },
1219
  {
1220
  "mentee_id": 34,
1221
- "goals": "I want to learn about Tableau/Power BI, Python/R, Machine Learning in the fields of Fintech, SaaS.",
1222
- "career_id": 5,
1223
  "domain_ids": [
1224
- 201,
1225
- 206
1226
- ],
1227
- "mentor_domain_ids": [
1228
- 201,
1229
- 206
1230
  ],
1231
  "skill_ids": [
1232
- 111,
1233
- 110,
1234
- 112
1235
  ],
1236
  "ground_truth_mentors": [
1237
- 4,
1238
- 19,
1239
- 28,
1240
- 33,
1241
- 44,
1242
- 49,
1243
- 53,
1244
- 64,
1245
- 88,
1246
- 114,
1247
- 139,
1248
- 144,
1249
- 163,
1250
- 199,
1251
- 214,
1252
- 238,
1253
- 268,
1254
- 304,
1255
- 319,
1256
- 328
1257
  ]
1258
  },
1259
  {
1260
  "mentee_id": 35,
1261
- "goals": "I want to learn about Data Analytics, SQL in the fields of Logistics, SaaS.",
1262
- "career_id": 4,
1263
  "domain_ids": [
1264
- 205,
1265
- 206
1266
- ],
1267
- "mentor_domain_ids": [
1268
- 205,
1269
- 206
1270
  ],
1271
  "skill_ids": [
1272
- 107,
1273
- 109
1274
  ],
1275
  "ground_truth_mentors": [
1276
- 3,
1277
- 18,
1278
- 27,
1279
- 28,
1280
- 32,
1281
- 33,
1282
- 43,
1283
- 48,
1284
- 52,
1285
- 53,
1286
- 63,
1287
- 87,
1288
- 88,
1289
- 113,
1290
- 138,
1291
- 143,
1292
- 162,
1293
- 163,
1294
- 198,
1295
- 213
1296
  ]
1297
  },
1298
  {
1299
  "mentee_id": 36,
1300
- "goals": "I want to learn about React.js in the fields of Fintech.",
1301
- "career_id": 1,
1302
  "domain_ids": [
1303
- 201
1304
- ],
1305
- "mentor_domain_ids": [
1306
- 201
1307
  ],
1308
  "skill_ids": [
1309
- 101
 
 
1310
  ],
1311
  "ground_truth_mentors": [
1312
- 1,
1313
- 11,
1314
- 16,
1315
- 26,
1316
- 31,
1317
- 36,
1318
- 41,
1319
- 46,
1320
- 51,
1321
- 61,
1322
- 66,
1323
- 81,
1324
- 86,
1325
- 91,
1326
- 111,
1327
- 116,
1328
- 121,
1329
- 126,
1330
- 136,
1331
- 141
1332
  ]
1333
  },
1334
  {
1335
  "mentee_id": 37,
1336
- "goals": "I want to learn about Python, SQL in the fields of Mobile Apps.",
1337
- "career_id": 4,
1338
  "domain_ids": [
1339
- 6
1340
- ],
1341
- "mentor_domain_ids": [
1342
- 6
1343
  ],
1344
  "skill_ids": [
1345
- 402,
1346
- 401
 
1347
  ],
1348
  "ground_truth_mentors": [
1349
- 14,
1350
- 39,
1351
- 68,
1352
- 84,
1353
- 94,
1354
- 119,
1355
- 123,
1356
- 127,
1357
- 159,
1358
- 174,
1359
- 179,
1360
- 183,
1361
- 189,
1362
- 194,
1363
- 204,
1364
- 209,
1365
- 219,
1366
- 229,
1367
- 234,
1368
- 244
1369
  ]
1370
  },
1371
  {
1372
  "mentee_id": 38,
1373
- "goals": "I want to learn about Machine Learning, Data Visualization in the fields of SaaS, Mobile Apps.",
1374
- "career_id": 5,
1375
  "domain_ids": [
1376
- 5,
1377
- 6
1378
- ],
1379
- "mentor_domain_ids": [
1380
- 5,
1381
- 6
1382
  ],
1383
  "skill_ids": [
1384
- 51,
1385
- 52
 
1386
  ],
1387
  "ground_truth_mentors": [
1388
- 10,
1389
- 25,
1390
- 59,
1391
- 78,
1392
- 98,
1393
- 109,
1394
- 150,
1395
- 170,
1396
- 295,
1397
- 300,
1398
- 325,
1399
- 335,
1400
- 350,
1401
- 400,
1402
- 403,
1403
- 440,
1404
- 465,
1405
- 473
1406
  ]
1407
  },
1408
  {
1409
  "mentee_id": 39,
1410
- "goals": "I want to learn about SQL in the fields of Banking.",
1411
- "career_id": 4,
1412
  "domain_ids": [
1413
- 7
1414
- ],
1415
- "mentor_domain_ids": [
1416
- 7
1417
  ],
1418
  "skill_ids": [
1419
- 401
1420
  ],
1421
  "ground_truth_mentors": [
1422
- 14,
1423
- 39,
1424
- 68,
1425
- 84,
1426
- 94,
1427
- 119,
1428
- 123,
1429
- 127,
1430
- 159,
1431
- 174,
1432
- 179,
1433
- 183,
1434
- 189,
1435
- 194,
1436
- 204,
1437
- 209,
1438
- 219,
1439
- 229,
1440
- 234,
1441
- 244
1442
  ]
1443
  },
1444
  {
1445
  "mentee_id": 40,
1446
- "goals": "I want to learn about Risk Management in the fields of Advertising, Banking Systems.",
1447
- "career_id": 6,
1448
  "domain_ids": [
1449
- 15,
1450
- 17
1451
- ],
1452
- "mentor_domain_ids": [
1453
- 15,
1454
- 17
1455
  ],
1456
  "skill_ids": [
1457
- 603
1458
  ],
1459
  "ground_truth_mentors": [
1460
- 15,
1461
- 70,
1462
- 95,
1463
- 124,
1464
- 130,
1465
- 175,
1466
- 180,
1467
- 185,
1468
- 190,
1469
- 195,
1470
- 205,
1471
- 220,
1472
- 230,
1473
- 235,
1474
- 245,
1475
- 250,
1476
- 255,
1477
- 260,
1478
- 265,
1479
- 279
1480
  ]
1481
  },
1482
  {
1483
  "mentee_id": 41,
1484
- "goals": "I want to learn about Risk Management, Agile/Scrum in the fields of Logistics, Bán lẻ.",
1485
- "career_id": 5,
1486
  "domain_ids": [
1487
- 41,
1488
- 40
1489
- ],
1490
- "mentor_domain_ids": [
1491
- 41,
1492
- 40
1493
  ],
1494
  "skill_ids": [
1495
- 503,
1496
- 501
1497
  ],
1498
  "ground_truth_mentors": [
1499
- 13,
1500
- 40,
1501
- 69,
1502
- 85,
1503
- 93,
1504
- 120,
1505
- 125,
1506
- 129,
1507
- 160,
1508
- 173,
1509
- 178,
1510
- 184,
1511
- 188,
1512
- 203,
1513
- 210,
1514
- 218,
1515
- 228,
1516
- 233,
1517
- 243,
1518
- 248
1519
  ]
1520
  },
1521
  {
1522
  "mentee_id": 42,
1523
- "goals": "I want to learn about Data Visualization in the fields of vấn chiến lược.",
1524
- "career_id": 5,
1525
  "domain_ids": [
1526
- 110
1527
- ],
1528
- "mentor_domain_ids": [
1529
- 110
1530
  ],
1531
  "skill_ids": [
1532
- 52
 
1533
  ],
1534
  "ground_truth_mentors": [
1535
- 10,
1536
- 25,
1537
- 59,
1538
- 78,
1539
- 98,
1540
- 109,
1541
- 150,
1542
- 170,
1543
- 295,
1544
- 300,
1545
- 325,
1546
- 335,
1547
- 350,
1548
- 400,
1549
- 403,
1550
- 440,
1551
- 465,
1552
- 473
1553
  ]
1554
  },
1555
  {
1556
  "mentee_id": 43,
1557
- "goals": "I want to learn about Risk Management, Agile/Scrum, Stakeholder Management in the fields of Logistics, SaaS.",
1558
- "career_id": 5,
1559
  "domain_ids": [
1560
- 506,
1561
- 507
1562
- ],
1563
- "mentor_domain_ids": [
1564
- 506,
1565
- 507
1566
  ],
1567
  "skill_ids": [
1568
- 503,
1569
- 501,
1570
- 502
1571
  ],
1572
  "ground_truth_mentors": [
1573
- 13,
1574
- 40,
1575
- 69,
1576
- 85,
1577
- 93,
1578
- 120,
1579
- 125,
1580
- 129,
1581
- 160,
1582
- 173,
1583
- 178,
1584
- 184,
1585
- 188,
1586
- 203,
1587
- 210,
1588
- 218,
1589
- 228,
1590
- 233,
1591
- 243,
1592
- 248
1593
  ]
1594
  },
1595
  {
1596
  "mentee_id": 44,
1597
- "goals": "I want to learn about Node.js, React.js in the fields of Fintech, Thương mại điện tử.",
1598
- "career_id": 1,
1599
  "domain_ids": [
1600
- 201,
1601
- 202
1602
- ],
1603
- "mentor_domain_ids": [
1604
- 201,
1605
- 202
1606
  ],
1607
  "skill_ids": [
1608
- 102,
1609
- 101
1610
  ],
1611
  "ground_truth_mentors": [
1612
- 1,
1613
- 11,
1614
- 16,
1615
- 26,
1616
- 31,
1617
- 36,
1618
- 41,
1619
- 46,
1620
- 51,
1621
- 61,
1622
- 66,
1623
- 81,
1624
- 86,
1625
- 91,
1626
- 111,
1627
- 116,
1628
- 121,
1629
- 126,
1630
- 136,
1631
- 141
1632
  ]
1633
  },
1634
  {
1635
  "mentee_id": 45,
1636
- "goals": "I want to learn about Node.js, React.js, System Design in the fields of Fintech.",
1637
- "career_id": 1,
1638
  "domain_ids": [
1639
- 201
 
 
 
 
 
 
1640
  ],
1641
- "mentor_domain_ids": [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1642
  201
1643
  ],
1644
  "skill_ids": [
1645
- 102,
1646
  101,
1647
- 103
 
1648
  ],
1649
  "ground_truth_mentors": [
1650
  1,
1651
  11,
1652
- 16,
1653
  26,
1654
  31,
1655
- 36,
1656
  41,
1657
  46,
1658
  51,
1659
  61,
1660
- 66,
1661
- 81,
1662
  86,
1663
- 91,
1664
  111,
1665
- 116,
1666
- 121,
1667
- 126,
1668
  136,
1669
- 141
1670
- ]
1671
- },
1672
- {
1673
- "mentee_id": 46,
1674
- "goals": "I want to learn about Figma/Adobe XD in the fields of Fintech, Healthtech.",
1675
- "career_id": 6,
1676
- "domain_ids": [
1677
- 201,
1678
- 208
1679
- ],
1680
- "mentor_domain_ids": [
1681
- 201,
1682
- 208
1683
- ],
1684
- "skill_ids": [
1685
- 113
1686
- ],
1687
- "ground_truth_mentors": [
1688
- 5,
1689
- 20,
1690
- 29,
1691
- 34,
1692
- 45,
1693
- 50,
1694
- 54,
1695
- 65,
1696
- 89,
1697
- 115,
1698
- 140,
1699
- 145,
1700
- 164,
1701
- 200,
1702
- 215,
1703
- 239,
1704
- 269,
1705
- 305,
1706
- 320,
1707
- 329
1708
  ]
1709
  },
1710
  {
1711
  "mentee_id": 47,
1712
- "goals": "I want to learn about SEO/SEM, Growth Hacking, Content Strategy in the fields of Retail Tech.",
1713
- "career_id": 2,
1714
  "domain_ids": [
1715
- 12
1716
- ],
1717
- "mentor_domain_ids": [
1718
- 12
1719
  ],
1720
  "skill_ids": [
1721
- 201,
1722
- 202,
1723
- 203
1724
  ],
1725
  "ground_truth_mentors": [
1726
- 12,
1727
- 37,
1728
- 67,
1729
- 82,
1730
- 92,
1731
- 117,
1732
- 122,
1733
- 128,
1734
- 157,
1735
- 172,
1736
- 177,
1737
- 182,
1738
- 187,
1739
- 192,
1740
- 202,
1741
- 207,
1742
- 217,
1743
- 227,
1744
- 232,
1745
- 242
1746
  ]
1747
  },
1748
  {
1749
  "mentee_id": 48,
1750
- "goals": "I want to learn about Design Systems, Wireframing in the fields of E-commerce.",
1751
  "career_id": 1,
1752
  "domain_ids": [
1753
- 2
1754
- ],
1755
- "mentor_domain_ids": [
1756
- 2
1757
  ],
1758
  "skill_ids": [
1759
- 12,
1760
- 11
 
1761
  ],
1762
  "ground_truth_mentors": [
1763
- 6,
1764
- 21,
1765
- 56,
1766
- 73,
1767
- 76,
1768
- 96,
1769
- 104,
1770
- 106,
1771
- 133,
1772
- 146,
1773
- 154,
1774
- 166,
1775
- 224,
1776
- 291,
1777
- 296,
1778
- 321,
1779
- 331,
1780
- 346,
1781
- 393,
1782
- 396
1783
  ]
1784
  },
1785
  {
1786
  "mentee_id": 49,
1787
- "goals": "I want to learn about SQL, Python in the fields of Mobile Apps.",
1788
- "career_id": 4,
1789
  "domain_ids": [
1790
- 56
1791
- ],
1792
- "mentor_domain_ids": [
1793
- 56
1794
  ],
1795
  "skill_ids": [
1796
- 401,
1797
- 402
1798
  ],
1799
  "ground_truth_mentors": [
1800
- 14,
1801
- 39,
1802
- 68,
1803
- 84,
1804
- 94,
1805
- 119,
1806
- 123,
1807
- 127,
1808
- 159,
1809
- 174,
1810
- 179,
1811
- 183,
1812
- 189,
1813
- 194,
1814
- 204,
1815
- 209,
1816
- 219,
1817
- 229,
1818
- 234,
1819
- 244
1820
  ]
1821
  },
1822
  {
1823
  "mentee_id": 50,
1824
- "goals": "I want to learn about Python/R, Machine Learning, Tableau/Power BI in the fields of SaaS, Edtech.",
1825
- "career_id": 4,
1826
  "domain_ids": [
1827
- 206,
1828
- 207
1829
- ],
1830
- "mentor_domain_ids": [
1831
- 206,
1832
- 207
1833
  ],
1834
  "skill_ids": [
1835
- 110,
1836
- 112,
1837
- 111
1838
  ],
1839
  "ground_truth_mentors": [
1840
- 4,
1841
- 19,
1842
- 28,
1843
- 33,
1844
- 44,
1845
- 49,
1846
- 53,
1847
- 64,
1848
- 88,
1849
- 114,
1850
- 139,
1851
- 144,
1852
- 163,
1853
- 199,
1854
- 214,
1855
- 238,
1856
- 268,
1857
- 304,
1858
- 319,
1859
- 328
1860
  ]
1861
  },
1862
  {
1863
  "mentee_id": 51,
1864
- "goals": "I want to learn about Design Thinking in the fields of Banking, Fintech.",
1865
  "career_id": 2,
1866
  "domain_ids": [
1867
- 7,
1868
- 1
1869
- ],
1870
- "mentor_domain_ids": [
1871
- 7,
1872
- 1
1873
  ],
1874
  "skill_ids": [
1875
- 303
 
1876
  ],
1877
  "ground_truth_mentors": [
1878
- 38,
1879
- 83,
1880
- 118,
1881
- 158,
1882
- 193,
1883
- 208,
1884
- 283,
1885
- 308,
1886
- 313,
1887
- 373,
1888
- 383,
1889
- 423,
1890
- 443,
1891
- 503
1892
  ]
1893
  },
1894
  {
1895
  "mentee_id": 52,
1896
- "goals": "I want to learn about Design System, Figma UI Design, User Research in the fields of Technology.",
1897
  "career_id": 4,
1898
  "domain_ids": [
1899
- 8
1900
- ],
1901
- "mentor_domain_ids": [
1902
- 8
1903
  ],
1904
  "skill_ids": [
1905
- 43,
1906
- 41,
1907
- 40
1908
  ],
1909
  "ground_truth_mentors": [
1910
- 9,
1911
- 24,
1912
- 58,
1913
- 79,
1914
- 99,
1915
- 108,
1916
- 149,
1917
- 169,
1918
- 294,
1919
- 299,
1920
- 324,
1921
- 334,
1922
- 349,
1923
- 399,
1924
- 404,
1925
- 438,
1926
- 463,
1927
- 474
1928
  ]
1929
  },
1930
  {
1931
  "mentee_id": 53,
1932
- "goals": "I want to learn about Node.js, React.js in the fields of E-commerce, Fintech.",
1933
- "career_id": 1,
1934
  "domain_ids": [
1935
- 2,
1936
- 1
1937
- ],
1938
- "mentor_domain_ids": [
1939
- 2,
1940
- 1
1941
  ],
1942
  "skill_ids": [
1943
- 102,
1944
- 101
1945
  ],
1946
  "ground_truth_mentors": [
1947
- 1,
1948
- 11,
1949
- 16,
1950
- 26,
1951
- 31,
1952
- 36,
1953
- 41,
1954
- 46,
1955
- 51,
1956
- 61,
1957
- 66,
1958
- 81,
1959
- 86,
1960
- 91,
1961
- 111,
1962
- 116,
1963
- 121,
1964
- 126,
1965
- 136,
1966
- 141
1967
  ]
1968
  },
1969
  {
1970
  "mentee_id": 54,
1971
- "goals": "I want to learn about Figma/Adobe XD in the fields of Edtech, Healthtech.",
1972
- "career_id": 6,
1973
  "domain_ids": [
1974
- 207,
1975
- 208
1976
- ],
1977
- "mentor_domain_ids": [
1978
- 207,
1979
- 208
1980
  ],
1981
  "skill_ids": [
1982
- 113
1983
  ],
1984
  "ground_truth_mentors": [
1985
- 5,
1986
- 20,
1987
- 29,
1988
- 34,
1989
- 45,
1990
- 50,
1991
- 54,
1992
- 65,
1993
- 89,
1994
- 115,
1995
- 140,
1996
- 145,
1997
- 164,
1998
- 200,
1999
- 215,
2000
- 239,
2001
- 269,
2002
- 305,
2003
- 320,
2004
- 329
2005
  ]
2006
  },
2007
  {
2008
  "mentee_id": 55,
2009
- "goals": "I want to learn about Design Systems, User Research in the fields of Fintech.",
2010
- "career_id": 4,
2011
  "domain_ids": [
2012
- 1
2013
- ],
2014
- "mentor_domain_ids": [
2015
- 1
2016
  ],
2017
  "skill_ids": [
2018
- 12,
2019
- 10
2020
  ],
2021
  "ground_truth_mentors": [
2022
- 6,
2023
- 21,
2024
  56,
2025
- 73,
2026
- 76,
2027
- 96,
2028
- 104,
2029
  106,
2030
- 133,
2031
  146,
2032
- 154,
2033
  166,
2034
- 224,
2035
  291,
2036
  296,
2037
  321,
2038
- 331,
2039
  346,
2040
- 393,
2041
- 396
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2042
  ]
2043
  },
2044
  {
2045
- "mentee_id": 56,
2046
- "goals": "I want to learn about Kubernetes, System Design, Node.js in the fields of E-commerce, Logistics.",
2047
  "career_id": 1,
2048
  "domain_ids": [
2049
- 11,
2050
- 10
2051
- ],
2052
- "mentor_domain_ids": [
2053
- 11,
2054
- 10
2055
  ],
2056
  "skill_ids": [
2057
- 104,
2058
- 103,
2059
- 102
2060
  ],
2061
  "ground_truth_mentors": [
2062
  1,
2063
  11,
2064
- 16,
2065
  26,
2066
  31,
2067
- 36,
2068
  41,
2069
  46,
2070
  51,
2071
  61,
2072
- 66,
2073
- 81,
2074
  86,
2075
- 91,
2076
  111,
2077
- 116,
2078
- 121,
2079
- 126,
2080
  136,
2081
- 141
 
 
 
 
 
 
 
 
2082
  ]
2083
  },
2084
  {
2085
- "mentee_id": 57,
2086
- "goals": "I want to learn about Tableau, SQL, Python in the fields of SaaS.",
2087
  "career_id": 4,
2088
  "domain_ids": [
2089
- 5
2090
- ],
2091
- "mentor_domain_ids": [
2092
- 5
2093
- ],
2094
- "skill_ids": [
2095
- 32,
2096
- 30,
2097
- 31
2098
- ],
2099
- "ground_truth_mentors": [
2100
  8,
2101
- 23,
2102
- 148,
2103
- 168,
2104
- 293,
2105
- 298,
2106
- 323,
2107
- 333,
2108
- 348,
2109
- 398
2110
- ]
2111
- },
2112
- {
2113
- "mentee_id": 58,
2114
- "goals": "I want to learn about Python, Machine Learning, Tableau in the fields of Mobile Apps.",
2115
- "career_id": 3,
2116
- "domain_ids": [
2117
- 6
2118
- ],
2119
- "mentor_domain_ids": [
2120
- 6
2121
  ],
2122
  "skill_ids": [
2123
- 31,
2124
- 33,
2125
- 32
2126
  ],
2127
  "ground_truth_mentors": [
2128
- 8,
2129
- 23,
2130
- 148,
2131
- 168,
2132
- 293,
2133
- 298,
2134
- 323,
2135
- 333,
2136
- 348,
2137
- 398
 
2138
  ]
2139
  },
2140
  {
2141
  "mentee_id": 59,
2142
- "goals": "I want to learn about Jira, PMP, Risk Management in the fields of Mobile Apps, Product Startups.",
2143
- "career_id": 6,
2144
  "domain_ids": [
2145
- 19,
2146
- 18
2147
- ],
2148
- "mentor_domain_ids": [
2149
- 19,
2150
- 18
2151
  ],
2152
  "skill_ids": [
2153
- 602,
2154
- 604,
2155
- 603
2156
  ],
2157
  "ground_truth_mentors": [
2158
- 15,
2159
- 70,
2160
- 95,
2161
- 124,
2162
- 130,
2163
- 175,
2164
- 180,
2165
- 185,
2166
- 190,
2167
- 195,
2168
- 205,
2169
- 220,
2170
- 230,
2171
- 235,
2172
- 245,
2173
- 250,
2174
- 255,
2175
- 260,
2176
- 265,
2177
- 279
2178
  ]
2179
  },
2180
  {
2181
  "mentee_id": 60,
2182
- "goals": "I want to learn about PMP, Jira in the fields of Advertising, Banking Systems.",
2183
- "career_id": 6,
2184
  "domain_ids": [
2185
- 15,
2186
- 17
2187
- ],
2188
- "mentor_domain_ids": [
2189
- 15,
2190
- 17
2191
  ],
2192
  "skill_ids": [
2193
- 604,
2194
- 602
2195
  ],
2196
  "ground_truth_mentors": [
2197
- 15,
2198
- 70,
2199
- 95,
2200
- 124,
2201
- 130,
2202
- 175,
2203
- 180,
2204
- 185,
2205
- 190,
2206
- 195,
2207
- 205,
2208
- 220,
2209
- 230,
2210
- 235,
2211
- 245,
2212
- 250,
2213
- 255,
2214
- 260,
2215
- 265,
2216
- 279
2217
  ]
2218
  },
2219
  {
2220
  "mentee_id": 61,
2221
- "goals": "I want to learn about React.js, Kubernetes in the fields of E-commerce.",
2222
- "career_id": 1,
2223
  "domain_ids": [
2224
- 2
2225
- ],
2226
- "mentor_domain_ids": [
2227
- 2
2228
  ],
2229
  "skill_ids": [
2230
- 101,
2231
- 104
 
2232
  ],
2233
  "ground_truth_mentors": [
2234
- 1,
2235
- 2,
2236
- 11,
2237
- 16,
2238
- 17,
2239
- 26,
2240
- 31,
2241
- 36,
2242
- 41,
2243
- 42,
2244
- 46,
2245
- 47,
2246
- 51,
2247
- 61,
2248
- 62,
2249
- 66,
2250
- 81,
2251
- 86,
2252
- 91,
2253
- 111
2254
  ]
2255
  },
2256
  {
2257
  "mentee_id": 62,
2258
- "goals": "I want to learn about Statistical Modeling in the fields of Outsourcing.",
2259
- "career_id": 5,
2260
  "domain_ids": [
2261
- 9
2262
- ],
2263
- "mentor_domain_ids": [
2264
- 9
2265
  ],
2266
  "skill_ids": [
2267
- 53
2268
  ],
2269
  "ground_truth_mentors": [
2270
- 59,
2271
- 109,
2272
- 150,
2273
- 170,
2274
- 295,
2275
- 300,
2276
- 325,
2277
- 350,
2278
- 403,
2279
- 440
 
 
 
 
 
 
 
2280
  ]
2281
  },
2282
  {
2283
  "mentee_id": 63,
2284
- "goals": "I want to learn about Jira in the fields of Banking.",
2285
- "career_id": 6,
2286
  "domain_ids": [
2287
- 59
2288
- ],
2289
- "mentor_domain_ids": [
2290
- 59
2291
- ],
2292
- "skill_ids": [
2293
- 602
2294
- ],
2295
- "ground_truth_mentors": [
2296
  15,
2297
- 70,
2298
- 95,
2299
- 124,
2300
- 130,
2301
- 175,
2302
- 180,
2303
- 185,
2304
- 190,
2305
- 195,
2306
- 205,
2307
- 220,
2308
- 230,
2309
- 235,
2310
- 245,
2311
- 250,
2312
- 255,
2313
- 260,
2314
- 265,
2315
- 279
2316
- ]
2317
- },
2318
- {
2319
- "mentee_id": 64,
2320
- "goals": "I want to learn about SEO/SEM, Content Strategy, Growth Hacking in the fields of Digital Banking, Retail Tech.",
2321
- "career_id": 2,
2322
- "domain_ids": [
2323
- 13,
2324
- 12
2325
- ],
2326
- "mentor_domain_ids": [
2327
- 13,
2328
- 12
2329
  ],
2330
  "skill_ids": [
2331
- 201,
2332
- 203,
2333
- 202
2334
  ],
2335
  "ground_truth_mentors": [
2336
- 12,
2337
- 37,
2338
- 67,
2339
- 82,
2340
- 92,
2341
- 117,
2342
- 122,
2343
- 128,
2344
- 157,
2345
- 172,
2346
- 177,
2347
- 182,
2348
- 187,
2349
- 192,
2350
- 202,
2351
- 207,
2352
- 217,
2353
- 227,
2354
- 232,
2355
- 242
2356
  ]
2357
  },
2358
  {
2359
- "mentee_id": 65,
2360
- "goals": "I want to learn about Tableau in the fields of Logistics.",
2361
  "career_id": 4,
2362
  "domain_ids": [
2363
- 41
2364
- ],
2365
- "mentor_domain_ids": [
2366
- 41
2367
  ],
2368
  "skill_ids": [
2369
- 403
 
 
2370
  ],
2371
  "ground_truth_mentors": [
2372
- 14,
2373
- 39,
2374
- 68,
2375
- 84,
2376
  94,
2377
- 119,
2378
- 123,
2379
- 127,
2380
- 159,
2381
- 174,
2382
- 179,
2383
  183,
2384
- 189,
2385
- 194,
2386
- 204,
2387
- 209,
2388
- 219,
2389
- 229,
2390
- 234,
2391
- 244
2392
  ]
2393
  },
2394
  {
2395
- "mentee_id": 66,
2396
- "goals": "I want to learn about Jira, Agile/Scrum in the fields of Mobile Apps.",
2397
- "career_id": 6,
2398
  "domain_ids": [
2399
- 6
2400
- ],
2401
- "mentor_domain_ids": [
2402
- 6
2403
  ],
2404
  "skill_ids": [
2405
- 602,
2406
- 601
2407
  ],
2408
  "ground_truth_mentors": [
2409
- 15,
2410
- 70,
2411
- 95,
2412
- 124,
2413
- 130,
2414
- 175,
2415
- 180,
2416
- 185,
2417
- 190,
2418
- 195,
2419
- 205,
2420
- 220,
2421
- 230,
2422
- 235,
2423
- 245,
2424
- 250,
2425
- 255,
2426
- 260,
2427
- 265,
2428
- 279
2429
  ]
2430
  },
2431
  {
2432
- "mentee_id": 67,
2433
- "goals": "I want to learn about Tableau, SQL, Python in the fields of Technology, Banking.",
2434
- "career_id": 6,
2435
  "domain_ids": [
2436
- 8,
2437
- 7
2438
- ],
2439
- "mentor_domain_ids": [
2440
- 8,
2441
- 7
2442
  ],
2443
  "skill_ids": [
2444
- 15,
2445
- 13,
2446
- 14
2447
  ],
2448
  "ground_truth_mentors": [
2449
- 74,
2450
- 105,
2451
- 134,
2452
- 155,
2453
- 225,
2454
- 394,
2455
- 401,
2456
- 469,
2457
- 499
 
 
 
 
 
 
 
 
 
 
 
2458
  ]
2459
  },
2460
  {
2461
- "mentee_id": 68,
2462
- "goals": "I want to learn about Wireframing, Figma/Adobe XD in the fields of IT Outsourcing, Banking.",
2463
- "career_id": 6,
2464
  "domain_ids": [
2465
  209,
2466
  210
2467
  ],
2468
- "mentor_domain_ids": [
2469
- 209,
2470
- 210
2471
- ],
2472
  "skill_ids": [
2473
- 115,
2474
- 113
2475
  ],
2476
  "ground_truth_mentors": [
2477
  5,
2478
- 20,
2479
- 29,
2480
- 34,
2481
  45,
2482
- 50,
2483
- 54,
2484
- 65,
2485
- 89,
2486
  115,
2487
- 140,
2488
  145,
2489
- 164,
2490
  200,
2491
  215,
2492
- 239,
2493
- 269,
2494
  305,
2495
  320,
2496
- 329
 
 
 
 
 
 
2497
  ]
2498
  },
2499
  {
2500
- "mentee_id": 69,
2501
- "goals": "I want to learn about Jira/Confluence, Agile/Scrum, PMP in the fields of Banking Systems, Product Startups.",
2502
- "career_id": 6,
2503
  "domain_ids": [
2504
- 17,
2505
- 18
2506
- ],
2507
- "mentor_domain_ids": [
2508
- 17,
2509
- 18
2510
  ],
2511
  "skill_ids": [
2512
- 605,
2513
- 601,
2514
- 604
2515
  ],
2516
  "ground_truth_mentors": [
2517
- 15,
2518
- 175,
2519
- 180,
2520
- 190,
2521
- 195,
2522
- 205,
2523
- 220,
2524
- 235,
2525
- 250,
2526
- 265,
2527
- 279,
2528
- 290,
2529
- 345,
2530
- 370,
2531
- 380,
2532
- 435,
2533
- 485
2534
  ]
2535
  },
2536
  {
2537
- "mentee_id": 70,
2538
- "goals": "I want to learn about Tableau, SQL in the fields of Banking Systems.",
2539
- "career_id": 4,
2540
  "domain_ids": [
2541
- 17
2542
- ],
2543
- "mentor_domain_ids": [
2544
- 17
2545
  ],
2546
  "skill_ids": [
2547
- 403,
2548
- 401
2549
  ],
2550
  "ground_truth_mentors": [
2551
- 14,
2552
- 39,
2553
- 68,
2554
- 84,
2555
- 94,
2556
- 119,
2557
- 123,
2558
- 127,
2559
- 159,
2560
- 174,
2561
- 179,
2562
- 183,
2563
- 189,
2564
- 194,
2565
- 204,
2566
- 209,
2567
- 219,
2568
- 229,
2569
- 234,
2570
- 244
2571
- ]
2572
- },
2573
- {
2574
- "mentee_id": 71,
2575
- "goals": "I want to learn about Prototyping, Figma UI Design, User Research in the fields of Fintech.",
2576
- "career_id": 4,
2577
- "domain_ids": [
2578
- 1
2579
- ],
2580
- "mentor_domain_ids": [
2581
- 1
2582
- ],
2583
- "skill_ids": [
2584
- 42,
2585
  41,
2586
- 40
2587
- ],
2588
- "ground_truth_mentors": [
2589
- 9,
2590
- 24,
2591
- 58,
2592
- 79,
2593
- 99,
2594
- 108,
2595
- 149,
2596
- 169,
2597
- 294,
2598
- 299,
2599
- 324,
2600
- 334,
2601
- 349,
2602
- 399,
2603
- 404,
2604
- 438,
2605
- 463,
2606
- 474
2607
  ]
2608
  },
2609
  {
2610
- "mentee_id": 72,
2611
- "goals": "I want to learn about Growth Hacking in the fields of Retail, FMCG.",
2612
- "career_id": 2,
2613
  "domain_ids": [
2614
- 204,
2615
- 203
2616
- ],
2617
- "mentor_domain_ids": [
2618
- 204,
2619
- 203
2620
  ],
2621
  "skill_ids": [
2622
  108
2623
  ],
2624
  "ground_truth_mentors": [
2625
  3,
2626
- 18,
2627
- 27,
2628
- 32,
2629
  43,
2630
  48,
2631
- 52,
2632
  63,
2633
- 87,
2634
  113,
2635
- 138,
2636
  143,
2637
- 162,
2638
  198,
2639
  213,
2640
- 237,
2641
- 267,
2642
  303,
2643
  318,
2644
- 327
2645
- ]
2646
- },
2647
- {
2648
- "mentee_id": 73,
2649
- "goals": "I want to learn about User Research in the fields of FMCG, Logistics.",
2650
- "career_id": 3,
2651
- "domain_ids": [
2652
- 14,
2653
- 10
2654
- ],
2655
- "mentor_domain_ids": [
2656
- 14,
2657
- 10
2658
- ],
2659
- "skill_ids": [
2660
- 302
2661
- ],
2662
- "ground_truth_mentors": [
2663
- 38,
2664
- 83,
2665
- 118,
2666
- 158,
2667
- 193,
2668
- 208,
2669
- 283,
2670
- 308,
2671
- 313,
2672
- 373,
2673
- 383,
2674
- 423,
2675
- 443,
2676
- 503
2677
  ]
2678
  },
2679
  {
2680
- "mentee_id": 74,
2681
- "goals": "I want to learn about Node.js, Kubernetes in the fields of Fintech, Thương mại điện tử.",
2682
- "career_id": 1,
2683
  "domain_ids": [
2684
- 201,
2685
- 202
2686
- ],
2687
- "mentor_domain_ids": [
2688
- 201,
2689
- 202
2690
  ],
2691
  "skill_ids": [
2692
- 102,
2693
- 104
2694
  ],
2695
  "ground_truth_mentors": [
2696
- 1,
2697
- 2,
2698
- 11,
2699
- 16,
2700
- 17,
2701
- 26,
2702
- 31,
2703
  36,
2704
- 41,
2705
- 42,
2706
- 46,
2707
- 47,
2708
- 51,
2709
- 61,
2710
- 62,
2711
  66,
2712
  81,
2713
- 86,
2714
- 91,
2715
- 111
 
 
 
 
 
 
 
 
 
 
 
2716
  ]
2717
  },
2718
  {
2719
- "mentee_id": 75,
2720
- "goals": "I want to learn about Jira, Agile/Scrum in the fields of Outsourcing.",
2721
- "career_id": 6,
2722
  "domain_ids": [
2723
- 9
2724
- ],
2725
- "mentor_domain_ids": [
2726
- 9
2727
  ],
2728
  "skill_ids": [
2729
- 602,
2730
- 601
 
2731
  ],
2732
  "ground_truth_mentors": [
2733
- 15,
2734
- 70,
2735
- 95,
2736
- 124,
2737
- 130,
2738
- 175,
2739
- 180,
2740
- 185,
2741
- 190,
2742
- 195,
2743
- 205,
2744
- 220,
2745
- 230,
2746
- 235,
2747
- 245,
2748
- 250,
2749
- 255,
2750
- 260,
2751
- 265,
2752
- 279
2753
  ]
2754
  },
2755
  {
2756
- "mentee_id": 76,
2757
- "goals": "I want to learn about SEO/SEM, Content Strategy in the fields of FMCG, Retail.",
2758
  "career_id": 2,
2759
  "domain_ids": [
2760
- 203,
2761
- 204
2762
- ],
2763
- "mentor_domain_ids": [
2764
- 203,
2765
- 204
2766
  ],
2767
  "skill_ids": [
2768
  105,
2769
- 106
 
2770
  ],
2771
  "ground_truth_mentors": [
2772
  2,
2773
- 17,
2774
  27,
2775
  32,
2776
  42,
@@ -2786,104 +1988,43 @@
2786
  212,
2787
  237,
2788
  267,
2789
- 286,
2790
  302,
2791
- 317
 
 
2792
  ]
2793
  },
2794
  {
2795
- "mentee_id": 77,
2796
- "goals": "I want to learn about Visual Design in the fields of Mobile Apps, Software Services.",
2797
  "career_id": 4,
2798
  "domain_ids": [
2799
- 56,
2800
- 57
2801
- ],
2802
- "mentor_domain_ids": [
2803
- 56,
2804
- 57
2805
- ],
2806
- "skill_ids": [
2807
- 404
2808
- ],
2809
- "ground_truth_mentors": [
2810
- 14,
2811
- 84,
2812
- 119,
2813
- 174,
2814
- 179,
2815
- 189,
2816
- 194,
2817
- 204,
2818
- 219,
2819
- 234,
2820
- 249,
2821
- 264,
2822
- 278,
2823
- 288,
2824
- 344,
2825
- 369,
2826
- 374,
2827
- 379,
2828
- 434,
2829
- 444
2830
- ]
2831
- },
2832
- {
2833
- "mentee_id": 78,
2834
- "goals": "I want to learn about Brand Strategy, Google Analytics in the fields of FMCG, Retail.",
2835
- "career_id": 2,
2836
- "domain_ids": [
2837
- 4,
2838
- 3
2839
- ],
2840
- "mentor_domain_ids": [
2841
- 4,
2842
- 3
2843
  ],
2844
  "skill_ids": [
2845
- 22,
2846
- 23
2847
  ],
2848
  "ground_truth_mentors": [
2849
- 7,
2850
- 22,
2851
- 57,
2852
- 77,
2853
- 97,
2854
- 107,
2855
- 147,
2856
- 167,
2857
- 292,
2858
- 297,
2859
- 322,
2860
- 332,
2861
- 347,
2862
- 397,
2863
- 402,
2864
- 437,
2865
- 462,
2866
- 472
2867
  ]
2868
  },
2869
  {
2870
- "mentee_id": 79,
2871
- "goals": "I want to learn about Machine Learning in the fields of Edtech, Healthtech.",
2872
  "career_id": 5,
2873
  "domain_ids": [
2874
- 207,
2875
- 208
2876
- ],
2877
- "mentor_domain_ids": [
2878
- 207,
2879
- 208
2880
  ],
2881
  "skill_ids": [
2882
- 112
2883
  ],
2884
  "ground_truth_mentors": [
2885
  4,
2886
- 19,
2887
  28,
2888
  33,
2889
  44,
@@ -2891,308 +2032,167 @@
2891
  53,
2892
  64,
2893
  88,
2894
- 114,
2895
  139,
2896
- 144,
2897
  163,
2898
- 199,
2899
- 214,
2900
  238,
2901
  268,
2902
  304,
2903
- 319,
2904
- 328
2905
- ]
2906
- },
2907
- {
2908
- "mentee_id": 80,
2909
- "goals": "I want to learn about Google Ads, Data Analytics in the fields of Digital Banking.",
2910
- "career_id": 2,
2911
- "domain_ids": [
2912
- 13
2913
- ],
2914
- "mentor_domain_ids": [
2915
- 13
2916
- ],
2917
- "skill_ids": [
2918
- 5,
2919
- 7
2920
- ],
2921
- "ground_truth_mentors": [
2922
- 72,
2923
- 102,
2924
- 103,
2925
- 132,
2926
- 152,
2927
- 153,
2928
- 222,
2929
- 223,
2930
- 392,
2931
- 467,
2932
- 497
2933
  ]
2934
  },
2935
  {
2936
- "mentee_id": 81,
2937
- "goals": "I want to learn about Design Systems, User Research in the fields of Fintech.",
2938
- "career_id": 1,
2939
  "domain_ids": [
2940
- 102
2941
- ],
2942
- "mentor_domain_ids": [
2943
- 102
2944
  ],
2945
  "skill_ids": [
2946
- 12,
2947
- 10
2948
  ],
2949
  "ground_truth_mentors": [
2950
- 6,
2951
- 21,
2952
- 56,
2953
- 73,
2954
- 76,
2955
- 96,
2956
- 104,
2957
- 106,
2958
- 133,
2959
- 146,
2960
- 154,
2961
- 166,
2962
- 224,
2963
- 291,
2964
- 296,
2965
- 321,
2966
- 331,
2967
- 346,
2968
- 393,
2969
- 396
2970
  ]
2971
  },
2972
  {
2973
- "mentee_id": 82,
2974
- "goals": "I want to learn about Statistical Modeling, User Research in the fields of FMCG, Advertising.",
2975
- "career_id": 4,
2976
  "domain_ids": [
2977
- 14,
2978
- 15
2979
- ],
2980
- "mentor_domain_ids": [
2981
- 14,
2982
- 15
2983
  ],
2984
  "skill_ids": [
2985
- 304,
2986
- 302
 
2987
  ],
2988
  "ground_truth_mentors": [
2989
- 38,
2990
  83,
2991
- 118,
2992
  158,
2993
- 193,
2994
  208,
2995
- 283,
2996
- 308,
2997
- 313,
2998
- 373,
2999
- 383,
3000
- 423,
3001
- 443,
3002
  503
3003
  ]
3004
  },
3005
  {
3006
- "mentee_id": 83,
3007
- "goals": "I want to learn about Machine Learning, Python in the fields of Fintech, SaaS.",
3008
  "career_id": 4,
3009
  "domain_ids": [
3010
- 1,
3011
- 5
3012
- ],
3013
- "mentor_domain_ids": [
3014
- 1,
3015
- 5
3016
- ],
3017
- "skill_ids": [
3018
- 16,
3019
- 14
3020
- ],
3021
- "ground_truth_mentors": [
3022
- 74,
3023
- 105,
3024
- 134,
3025
- 155,
3026
- 225,
3027
- 394,
3028
- 401,
3029
- 469,
3030
- 499
3031
- ]
3032
- },
3033
- {
3034
- "mentee_id": 84,
3035
- "goals": "I want to learn about Node.js, System Design in the fields of E-commerce.",
3036
- "career_id": 1,
3037
- "domain_ids": [
3038
- 2
3039
- ],
3040
- "mentor_domain_ids": [
3041
  2
3042
  ],
3043
  "skill_ids": [
3044
- 102,
3045
- 103
3046
  ],
3047
  "ground_truth_mentors": [
3048
- 1,
3049
- 11,
3050
- 16,
3051
- 26,
3052
- 31,
3053
  36,
3054
- 41,
3055
- 46,
3056
- 51,
3057
- 61,
3058
  66,
3059
  81,
3060
- 86,
3061
- 91,
3062
- 111,
3063
- 116,
3064
  121,
3065
- 126,
3066
- 136,
3067
- 141
 
 
 
 
 
 
 
 
 
 
3068
  ]
3069
  },
3070
  {
3071
- "mentee_id": 85,
3072
- "goals": "I want to learn about SEO/SEM, Content Strategy, Kubernetes in the fields of Retail, FMCG.",
3073
  "career_id": 2,
3074
  "domain_ids": [
3075
- 204,
3076
- 203
3077
- ],
3078
- "mentor_domain_ids": [
3079
- 204,
3080
- 203
3081
  ],
3082
  "skill_ids": [
3083
  105,
3084
- 106,
3085
- 104
3086
  ],
3087
  "ground_truth_mentors": [
3088
  2,
3089
- 17,
3090
  27,
3091
  32,
3092
- 42,
3093
  47,
3094
  52,
3095
  62,
3096
  87,
3097
  112,
3098
- 137,
3099
  142,
3100
  162,
3101
  197,
3102
  212,
3103
  237,
3104
  267,
3105
- 286,
3106
  302,
3107
- 317
 
 
 
 
3108
  ]
3109
  },
3110
  {
3111
- "mentee_id": 86,
3112
- "goals": "I want to learn about Figma, Statistical Modeling, Design Thinking in the fields of FMCG, Advertising.",
3113
- "career_id": 4,
3114
  "domain_ids": [
3115
- 14,
3116
- 15
3117
- ],
3118
- "mentor_domain_ids": [
3119
- 14,
3120
- 15
3121
  ],
3122
  "skill_ids": [
3123
- 301,
3124
- 304,
3125
- 303
3126
- ],
3127
- "ground_truth_mentors": [
3128
- 38,
3129
- 83,
3130
- 118,
3131
- 158,
3132
- 193,
3133
- 208,
3134
- 283,
3135
- 308,
3136
- 313,
3137
- 373,
3138
- 383,
3139
- 423,
3140
- 443,
3141
- 503
3142
  ]
3143
  },
3144
  {
3145
- "mentee_id": 87,
3146
- "goals": "I want to learn about User Research, Design Systems in the fields of Fintech, SaaS.",
3147
  "career_id": 4,
3148
  "domain_ids": [
3149
- 1,
3150
- 5
3151
- ],
3152
- "mentor_domain_ids": [
3153
- 1,
3154
- 5
3155
  ],
3156
  "skill_ids": [
3157
- 10,
3158
- 12
3159
  ],
3160
  "ground_truth_mentors": [
3161
- 6,
3162
- 21,
3163
- 56,
3164
- 73,
3165
- 76,
3166
- 96,
3167
- 104,
3168
- 106,
3169
- 133,
3170
- 146,
3171
- 154,
3172
- 166,
3173
- 224,
3174
- 291,
3175
- 296,
3176
- 321,
3177
- 331,
3178
- 346,
3179
- 393,
3180
- 396
3181
  ]
3182
  },
3183
  {
3184
- "mentee_id": 88,
3185
- "goals": "I want to learn about Stakeholder Management, Risk Management in the fields of IT Outsourcing.",
3186
- "career_id": 6,
3187
  "domain_ids": [
3188
- 209
3189
- ],
3190
- "mentor_domain_ids": [
3191
  209
3192
  ],
3193
  "skill_ids": [
3194
- 119,
3195
- 118
3196
  ],
3197
  "ground_truth_mentors": [
3198
  30,
@@ -3202,246 +2202,229 @@
3202
  165,
3203
  240,
3204
  270,
3205
- 330,
3206
- 420,
3207
  460,
3208
  495
3209
  ]
3210
  },
3211
  {
3212
- "mentee_id": 89,
3213
- "goals": "I want to learn about SEO/SEM in the fields of Retail, FMCG.",
3214
- "career_id": 2,
3215
  "domain_ids": [
3216
- 3,
3217
- 4
3218
- ],
3219
- "mentor_domain_ids": [
3220
- 3,
3221
- 4
3222
  ],
3223
  "skill_ids": [
3224
- 21
 
3225
  ],
3226
  "ground_truth_mentors": [
3227
- 7,
3228
- 22,
3229
- 57,
3230
- 77,
3231
- 97,
3232
- 107,
3233
- 147,
3234
- 167,
3235
- 292,
3236
- 297,
3237
- 322,
3238
- 332,
3239
- 347,
3240
- 397,
3241
- 402,
3242
- 437,
3243
- 462,
3244
- 472
3245
  ]
3246
  },
3247
  {
3248
- "mentee_id": 90,
3249
- "goals": "I want to learn about System Design, Kubernetes, Node.js in the fields of Fintech.",
3250
  "career_id": 1,
3251
  "domain_ids": [
3252
- 201
3253
  ],
3254
- "mentor_domain_ids": [
3255
- 201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3256
  ],
3257
  "skill_ids": [
3258
- 103,
3259
- 104,
3260
- 102
3261
  ],
3262
  "ground_truth_mentors": [
3263
- 1,
 
 
 
 
 
 
 
 
3264
  11,
3265
- 16,
3266
- 26,
3267
- 31,
3268
- 36,
3269
- 41,
3270
- 46,
3271
- 51,
3272
- 61,
3273
- 66,
3274
- 81,
3275
- 86,
3276
  91,
3277
- 111,
3278
  116,
3279
- 121,
3280
- 126,
3281
- 136,
3282
- 141
 
 
 
 
 
 
 
 
 
 
 
 
3283
  ]
3284
  },
3285
  {
3286
- "mentee_id": 91,
3287
- "goals": "I want to learn about Tableau, Python, SQL in the fields of Mobile Apps.",
3288
  "career_id": 3,
3289
  "domain_ids": [
3290
- 6
3291
- ],
3292
- "mentor_domain_ids": [
3293
- 6
3294
  ],
3295
  "skill_ids": [
3296
- 32,
3297
- 31,
3298
- 30
3299
  ],
3300
  "ground_truth_mentors": [
3301
- 8,
3302
- 23,
3303
- 148,
3304
- 168,
3305
- 293,
3306
- 298,
3307
- 323,
3308
- 333,
3309
- 348,
3310
- 398
 
 
 
 
 
 
 
 
 
 
3311
  ]
3312
  },
3313
  {
3314
- "mentee_id": 92,
3315
- "goals": "I want to learn about Growth Hacking, Data Analytics in the fields of Retail, FMCG.",
3316
  "career_id": 2,
3317
  "domain_ids": [
3318
- 204,
3319
- 203
3320
- ],
3321
- "mentor_domain_ids": [
3322
- 204,
3323
- 203
3324
  ],
3325
  "skill_ids": [
3326
- 108,
3327
- 107
3328
  ],
3329
  "ground_truth_mentors": [
3330
- 3,
3331
- 18,
3332
  27,
3333
  32,
3334
- 43,
3335
- 48,
3336
  52,
3337
- 63,
3338
  87,
3339
- 113,
3340
- 138,
3341
- 143,
3342
  162,
3343
- 198,
3344
- 213,
3345
  237,
3346
  267,
3347
- 303,
3348
- 318,
3349
- 327
3350
- ]
3351
- },
3352
- {
3353
- "mentee_id": 93,
3354
- "goals": "I want to learn about Agile/Scrum, Stakeholder Management in the fields of SaaS, Logistics.",
3355
- "career_id": 5,
3356
- "domain_ids": [
3357
- 55,
3358
- 54
3359
- ],
3360
- "mentor_domain_ids": [
3361
- 55,
3362
- 54
3363
- ],
3364
- "skill_ids": [
3365
- 501,
3366
- 502
3367
- ],
3368
- "ground_truth_mentors": [
3369
- 13,
3370
- 40,
3371
- 69,
3372
- 85,
3373
- 93,
3374
- 120,
3375
- 125,
3376
- 129,
3377
- 160,
3378
- 173,
3379
- 178,
3380
- 184,
3381
- 188,
3382
- 203,
3383
- 210,
3384
- 218,
3385
- 228,
3386
- 233,
3387
- 243,
3388
- 248
3389
  ]
3390
  },
3391
  {
3392
- "mentee_id": 94,
3393
- "goals": "I want to learn about Tableau, SQL in the fields of Banking.",
3394
- "career_id": 4,
3395
  "domain_ids": [
3396
- 7
3397
- ],
3398
- "mentor_domain_ids": [
3399
- 7
3400
  ],
3401
  "skill_ids": [
3402
- 403,
3403
- 401
3404
  ],
3405
  "ground_truth_mentors": [
3406
- 14,
3407
- 39,
3408
- 68,
3409
- 84,
3410
- 94,
3411
- 119,
3412
- 123,
3413
- 127,
3414
- 159,
3415
- 174,
3416
- 179,
3417
- 183,
3418
- 189,
3419
- 194,
3420
- 204,
3421
- 209,
3422
- 219,
3423
- 229,
3424
- 234,
3425
- 244
3426
  ]
3427
  },
3428
  {
3429
- "mentee_id": 95,
3430
- "goals": "I want to learn about Wireframing, Figma/Adobe XD in the fields of IT Outsourcing.",
3431
- "career_id": 5,
3432
  "domain_ids": [
3433
- 209
3434
- ],
3435
- "mentor_domain_ids": [
3436
- 209
3437
  ],
3438
  "skill_ids": [
3439
  115,
3440
- 113
3441
  ],
3442
  "ground_truth_mentors": [
3443
  5,
3444
- 20,
3445
  29,
3446
  34,
3447
  45,
@@ -3449,198 +2432,264 @@
3449
  54,
3450
  65,
3451
  89,
3452
- 115,
3453
  140,
3454
- 145,
3455
  164,
3456
- 200,
3457
- 215,
3458
  239,
3459
  269,
3460
  305,
3461
- 320,
3462
- 329
 
 
 
 
3463
  ]
3464
  },
3465
  {
3466
- "mentee_id": 96,
3467
- "goals": "I want to learn about Growth Hacking, SEO/SEM, Content Strategy in the fields of Digital Banking.",
3468
- "career_id": 2,
3469
  "domain_ids": [
3470
- 13
 
3471
  ],
3472
- "mentor_domain_ids": [
3473
- 13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3474
  ],
3475
  "skill_ids": [
3476
- 202,
3477
  201,
3478
- 203
 
3479
  ],
3480
  "ground_truth_mentors": [
3481
- 12,
3482
- 37,
3483
- 67,
3484
- 82,
3485
- 92,
3486
- 117,
3487
- 122,
3488
- 128,
3489
- 157,
3490
- 172,
3491
  177,
3492
- 182,
3493
- 187,
3494
- 192,
3495
  202,
3496
- 207,
3497
- 217,
3498
- 227,
3499
- 232,
3500
- 242
3501
  ]
3502
  },
3503
  {
3504
- "mentee_id": 97,
3505
- "goals": "I want to learn about Node.js, React.js, System Design in the fields of Fintech.",
3506
- "career_id": 1,
3507
  "domain_ids": [
3508
- 201
3509
- ],
3510
- "mentor_domain_ids": [
3511
- 201
3512
  ],
3513
  "skill_ids": [
3514
- 102,
3515
- 101,
3516
- 103
3517
  ],
3518
  "ground_truth_mentors": [
3519
- 1,
3520
- 11,
3521
- 16,
3522
- 26,
3523
- 31,
3524
- 36,
3525
- 41,
3526
- 46,
3527
- 51,
3528
- 61,
3529
- 66,
3530
- 81,
3531
- 86,
3532
- 91,
3533
- 111,
3534
- 116,
3535
- 121,
3536
- 126,
3537
- 136,
3538
- 141
3539
  ]
3540
  },
3541
  {
3542
- "mentee_id": 98,
3543
- "goals": "I want to learn about System Design in the fields of Fintech, Thương mại điện tử.",
3544
  "career_id": 1,
3545
  "domain_ids": [
3546
  201,
3547
  202
3548
  ],
3549
- "mentor_domain_ids": [
3550
- 201,
3551
- 202
3552
- ],
3553
  "skill_ids": [
3554
- 103
 
 
3555
  ],
3556
  "ground_truth_mentors": [
3557
  1,
3558
  11,
3559
- 16,
3560
  26,
3561
  31,
3562
- 36,
3563
  41,
3564
  46,
3565
  51,
3566
  61,
3567
- 66,
3568
- 81,
3569
  86,
3570
- 91,
3571
  111,
3572
- 116,
3573
- 121,
3574
- 126,
3575
  136,
3576
- 141
 
 
 
 
 
 
 
 
3577
  ]
3578
  },
3579
  {
3580
- "mentee_id": 99,
3581
- "goals": "I want to learn about Python, Tableau in the fields of E-commerce, SaaS.",
3582
- "career_id": 4,
3583
  "domain_ids": [
3584
- 2,
3585
- 5
3586
  ],
3587
- "mentor_domain_ids": [
3588
- 2,
 
 
 
 
 
 
 
 
 
 
 
 
 
3589
  5
3590
  ],
3591
  "skill_ids": [
3592
- 31,
3593
- 32
 
3594
  ],
3595
  "ground_truth_mentors": [
3596
- 8,
3597
- 23,
3598
- 148,
3599
- 168,
3600
- 293,
3601
- 298,
3602
- 323,
3603
- 333,
3604
- 348,
3605
- 398
3606
  ]
3607
  },
3608
  {
3609
- "mentee_id": 100,
3610
- "goals": "I want to learn about Tableau in the fields of IT Services, Advertising.",
3611
  "career_id": 4,
3612
  "domain_ids": [
3613
- 16,
3614
- 15
3615
  ],
3616
- "mentor_domain_ids": [
3617
- 16,
3618
- 15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3619
  ],
3620
  "skill_ids": [
3621
- 403
 
3622
  ],
3623
  "ground_truth_mentors": [
3624
- 14,
3625
- 39,
3626
- 68,
3627
- 84,
3628
- 94,
3629
- 119,
3630
- 123,
3631
- 127,
3632
- 159,
3633
- 174,
3634
- 179,
3635
- 183,
3636
- 189,
3637
- 194,
3638
- 204,
3639
- 209,
3640
- 219,
3641
- 229,
3642
- 234,
3643
- 244
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3644
  ]
3645
  }
3646
  ]
 
1
  [
2
  {
3
  "mentee_id": 1,
4
+ "goals": "Em muốn chuyển ngành sang E-commerce nên cần học về Kubernetes, React.js, System Design.",
5
+ "career_id": 1,
6
  "domain_ids": [
7
+ 11
 
 
 
8
  ],
9
  "skill_ids": [
10
+ 104,
11
+ 101,
12
+ 103
13
  ],
14
  "ground_truth_mentors": [
15
+ 91,
16
+ 116,
17
+ 181,
18
+ 226,
19
+ 231,
20
+ 241,
21
+ 246,
22
+ 251,
23
+ 261,
24
+ 271,
25
+ 286,
26
+ 311,
27
+ 361,
28
+ 371,
29
+ 376,
30
+ 381,
31
+ 431,
32
+ 441
33
  ]
34
  },
35
  {
36
  "mentee_id": 2,
37
+ "goals": "Em đang tìm mentor kinh nghiệm về Kubernetes trong lĩnh vực Fintech, Thương mại điện tử.",
38
+ "career_id": 1,
39
  "domain_ids": [
40
+ 201,
41
+ 202
 
 
 
 
42
  ],
43
  "skill_ids": [
44
+ 104
 
 
45
  ],
46
  "ground_truth_mentors": [
47
+ 11,
48
+ 26,
49
+ 31,
50
+ 42,
51
+ 51,
52
+ 86,
53
+ 137,
54
+ 161,
55
+ 236,
56
+ 266,
57
+ 276,
58
+ 326,
59
+ 357,
60
+ 416,
61
+ 456,
62
+ 491
63
  ]
64
  },
65
  {
66
  "mentee_id": 3,
67
+ "goals": "Mình đang làm việc trong ngành Banking muốn học thêm về Python, Tableau, SQL.",
68
+ "career_id": 4,
69
  "domain_ids": [
70
+ 7
 
 
 
71
  ],
72
  "skill_ids": [
73
+ 402,
74
+ 403,
75
+ 401
76
  ],
77
  "ground_truth_mentors": [
78
+ 159,
79
+ 174,
80
+ 189,
81
+ 219,
82
+ 259,
83
+ 339,
84
+ 344,
85
+ 369,
86
+ 389,
87
+ 504
 
 
 
 
 
 
 
 
 
 
88
  ]
89
  },
90
  {
91
  "mentee_id": 4,
92
+ "goals": "Em sinh viên muốn tìm hiểu về System Design Sản xuất.",
93
+ "career_id": 1,
94
  "domain_ids": [
95
+ 51
 
 
 
96
  ],
97
  "skill_ids": [
98
+ 103
99
  ],
100
  "ground_truth_mentors": [
101
+ 176,
102
+ 201,
103
+ 281,
104
+ 306
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  ]
106
  },
107
  {
108
  "mentee_id": 5,
109
+ "goals": "Em muốn chuyển ngành sang Logistics, Fintech nên cần học về SQL, Python/R.",
110
+ "career_id": 5,
111
  "domain_ids": [
112
+ 205,
113
+ 201
 
 
114
  ],
115
  "skill_ids": [
116
+ 109,
117
+ 110
118
  ],
119
  "ground_truth_mentors": [
120
+ 3,
121
+ 28,
122
+ 33,
123
+ 43,
124
+ 48,
125
+ 53,
126
+ 63,
127
+ 64,
128
+ 88,
129
+ 113,
130
+ 139,
131
+ 143,
132
+ 163,
133
+ 198,
134
+ 213,
135
+ 238,
136
+ 268,
137
+ 303,
138
+ 318,
139
+ 328
140
  ]
141
  },
142
  {
143
  "mentee_id": 6,
144
+ "goals": "Em muốn chuyển ngành sang SaaS nên cần học về Python/R, Machine Learning.",
145
+ "career_id": 5,
146
  "domain_ids": [
147
+ 206
 
 
 
148
  ],
149
  "skill_ids": [
150
+ 110,
151
+ 112
152
  ],
153
  "ground_truth_mentors": [
154
+ 4,
155
+ 28,
156
+ 33,
157
+ 44,
158
+ 49,
159
+ 53,
160
+ 64,
161
+ 88,
162
+ 139,
163
+ 268,
164
+ 304,
165
+ 359,
166
+ 429,
167
+ 458,
168
+ 479,
169
+ 493
 
 
 
 
170
  ]
171
  },
172
  {
173
  "mentee_id": 7,
174
+ "goals": "Mục tiêu của tôi trở thành chuyên gia về Python/R, Machine Learning, Tableau/Power BI.",
175
+ "career_id": 5,
176
  "domain_ids": [
177
+ 206
 
 
 
178
  ],
179
  "skill_ids": [
180
+ 110,
181
+ 112,
182
+ 111
183
  ],
184
  "ground_truth_mentors": [
185
+ 4,
186
+ 28,
187
+ 33,
188
+ 44,
189
+ 49,
190
+ 53,
191
+ 64,
192
+ 88,
193
+ 139,
194
+ 268,
195
+ 304,
196
+ 359,
197
+ 429,
198
+ 458,
199
+ 479,
200
+ 493
 
 
 
 
201
  ]
202
  },
203
  {
204
  "mentee_id": 8,
205
+ "goals": "Mình đang làm việc trong ngành Logistics muốn học thêm về Python/R, Machine Learning.",
206
+ "career_id": 3,
207
  "domain_ids": [
208
+ 205
 
 
 
 
 
209
  ],
210
  "skill_ids": [
211
+ 110,
212
+ 112
213
  ],
214
  "ground_truth_mentors": [
215
+ 28,
216
+ 33,
217
+ 53,
218
+ 88,
219
+ 139,
220
+ 163,
221
+ 238,
222
+ 268,
223
+ 328,
224
+ 418,
225
+ 458,
226
+ 493
 
 
 
 
 
 
 
 
227
  ]
228
  },
229
  {
230
  "mentee_id": 9,
231
+ "goals": "Em đang tìm mentor kinh nghiệm về Node.js, React.js trong lĩnh vực E-commerce.",
232
+ "career_id": 1,
233
  "domain_ids": [
234
+ 502
 
 
 
 
 
235
  ],
236
  "skill_ids": [
237
+ 102,
238
+ 101
239
  ],
240
  "ground_truth_mentors": [
241
+ 126,
242
+ 191
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  ]
244
  },
245
  {
246
  "mentee_id": 10,
247
+ "goals": "Em đang tìm mentor kinh nghiệm về System Design trong lĩnh vực Sản xuất, Sản xuất.",
248
+ "career_id": 1,
249
  "domain_ids": [
250
+ 51,
251
+ 52
252
  ],
253
+ "skill_ids": [
254
+ 103
255
+ ],
256
+ "ground_truth_mentors": [
257
+ 176,
258
+ 201,
259
+ 281,
260
+ 306
261
+ ]
262
+ },
263
+ {
264
+ "mentee_id": 11,
265
+ "goals": "Em muốn chuyển ngành sang Technology nên cần học về SQL.",
266
+ "career_id": 4,
267
+ "domain_ids": [
268
+ 8
269
  ],
270
  "skill_ids": [
271
+ 401
272
  ],
273
  "ground_truth_mentors": [
 
274
  39,
 
 
 
 
 
 
275
  159,
276
  174,
 
 
277
  189,
 
 
 
278
  219,
279
+ 259,
280
+ 344,
281
+ 389,
282
+ 504
283
  ]
284
  },
285
  {
286
+ "mentee_id": 12,
287
+ "goals": "Mình đang làm việc trong ngành Ứng dụng di động, Trải nghiệm người dùng và muốn học thêm về SQL, Tableau, Python.",
288
  "career_id": 4,
289
  "domain_ids": [
290
+ 30,
291
+ 31
 
 
292
  ],
293
  "skill_ids": [
294
+ 401,
295
+ 403,
296
+ 402
297
  ],
298
  "ground_truth_mentors": [
299
+ 363
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
300
  ]
301
  },
302
  {
303
+ "mentee_id": 13,
304
+ "goals": "Tôi muốn học về Tableau/Power BI.",
305
+ "career_id": 4,
306
  "domain_ids": [
307
+ 206,
308
+ 207
 
 
309
  ],
310
  "skill_ids": [
311
+ 111
312
  ],
313
  "ground_truth_mentors": [
314
+ 4,
315
+ 28,
316
+ 33,
317
+ 44,
318
+ 49,
319
+ 53,
320
+ 64,
321
+ 88,
322
+ 114,
323
+ 139,
324
+ 144,
325
+ 199,
326
+ 214,
327
+ 268,
328
+ 304,
329
+ 319,
330
+ 354,
331
+ 359,
332
+ 409,
333
+ 414
334
  ]
335
  },
336
  {
337
+ "mentee_id": 14,
338
+ "goals": "Cần tìm mentor giỏi về System Design.",
339
+ "career_id": 1,
340
  "domain_ids": [
341
+ 11,
342
+ 10
 
 
 
 
343
  ],
344
  "skill_ids": [
345
+ 103
 
 
346
  ],
347
  "ground_truth_mentors": [
348
+ 91,
349
+ 116,
350
+ 181,
351
+ 226,
352
+ 231,
353
+ 241,
354
+ 246,
355
+ 251,
356
+ 261,
357
+ 271,
358
+ 286,
359
+ 311,
360
+ 361,
361
+ 371,
362
+ 376,
363
+ 381,
364
+ 431,
365
+ 441
 
 
366
  ]
367
  },
368
  {
369
+ "mentee_id": 15,
370
+ "goals": "Em muốn chuyển ngành sang Mobile Apps, Software Services nên cần học về Tableau.",
371
  "career_id": 4,
372
  "domain_ids": [
373
+ 56,
374
+ 57
 
 
375
  ],
376
  "skill_ids": [
377
  403
378
  ],
379
  "ground_truth_mentors": [
 
 
 
 
 
 
 
 
 
 
380
  179,
 
 
 
381
  204,
382
+ 284,
383
+ 309
 
 
 
384
  ]
385
  },
386
  {
387
+ "mentee_id": 16,
388
+ "goals": "Tôi muốn nâng cao kỹ năng Node.js.",
389
+ "career_id": 1,
390
  "domain_ids": [
391
+ 1
 
 
 
392
  ],
393
  "skill_ids": [
394
+ 102
 
 
395
  ],
396
  "ground_truth_mentors": [
397
+ 36,
398
+ 66,
399
+ 81,
400
+ 121,
401
+ 156,
402
+ 171,
403
+ 186,
404
+ 206,
405
+ 216,
406
+ 256,
407
+ 336,
408
+ 341,
409
+ 366,
410
+ 386,
411
+ 446,
412
+ 481,
413
+ 501
 
 
 
414
  ]
415
  },
416
  {
417
+ "mentee_id": 17,
418
+ "goals": "Em đang tìm mentor kinh nghiệm về Design Systems, Figma trong lĩnh vực Fintech.",
419
+ "career_id": 5,
420
  "domain_ids": [
421
+ 1
 
 
 
422
  ],
423
  "skill_ids": [
 
424
  12,
425
+ 9
426
  ],
427
  "ground_truth_mentors": [
428
  6,
429
  21,
430
  56,
 
431
  76,
432
  96,
433
  104,
434
  106,
435
  133,
436
  146,
 
437
  166,
 
438
  291,
439
  296,
440
  321,
441
  331,
442
  346,
443
  393,
444
+ 396,
445
+ 401,
446
+ 461,
447
+ 471
448
  ]
449
  },
450
  {
451
+ "mentee_id": 18,
452
+ "goals": "Tôi muốn nâng cao kỹ năng Strategic Planning, Agile/Scrum.",
453
+ "career_id": 6,
454
  "domain_ids": [
455
+ 7
 
 
 
 
 
456
  ],
457
  "skill_ids": [
458
+ 62,
459
+ 60
460
  ],
461
  "ground_truth_mentors": [
462
+ 100,
463
+ 464
 
 
 
 
 
 
 
 
 
 
 
 
464
  ]
465
  },
466
  {
467
+ "mentee_id": 19,
468
+ "goals": "Mục tiêu của tôi trở thành chuyên gia về SQL, Tableau.",
469
+ "career_id": 4,
470
  "domain_ids": [
471
+ 56
 
 
 
472
  ],
473
  "skill_ids": [
474
+ 401,
475
+ 403
476
  ],
477
  "ground_truth_mentors": [
478
+ 179,
479
+ 204,
480
+ 284,
481
+ 309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
482
  ]
483
  },
484
  {
485
+ "mentee_id": 20,
486
+ "goals": "Mình cần người hướng dẫn về Jira, Risk Management, Agile/Scrum để phát triển sự nghiệp.",
487
+ "career_id": 6,
488
  "domain_ids": [
489
+ 17
 
 
 
490
  ],
491
  "skill_ids": [
492
+ 602,
493
+ 603,
494
+ 601
495
  ],
496
  "ground_truth_mentors": [
497
+ 95,
498
+ 185,
499
+ 250,
500
+ 255,
501
+ 265,
502
+ 290,
503
+ 380
 
 
 
 
 
 
 
 
 
 
 
 
 
504
  ]
505
  },
506
  {
507
+ "mentee_id": 21,
508
+ "goals": "Mình cần người hướng dẫn về Kubernetes để phát triển sự nghiệp.",
509
+ "career_id": 2,
510
  "domain_ids": [
511
+ 204,
512
+ 203
 
 
 
 
513
  ],
514
  "skill_ids": [
 
515
  104
516
  ],
517
  "ground_truth_mentors": [
 
518
  2,
 
 
 
 
 
 
 
519
  42,
 
520
  47,
 
 
521
  62,
522
+ 112,
523
+ 137,
524
+ 142,
525
+ 197,
526
+ 212,
527
+ 302,
528
+ 317,
529
+ 352,
530
+ 357,
531
+ 407,
532
+ 412,
533
+ 427,
534
+ 452,
535
+ 477,
536
+ 487
537
  ]
538
  },
539
  {
540
+ "mentee_id": 22,
541
+ "goals": "Em sinh viên muốn tìm hiểu về SEO/SEM FMCG.",
542
  "career_id": 2,
543
  "domain_ids": [
 
 
 
 
 
544
  203
545
  ],
546
  "skill_ids": [
 
547
  105
548
  ],
549
  "ground_truth_mentors": [
550
  2,
 
 
 
551
  27,
 
552
  32,
553
  42,
554
  47,
 
555
  52,
556
  62,
 
 
557
  87,
558
  112,
 
559
  137,
560
  142,
561
+ 162,
562
+ 197,
563
+ 212,
564
+ 237,
565
+ 267,
566
+ 302,
567
+ 317,
568
+ 327,
569
+ 352
570
  ]
571
  },
572
  {
573
+ "mentee_id": 23,
574
+ "goals": "Tôi muốn nâng cao kỹ năng System Design, Kubernetes.",
575
+ "career_id": 1,
576
  "domain_ids": [
577
+ 1
 
 
 
 
 
578
  ],
579
  "skill_ids": [
580
+ 103,
581
+ 104
582
  ],
583
  "ground_truth_mentors": [
584
+ 36,
585
+ 66,
586
+ 81,
587
+ 121,
588
+ 156,
589
+ 171,
590
+ 186,
591
+ 206,
592
+ 216,
593
+ 256,
594
+ 336,
595
+ 341,
596
+ 366,
597
+ 386,
598
+ 446,
599
+ 481,
600
+ 501
 
 
 
601
  ]
602
  },
603
  {
604
+ "mentee_id": 24,
605
+ "goals": "Tôi muốn nâng cao kỹ năng SEO/SEM, Content Strategy, Kubernetes.",
606
  "career_id": 2,
607
  "domain_ids": [
608
  204
609
  ],
 
 
 
610
  "skill_ids": [
611
  105,
612
+ 106,
613
  104
614
  ],
615
  "ground_truth_mentors": [
616
  2,
 
 
 
617
  27,
 
618
  32,
 
619
  47,
 
620
  52,
621
  62,
 
 
622
  87,
623
  112,
 
 
624
  142,
625
+ 162,
626
+ 197,
627
+ 212,
628
+ 237,
629
+ 267,
630
+ 302,
631
+ 317,
632
+ 327,
633
+ 352,
634
+ 407,
635
+ 412
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
636
  ]
637
  },
638
  {
639
  "mentee_id": 25,
640
+ "goals": "Tôi muốn nâng cao kỹ năng User Research, Design Thinking, Figma.",
641
+ "career_id": 5,
642
  "domain_ids": [
643
+ 14
 
 
 
 
 
644
  ],
645
  "skill_ids": [
646
+ 302,
647
+ 303,
648
+ 301
649
  ],
650
  "ground_truth_mentors": [
651
+ 118,
652
+ 373,
653
+ 383,
654
+ 443
 
 
 
 
 
 
 
 
 
 
 
 
 
 
655
  ]
656
  },
657
  {
658
  "mentee_id": 26,
659
+ "goals": "Mình đang làm việc trong ngành Outsourcing muốn học thêm về Agile/Scrum.",
660
+ "career_id": 5,
661
  "domain_ids": [
662
+ 9
 
 
 
 
 
663
  ],
664
  "skill_ids": [
665
+ 501
 
666
  ],
667
  "ground_truth_mentors": [
668
+ 40,
669
+ 125,
670
+ 160,
671
+ 505
 
 
 
 
672
  ]
673
  },
674
  {
675
  "mentee_id": 27,
676
+ "goals": "Em muốn chuyển ngành sang Sản xuất nên cần học về Node.js, System Design, Kubernetes.",
677
+ "career_id": 1,
678
  "domain_ids": [
679
+ 51
 
 
 
680
  ],
681
  "skill_ids": [
682
+ 102,
683
+ 103,
684
+ 104
685
  ],
686
  "ground_truth_mentors": [
687
+ 176,
688
+ 201,
689
+ 281,
690
+ 306
 
 
 
 
 
 
 
 
 
 
 
 
 
 
691
  ]
692
  },
693
  {
694
  "mentee_id": 28,
695
+ "goals": "Em muốn chuyển ngành sang IT Outsourcing nên cần học về User Research, Figma/Adobe XD, Wireframing.",
696
  "career_id": 5,
697
  "domain_ids": [
698
+ 209
 
 
 
 
 
699
  ],
700
  "skill_ids": [
701
+ 114,
702
+ 113,
703
+ 115
704
  ],
705
  "ground_truth_mentors": [
706
+ 5,
707
+ 45,
708
+ 115,
709
+ 145,
710
+ 200,
711
+ 215,
712
+ 305,
713
+ 320,
714
+ 355,
715
+ 360,
716
+ 410,
717
+ 415,
718
+ 455,
719
+ 480,
720
+ 490
 
 
 
 
 
721
  ]
722
  },
723
  {
724
  "mentee_id": 29,
725
+ "goals": "Mục tiêu của tôi trở thành chuyên gia về SEO/SEM, Kubernetes.",
726
  "career_id": 2,
727
  "domain_ids": [
728
+ 204,
729
+ 203
 
 
 
 
730
  ],
731
  "skill_ids": [
732
+ 105,
733
+ 104
 
734
  ],
735
  "ground_truth_mentors": [
736
+ 2,
737
+ 27,
738
+ 32,
739
+ 42,
740
+ 47,
741
+ 52,
742
+ 62,
743
+ 87,
744
+ 112,
745
+ 137,
746
+ 142,
747
+ 162,
748
+ 197,
749
+ 212,
750
+ 237,
751
+ 267,
752
+ 302,
753
+ 317,
754
+ 327,
755
+ 352
756
  ]
757
  },
758
  {
759
  "mentee_id": 30,
760
+ "goals": "Mình đang làm việc trong ngành Logistics muốn học thêm về SQL, Data Analytics, Growth Hacking.",
761
+ "career_id": 5,
762
  "domain_ids": [
763
+ 205
 
 
 
764
  ],
765
  "skill_ids": [
766
+ 109,
767
+ 107,
768
+ 108
769
  ],
770
  "ground_truth_mentors": [
771
+ 3,
772
+ 43,
773
+ 48,
774
+ 63,
775
+ 113,
776
+ 143,
777
+ 198,
778
+ 213,
779
+ 303,
780
+ 318,
781
+ 353,
782
+ 358,
783
+ 408,
784
+ 413,
785
+ 428,
786
+ 453,
787
+ 478,
788
+ 488
 
 
789
  ]
790
  },
791
  {
792
  "mentee_id": 31,
793
+ "goals": "Em đang tìm mentor kinh nghiệm về Content Strategy trong lĩnh vực Retail, FMCG.",
794
+ "career_id": 2,
795
  "domain_ids": [
796
+ 204,
797
+ 203
 
 
 
 
798
  ],
799
  "skill_ids": [
800
+ 106
 
 
801
  ],
802
  "ground_truth_mentors": [
803
+ 2,
804
+ 27,
805
+ 32,
806
+ 42,
807
+ 47,
808
+ 52,
809
+ 62,
810
+ 87,
811
+ 112,
812
+ 137,
813
+ 142,
814
+ 162,
815
+ 197,
816
+ 212,
817
+ 237,
818
+ 267,
819
+ 302,
820
+ 317,
821
+ 327,
822
+ 352
823
  ]
824
  },
825
  {
826
  "mentee_id": 32,
827
+ "goals": "Mục tiêu của tôi trở thành chuyên gia về System Design, Java.",
828
+ "career_id": 1,
829
  "domain_ids": [
830
+ 1,
831
+ 2
 
 
832
  ],
833
  "skill_ids": [
834
+ 3,
835
+ 1
 
836
  ],
837
  "ground_truth_mentors": [
838
+ 71,
839
+ 101,
840
+ 131,
841
+ 151,
842
+ 391,
843
+ 496
 
 
 
 
 
 
 
 
 
 
 
 
 
 
844
  ]
845
  },
846
  {
847
  "mentee_id": 33,
848
+ "goals": "Cần tìm mentor giỏi về Python.",
849
+ "career_id": 4,
850
  "domain_ids": [
851
+ 5,
852
+ 1
 
 
 
 
853
  ],
854
  "skill_ids": [
855
+ 31
 
 
856
  ],
857
  "ground_truth_mentors": [
858
+ 8,
859
+ 23,
860
+ 148,
861
+ 168,
862
+ 293,
863
+ 298,
864
+ 323,
865
+ 333,
866
+ 348,
867
+ 398
 
 
 
 
 
 
 
 
 
 
868
  ]
869
  },
870
  {
871
  "mentee_id": 34,
872
+ "goals": "Tôi muốn học về SEO/SEM, Growth Hacking.",
873
+ "career_id": 2,
874
  "domain_ids": [
875
+ 12,
876
+ 13
 
 
 
 
877
  ],
878
  "skill_ids": [
879
+ 201,
880
+ 202
 
881
  ],
882
  "ground_truth_mentors": [
883
+ 92,
884
+ 117,
885
+ 182,
886
+ 227,
887
+ 232,
888
+ 242,
889
+ 247,
890
+ 252,
891
+ 262,
892
+ 287,
893
+ 372,
894
+ 377,
895
+ 382,
896
+ 432,
897
+ 442
 
 
 
 
 
898
  ]
899
  },
900
  {
901
  "mentee_id": 35,
902
+ "goals": "Tôi muốn nâng cao kỹ năng Python, Machine Learning.",
903
+ "career_id": 5,
904
  "domain_ids": [
905
+ 6
 
 
 
 
 
906
  ],
907
  "skill_ids": [
908
+ 31,
909
+ 33
910
  ],
911
  "ground_truth_mentors": [
912
+ 148,
913
+ 168,
914
+ 293,
915
+ 298,
916
+ 323,
917
+ 333,
918
+ 348
 
 
 
 
 
 
 
 
 
 
 
 
 
919
  ]
920
  },
921
  {
922
  "mentee_id": 36,
923
+ "goals": "Em muốn chuyển ngành sang Banking, IT Outsourcing nên cần học về Agile/Scrum, Jira/Confluence, Stakeholder Management.",
924
+ "career_id": 6,
925
  "domain_ids": [
926
+ 210,
927
+ 209
 
 
928
  ],
929
  "skill_ids": [
930
+ 117,
931
+ 120,
932
+ 119
933
  ],
934
  "ground_truth_mentors": [
935
+ 30,
936
+ 35,
937
+ 55,
938
+ 90,
939
+ 165,
940
+ 240,
941
+ 270,
942
+ 460,
943
+ 495
 
 
 
 
 
 
 
 
 
 
 
944
  ]
945
  },
946
  {
947
  "mentee_id": 37,
948
+ "goals": "Tôi muốn nâng cao kỹ năng React.js, Node.js, System Design.",
949
+ "career_id": 1,
950
  "domain_ids": [
951
+ 1
 
 
 
952
  ],
953
  "skill_ids": [
954
+ 101,
955
+ 102,
956
+ 103
957
  ],
958
  "ground_truth_mentors": [
959
+ 36,
960
+ 66,
961
+ 81,
962
+ 121,
963
+ 156,
964
+ 171,
965
+ 186,
966
+ 206,
967
+ 216,
968
+ 256,
969
+ 336,
970
+ 341,
971
+ 366,
972
+ 386,
973
+ 446,
974
+ 481,
975
+ 501
 
 
 
976
  ]
977
  },
978
  {
979
  "mentee_id": 38,
980
+ "goals": "Tôi muốn học về Risk Management, Agile/Scrum, Stakeholder Management.",
981
+ "career_id": 6,
982
  "domain_ids": [
983
+ 10
 
 
 
 
 
984
  ],
985
  "skill_ids": [
986
+ 503,
987
+ 501,
988
+ 502
989
  ],
990
  "ground_truth_mentors": [
991
+ 40,
992
+ 93,
993
+ 125,
994
+ 160,
995
+ 243,
996
+ 263,
997
+ 375,
998
+ 505
 
 
 
 
 
 
 
 
 
 
999
  ]
1000
  },
1001
  {
1002
  "mentee_id": 39,
1003
+ "goals": "Mục tiêu của tôi trở thành chuyên gia về Content Strategy.",
1004
+ "career_id": 2,
1005
  "domain_ids": [
1006
+ 204,
1007
+ 203
 
 
1008
  ],
1009
  "skill_ids": [
1010
+ 106
1011
  ],
1012
  "ground_truth_mentors": [
1013
+ 2,
1014
+ 27,
1015
+ 32,
1016
+ 42,
1017
+ 47,
1018
+ 52,
1019
+ 62,
1020
+ 87,
1021
+ 112,
1022
+ 137,
1023
+ 142,
1024
+ 162,
1025
+ 197,
1026
+ 212,
1027
+ 237,
1028
+ 267,
1029
+ 302,
1030
+ 317,
1031
+ 327,
1032
+ 352
1033
  ]
1034
  },
1035
  {
1036
  "mentee_id": 40,
1037
+ "goals": "Tôi muốn học về Visual Design.",
1038
+ "career_id": 4,
1039
  "domain_ids": [
1040
+ 6,
1041
+ 5
 
 
 
 
1042
  ],
1043
  "skill_ids": [
1044
+ 404
1045
  ],
1046
  "ground_truth_mentors": [
1047
+ 84,
1048
+ 483
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1049
  ]
1050
  },
1051
  {
1052
  "mentee_id": 41,
1053
+ "goals": "Em sinh viên muốn tìm hiểu về React.js E-commerce.",
1054
+ "career_id": 1,
1055
  "domain_ids": [
1056
+ 2
 
 
 
 
 
1057
  ],
1058
  "skill_ids": [
1059
+ 101
 
1060
  ],
1061
  "ground_truth_mentors": [
1062
+ 36,
1063
+ 66,
1064
+ 81,
1065
+ 121,
1066
+ 156,
1067
+ 171,
1068
+ 186,
1069
+ 206,
1070
+ 216,
1071
+ 256,
1072
+ 336,
1073
+ 341,
1074
+ 366,
1075
+ 386,
1076
+ 446,
1077
+ 481,
1078
+ 501
 
 
 
1079
  ]
1080
  },
1081
  {
1082
  "mentee_id": 42,
1083
+ "goals": "Em muốn chuyển ngành sang Logistics nên cần học về System Design, Node.js.",
1084
+ "career_id": 1,
1085
  "domain_ids": [
1086
+ 10
 
 
 
1087
  ],
1088
  "skill_ids": [
1089
+ 103,
1090
+ 102
1091
  ],
1092
  "ground_truth_mentors": [
1093
+ 91,
1094
+ 116,
1095
+ 181,
1096
+ 226,
1097
+ 231,
1098
+ 241,
1099
+ 246,
1100
+ 251,
1101
+ 261,
1102
+ 286,
1103
+ 361,
1104
+ 371,
1105
+ 376,
1106
+ 381,
1107
+ 431,
1108
+ 441
 
 
1109
  ]
1110
  },
1111
  {
1112
  "mentee_id": 43,
1113
+ "goals": "Tôi muốn nâng cao kỹ năng React.js, System Design.",
1114
+ "career_id": 1,
1115
  "domain_ids": [
1116
+ 10
 
 
 
 
 
1117
  ],
1118
  "skill_ids": [
1119
+ 101,
1120
+ 103
 
1121
  ],
1122
  "ground_truth_mentors": [
1123
+ 91,
1124
+ 116,
1125
+ 181,
1126
+ 226,
1127
+ 231,
1128
+ 241,
1129
+ 246,
1130
+ 251,
1131
+ 261,
1132
+ 286,
1133
+ 361,
1134
+ 371,
1135
+ 376,
1136
+ 381,
1137
+ 431,
1138
+ 441
 
 
 
 
1139
  ]
1140
  },
1141
  {
1142
  "mentee_id": 44,
1143
+ "goals": "Em muốn chuyển ngành sang FMCG nên cần học về SEO/SEM, Kubernetes.",
1144
+ "career_id": 2,
1145
  "domain_ids": [
1146
+ 203
 
 
 
 
 
1147
  ],
1148
  "skill_ids": [
1149
+ 105,
1150
+ 104
1151
  ],
1152
  "ground_truth_mentors": [
1153
+ 2,
1154
+ 27,
1155
+ 32,
1156
+ 42,
1157
+ 47,
1158
+ 52,
1159
+ 62,
1160
+ 87,
1161
+ 112,
1162
+ 137,
1163
+ 142,
1164
+ 162,
1165
+ 197,
1166
+ 212,
1167
+ 237,
1168
+ 267,
1169
+ 302,
1170
+ 317,
1171
+ 327,
1172
+ 352
1173
  ]
1174
  },
1175
  {
1176
  "mentee_id": 45,
1177
+ "goals": "Cần tìm mentor giỏi về Google Analytics, Brand Strategy, Jira.",
1178
+ "career_id": 2,
1179
  "domain_ids": [
1180
+ 3,
1181
+ 4
1182
+ ],
1183
+ "skill_ids": [
1184
+ 23,
1185
+ 22,
1186
+ 20
1187
  ],
1188
+ "ground_truth_mentors": [
1189
+ 7,
1190
+ 22,
1191
+ 57,
1192
+ 77,
1193
+ 97,
1194
+ 107,
1195
+ 147,
1196
+ 167,
1197
+ 292,
1198
+ 297,
1199
+ 322,
1200
+ 332,
1201
+ 347,
1202
+ 397,
1203
+ 402,
1204
+ 462,
1205
+ 472
1206
+ ]
1207
+ },
1208
+ {
1209
+ "mentee_id": 46,
1210
+ "goals": "Em là sinh viên muốn tìm hiểu về React.js, System Design, Node.js và Fintech.",
1211
+ "career_id": 1,
1212
+ "domain_ids": [
1213
  201
1214
  ],
1215
  "skill_ids": [
 
1216
  101,
1217
+ 103,
1218
+ 102
1219
  ],
1220
  "ground_truth_mentors": [
1221
  1,
1222
  11,
 
1223
  26,
1224
  31,
 
1225
  41,
1226
  46,
1227
  51,
1228
  61,
 
 
1229
  86,
 
1230
  111,
 
 
 
1231
  136,
1232
+ 141,
1233
+ 161,
1234
+ 196,
1235
+ 211,
1236
+ 236,
1237
+ 266,
1238
+ 276,
1239
+ 301,
1240
+ 316
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1241
  ]
1242
  },
1243
  {
1244
  "mentee_id": 47,
1245
+ "goals": "Cần tìm mentor giỏi về React.js, Node.js.",
1246
+ "career_id": 1,
1247
  "domain_ids": [
1248
+ 1
 
 
 
1249
  ],
1250
  "skill_ids": [
1251
+ 101,
1252
+ 102
 
1253
  ],
1254
  "ground_truth_mentors": [
1255
+ 36,
1256
+ 66,
1257
+ 81,
1258
+ 121,
1259
+ 156,
1260
+ 171,
1261
+ 186,
1262
+ 206,
1263
+ 216,
1264
+ 256,
1265
+ 336,
1266
+ 341,
1267
+ 366,
1268
+ 386,
1269
+ 446,
1270
+ 481,
1271
+ 501
 
 
 
1272
  ]
1273
  },
1274
  {
1275
  "mentee_id": 48,
1276
+ "goals": "Mình cần người hướng dẫn về React.js, Kubernetes, Node.js để phát triển sự nghiệp.",
1277
  "career_id": 1,
1278
  "domain_ids": [
1279
+ 201,
1280
+ 202
 
 
1281
  ],
1282
  "skill_ids": [
1283
+ 101,
1284
+ 104,
1285
+ 102
1286
  ],
1287
  "ground_truth_mentors": [
1288
+ 1,
1289
+ 11,
1290
+ 26,
1291
+ 31,
1292
+ 41,
1293
+ 46,
1294
+ 51,
1295
+ 61,
1296
+ 86,
1297
+ 111,
1298
+ 136,
1299
+ 141,
1300
+ 161,
1301
+ 196,
1302
+ 211,
1303
+ 236,
1304
+ 266,
1305
+ 276,
1306
+ 301,
1307
+ 316
1308
  ]
1309
  },
1310
  {
1311
  "mentee_id": 49,
1312
+ "goals": "Tôi muốn học về Risk Management.",
1313
+ "career_id": 6,
1314
  "domain_ids": [
1315
+ 6
 
 
 
1316
  ],
1317
  "skill_ids": [
1318
+ 503
 
1319
  ],
1320
  "ground_truth_mentors": [
1321
+ 69,
1322
+ 173,
1323
+ 188,
1324
+ 210,
1325
+ 218,
1326
+ 258,
1327
+ 338,
1328
+ 343,
1329
+ 368,
1330
+ 388
 
 
 
 
 
 
 
 
 
 
1331
  ]
1332
  },
1333
  {
1334
  "mentee_id": 50,
1335
+ "goals": "Em sinh viên muốn tìm hiểu về System Design Fintech, E-commerce.",
1336
+ "career_id": 1,
1337
  "domain_ids": [
1338
+ 1,
1339
+ 2
 
 
 
 
1340
  ],
1341
  "skill_ids": [
1342
+ 103
 
 
1343
  ],
1344
  "ground_truth_mentors": [
1345
+ 36,
1346
+ 66,
1347
+ 81,
1348
+ 121,
1349
+ 156,
1350
+ 171,
1351
+ 186,
1352
+ 206,
1353
+ 216,
1354
+ 256,
1355
+ 336,
1356
+ 341,
1357
+ 366,
1358
+ 386,
1359
+ 446,
1360
+ 481,
1361
+ 501
 
 
 
1362
  ]
1363
  },
1364
  {
1365
  "mentee_id": 51,
1366
+ "goals": "Em muốn chuyển ngành sang FMCG nên cần học về SEO/SEM, Data Tracking.",
1367
  "career_id": 2,
1368
  "domain_ids": [
1369
+ 4
 
 
 
 
 
1370
  ],
1371
  "skill_ids": [
1372
+ 201,
1373
+ 204
1374
  ],
1375
  "ground_truth_mentors": [
1376
+ 82,
1377
+ 122,
1378
+ 157,
1379
+ 172,
1380
+ 187,
1381
+ 207,
1382
+ 217,
1383
+ 257,
1384
+ 337,
1385
+ 342,
1386
+ 367,
1387
+ 387,
1388
+ 482,
1389
+ 502
1390
  ]
1391
  },
1392
  {
1393
  "mentee_id": 52,
1394
+ "goals": "Em muốn chuyển ngành sang SaaS, Thương mại điện tử nên cần học về Wireframing, Design System.",
1395
  "career_id": 4,
1396
  "domain_ids": [
1397
+ 206,
1398
+ 202
 
 
1399
  ],
1400
  "skill_ids": [
1401
+ 115,
1402
+ 116
 
1403
  ],
1404
  "ground_truth_mentors": [
1405
+ 164,
1406
+ 239,
1407
+ 329,
1408
+ 419
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1409
  ]
1410
  },
1411
  {
1412
  "mentee_id": 53,
1413
+ "goals": "Mình cần người hướng dẫn về Python để phát triển sự nghiệp.",
1414
+ "career_id": 3,
1415
  "domain_ids": [
1416
+ 6
 
 
 
 
 
1417
  ],
1418
  "skill_ids": [
1419
+ 31
 
1420
  ],
1421
  "ground_truth_mentors": [
1422
+ 148,
1423
+ 168,
1424
+ 293,
1425
+ 298,
1426
+ 323,
1427
+ 333,
1428
+ 348
 
 
 
 
 
 
 
 
 
 
 
 
 
1429
  ]
1430
  },
1431
  {
1432
  "mentee_id": 54,
1433
+ "goals": "Mục tiêu của tôi trở thành chuyên gia về Content Strategy.",
1434
+ "career_id": 2,
1435
  "domain_ids": [
1436
+ 20
 
 
 
 
 
1437
  ],
1438
  "skill_ids": [
1439
+ 203
1440
  ],
1441
  "ground_truth_mentors": [
1442
+ 362
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1443
  ]
1444
  },
1445
  {
1446
  "mentee_id": 55,
1447
+ "goals": "Em đang tìm mentor kinh nghiệm về SQL trong lĩnh vực E-commerce.",
1448
+ "career_id": 5,
1449
  "domain_ids": [
1450
+ 2
 
 
 
1451
  ],
1452
  "skill_ids": [
1453
+ 13
 
1454
  ],
1455
  "ground_truth_mentors": [
 
 
1456
  56,
 
 
 
 
1457
  106,
 
1458
  146,
 
1459
  166,
 
1460
  291,
1461
  296,
1462
  321,
 
1463
  346,
1464
+ 401,
1465
+ 499
1466
+ ]
1467
+ },
1468
+ {
1469
+ "mentee_id": 56,
1470
+ "goals": "Em là sinh viên muốn tìm hiểu về SEO/SEM, Content Strategy, Kubernetes và FMCG.",
1471
+ "career_id": 2,
1472
+ "domain_ids": [
1473
+ 203
1474
+ ],
1475
+ "skill_ids": [
1476
+ 105,
1477
+ 106,
1478
+ 104
1479
+ ],
1480
+ "ground_truth_mentors": [
1481
+ 2,
1482
+ 27,
1483
+ 32,
1484
+ 42,
1485
+ 47,
1486
+ 52,
1487
+ 62,
1488
+ 87,
1489
+ 112,
1490
+ 137,
1491
+ 142,
1492
+ 162,
1493
+ 197,
1494
+ 212,
1495
+ 237,
1496
+ 267,
1497
+ 302,
1498
+ 317,
1499
+ 327,
1500
+ 352
1501
  ]
1502
  },
1503
  {
1504
+ "mentee_id": 57,
1505
+ "goals": "Em muốn chuyển ngành sang Fintech, Thương mại điện tử nên cần học về System Design.",
1506
  "career_id": 1,
1507
  "domain_ids": [
1508
+ 201,
1509
+ 202
 
 
 
 
1510
  ],
1511
  "skill_ids": [
1512
+ 103
 
 
1513
  ],
1514
  "ground_truth_mentors": [
1515
  1,
1516
  11,
 
1517
  26,
1518
  31,
 
1519
  41,
1520
  46,
1521
  51,
1522
  61,
 
 
1523
  86,
 
1524
  111,
 
 
 
1525
  136,
1526
+ 141,
1527
+ 161,
1528
+ 196,
1529
+ 211,
1530
+ 236,
1531
+ 266,
1532
+ 276,
1533
+ 301,
1534
+ 316
1535
  ]
1536
  },
1537
  {
1538
+ "mentee_id": 58,
1539
+ "goals": "Tôi muốn nâng cao kỹ năng Python, Visual Design.",
1540
  "career_id": 4,
1541
  "domain_ids": [
 
 
 
 
 
 
 
 
 
 
 
1542
  8,
1543
+ 7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1544
  ],
1545
  "skill_ids": [
1546
+ 402,
1547
+ 404
 
1548
  ],
1549
  "ground_truth_mentors": [
1550
+ 39,
1551
+ 159,
1552
+ 174,
1553
+ 189,
1554
+ 219,
1555
+ 259,
1556
+ 339,
1557
+ 344,
1558
+ 369,
1559
+ 389,
1560
+ 504
1561
  ]
1562
  },
1563
  {
1564
  "mentee_id": 59,
1565
+ "goals": "Mình đang làm việc trong ngành Edtech muốn học thêm về Design System, Wireframing, Figma/Adobe XD.",
1566
+ "career_id": 4,
1567
  "domain_ids": [
1568
+ 207
 
 
 
 
 
1569
  ],
1570
  "skill_ids": [
1571
+ 116,
1572
+ 115,
1573
+ 113
1574
  ],
1575
  "ground_truth_mentors": [
1576
+ 29,
1577
+ 34,
1578
+ 54,
1579
+ 65,
1580
+ 89,
1581
+ 140,
1582
+ 164,
1583
+ 239,
1584
+ 269,
1585
+ 329,
1586
+ 430,
1587
+ 459,
1588
+ 494
 
 
 
 
 
 
 
1589
  ]
1590
  },
1591
  {
1592
  "mentee_id": 60,
1593
+ "goals": "Mình đang làm việc trong ngành Thương mại điện tử, Logistics muốn học thêm về SQL.",
1594
+ "career_id": 5,
1595
  "domain_ids": [
1596
+ 202,
1597
+ 205
 
 
 
 
1598
  ],
1599
  "skill_ids": [
1600
+ 109
 
1601
  ],
1602
  "ground_truth_mentors": [
1603
+ 3,
1604
+ 28,
1605
+ 33,
1606
+ 43,
1607
+ 48,
1608
+ 53,
1609
+ 63,
1610
+ 88,
1611
+ 113,
1612
+ 138,
1613
+ 143,
1614
+ 163,
1615
+ 198,
1616
+ 213,
1617
+ 238,
1618
+ 268,
1619
+ 303,
1620
+ 318,
1621
+ 328,
1622
+ 353
1623
  ]
1624
  },
1625
  {
1626
  "mentee_id": 61,
1627
+ "goals": "Em muốn chuyển ngành sang SaaS nên cần học về Growth Hacking, SQL, Data Analytics.",
1628
+ "career_id": 3,
1629
  "domain_ids": [
1630
+ 206
 
 
 
1631
  ],
1632
  "skill_ids": [
1633
+ 108,
1634
+ 109,
1635
+ 107
1636
  ],
1637
  "ground_truth_mentors": [
1638
+ 113,
1639
+ 143,
1640
+ 198,
1641
+ 213,
1642
+ 318,
1643
+ 353,
1644
+ 408,
1645
+ 413,
1646
+ 453,
1647
+ 488
 
 
 
 
 
 
 
 
 
 
1648
  ]
1649
  },
1650
  {
1651
  "mentee_id": 62,
1652
+ "goals": "Mình đang làm việc trong ngành Fintech muốn học thêm về React.js.",
1653
+ "career_id": 1,
1654
  "domain_ids": [
1655
+ 1
 
 
 
1656
  ],
1657
  "skill_ids": [
1658
+ 101
1659
  ],
1660
  "ground_truth_mentors": [
1661
+ 36,
1662
+ 66,
1663
+ 81,
1664
+ 121,
1665
+ 156,
1666
+ 171,
1667
+ 186,
1668
+ 206,
1669
+ 216,
1670
+ 256,
1671
+ 336,
1672
+ 341,
1673
+ 366,
1674
+ 386,
1675
+ 446,
1676
+ 481,
1677
+ 501
1678
  ]
1679
  },
1680
  {
1681
  "mentee_id": 63,
1682
+ "goals": "Em sinh viên muốn tìm hiểu về User Research và Advertising, FMCG.",
1683
+ "career_id": 4,
1684
  "domain_ids": [
 
 
 
 
 
 
 
 
 
1685
  15,
1686
+ 14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1687
  ],
1688
  "skill_ids": [
1689
+ 302
 
 
1690
  ],
1691
  "ground_truth_mentors": [
1692
+ 118,
1693
+ 373,
1694
+ 383,
1695
+ 443
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1696
  ]
1697
  },
1698
  {
1699
+ "mentee_id": 64,
1700
+ "goals": "Mình cần người hướng dẫn về Tableau, Python, SQL để phát triển sự nghiệp.",
1701
  "career_id": 4,
1702
  "domain_ids": [
1703
+ 14,
1704
+ 11
 
 
1705
  ],
1706
  "skill_ids": [
1707
+ 403,
1708
+ 402,
1709
+ 401
1710
  ],
1711
  "ground_truth_mentors": [
 
 
 
 
1712
  94,
 
 
 
 
 
 
1713
  183,
1714
+ 244,
1715
+ 253,
1716
+ 288,
1717
+ 379
 
 
 
 
1718
  ]
1719
  },
1720
  {
1721
+ "mentee_id": 65,
1722
+ "goals": "Mình đang làm việc trong ngành E-commerce, IT Services muốn học thêm về Power BI, Risk Management.",
1723
+ "career_id": 5,
1724
  "domain_ids": [
1725
+ 11,
1726
+ 16
 
 
1727
  ],
1728
  "skill_ids": [
1729
+ 504,
1730
+ 503
1731
  ],
1732
  "ground_truth_mentors": [
1733
+ 184,
1734
+ 248,
1735
+ 289
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1736
  ]
1737
  },
1738
  {
1739
+ "mentee_id": 66,
1740
+ "goals": "Em muốn chuyển ngành sang Thương mại điện tử, Fintech nên cần học về Node.js, System Design, React.js.",
1741
+ "career_id": 1,
1742
  "domain_ids": [
1743
+ 202,
1744
+ 201
 
 
 
 
1745
  ],
1746
  "skill_ids": [
1747
+ 102,
1748
+ 103,
1749
+ 101
1750
  ],
1751
  "ground_truth_mentors": [
1752
+ 1,
1753
+ 11,
1754
+ 26,
1755
+ 31,
1756
+ 41,
1757
+ 46,
1758
+ 51,
1759
+ 61,
1760
+ 86,
1761
+ 111,
1762
+ 136,
1763
+ 141,
1764
+ 161,
1765
+ 196,
1766
+ 211,
1767
+ 236,
1768
+ 266,
1769
+ 276,
1770
+ 301,
1771
+ 316
1772
  ]
1773
  },
1774
  {
1775
+ "mentee_id": 67,
1776
+ "goals": "Mục tiêu của tôi trở thành chuyên gia về User Research, Wireframing.",
1777
+ "career_id": 5,
1778
  "domain_ids": [
1779
  209,
1780
  210
1781
  ],
 
 
 
 
1782
  "skill_ids": [
1783
+ 114,
1784
+ 115
1785
  ],
1786
  "ground_truth_mentors": [
1787
  5,
 
 
 
1788
  45,
 
 
 
 
1789
  115,
 
1790
  145,
 
1791
  200,
1792
  215,
 
 
1793
  305,
1794
  320,
1795
+ 355,
1796
+ 360,
1797
+ 410,
1798
+ 415,
1799
+ 455,
1800
+ 480,
1801
+ 490
1802
  ]
1803
  },
1804
  {
1805
+ "mentee_id": 68,
1806
+ "goals": "Mình đang làm việc trong ngành SaaS muốn học thêm về SQL, Data Analytics, Growth Hacking.",
1807
+ "career_id": 5,
1808
  "domain_ids": [
1809
+ 206
 
 
 
 
 
1810
  ],
1811
  "skill_ids": [
1812
+ 109,
1813
+ 107,
1814
+ 108
1815
  ],
1816
  "ground_truth_mentors": [
1817
+ 113,
1818
+ 143,
1819
+ 198,
1820
+ 213,
1821
+ 318,
1822
+ 353,
1823
+ 408,
1824
+ 413,
1825
+ 453,
1826
+ 488
 
 
 
 
 
 
 
1827
  ]
1828
  },
1829
  {
1830
+ "mentee_id": 69,
1831
+ "goals": "Em đang tìm mentor kinh nghiệm về Node.js trong lĩnh vực Thương mại điện tử, Fintech.",
1832
+ "career_id": 1,
1833
  "domain_ids": [
1834
+ 202,
1835
+ 201
 
 
1836
  ],
1837
  "skill_ids": [
1838
+ 102
 
1839
  ],
1840
  "ground_truth_mentors": [
1841
+ 1,
1842
+ 11,
1843
+ 26,
1844
+ 31,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1845
  41,
1846
+ 46,
1847
+ 51,
1848
+ 61,
1849
+ 86,
1850
+ 111,
1851
+ 136,
1852
+ 141,
1853
+ 161,
1854
+ 196,
1855
+ 211,
1856
+ 236,
1857
+ 266,
1858
+ 276,
1859
+ 301,
1860
+ 316
 
 
 
 
 
 
1861
  ]
1862
  },
1863
  {
1864
+ "mentee_id": 70,
1865
+ "goals": "Tôi muốn học về Growth Hacking.",
1866
+ "career_id": 4,
1867
  "domain_ids": [
1868
+ 206,
1869
+ 205
 
 
 
 
1870
  ],
1871
  "skill_ids": [
1872
  108
1873
  ],
1874
  "ground_truth_mentors": [
1875
  3,
 
 
 
1876
  43,
1877
  48,
 
1878
  63,
 
1879
  113,
 
1880
  143,
 
1881
  198,
1882
  213,
 
 
1883
  303,
1884
  318,
1885
+ 353,
1886
+ 358,
1887
+ 408,
1888
+ 413,
1889
+ 428,
1890
+ 453,
1891
+ 478,
1892
+ 488
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1893
  ]
1894
  },
1895
  {
1896
+ "mentee_id": 71,
1897
+ "goals": "Em muốn chuyển ngành sang E-commerce nên cần học về Node.js.",
1898
+ "career_id": 4,
1899
  "domain_ids": [
1900
+ 2
 
 
 
 
 
1901
  ],
1902
  "skill_ids": [
1903
+ 102
 
1904
  ],
1905
  "ground_truth_mentors": [
 
 
 
 
 
 
 
1906
  36,
 
 
 
 
 
 
 
1907
  66,
1908
  81,
1909
+ 121,
1910
+ 156,
1911
+ 171,
1912
+ 186,
1913
+ 206,
1914
+ 216,
1915
+ 256,
1916
+ 336,
1917
+ 341,
1918
+ 366,
1919
+ 386,
1920
+ 446,
1921
+ 481,
1922
+ 501
1923
  ]
1924
  },
1925
  {
1926
+ "mentee_id": 72,
1927
+ "goals": "Tôi muốn học về User Research, Figma/Adobe XD, Wireframing.",
1928
+ "career_id": 5,
1929
  "domain_ids": [
1930
+ 209,
1931
+ 208
 
 
1932
  ],
1933
  "skill_ids": [
1934
+ 114,
1935
+ 113,
1936
+ 115
1937
  ],
1938
  "ground_truth_mentors": [
1939
+ 5,
1940
+ 29,
1941
+ 34,
1942
+ 45,
1943
+ 50,
1944
+ 54,
1945
+ 65,
1946
+ 89,
1947
+ 115,
1948
+ 140,
1949
+ 145,
1950
+ 200,
1951
+ 215,
1952
+ 269,
1953
+ 305,
1954
+ 320,
1955
+ 355,
1956
+ 360,
1957
+ 410,
1958
+ 415
1959
  ]
1960
  },
1961
  {
1962
+ "mentee_id": 73,
1963
+ "goals": "Tôi muốn học về SEO/SEM, Content Strategy, Data Analytics.",
1964
  "career_id": 2,
1965
  "domain_ids": [
1966
+ 204,
1967
+ 203
 
 
 
 
1968
  ],
1969
  "skill_ids": [
1970
  105,
1971
+ 106,
1972
+ 107
1973
  ],
1974
  "ground_truth_mentors": [
1975
  2,
 
1976
  27,
1977
  32,
1978
  42,
 
1988
  212,
1989
  237,
1990
  267,
 
1991
  302,
1992
+ 317,
1993
+ 327,
1994
+ 352
1995
  ]
1996
  },
1997
  {
1998
+ "mentee_id": 74,
1999
+ "goals": "Mục tiêu của tôi trở thành chuyên gia về Design System.",
2000
  "career_id": 4,
2001
  "domain_ids": [
2002
+ 1,
2003
+ 5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2004
  ],
2005
  "skill_ids": [
2006
+ 43
 
2007
  ],
2008
  "ground_truth_mentors": [
2009
+ 58,
2010
+ 108,
2011
+ 149,
2012
+ 299
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2013
  ]
2014
  },
2015
  {
2016
+ "mentee_id": 75,
2017
+ "goals": "Tôi muốn học về Tableau/Power BI.",
2018
  "career_id": 5,
2019
  "domain_ids": [
2020
+ 206,
2021
+ 205
 
 
 
 
2022
  ],
2023
  "skill_ids": [
2024
+ 111
2025
  ],
2026
  "ground_truth_mentors": [
2027
  4,
 
2028
  28,
2029
  33,
2030
  44,
 
2032
  53,
2033
  64,
2034
  88,
 
2035
  139,
 
2036
  163,
 
 
2037
  238,
2038
  268,
2039
  304,
2040
+ 328,
2041
+ 359,
2042
+ 418,
2043
+ 429,
2044
+ 458,
2045
+ 479,
2046
+ 493
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2047
  ]
2048
  },
2049
  {
2050
+ "mentee_id": 76,
2051
+ "goals": "Em muốn chuyển ngành sang IT Services nên cần học về Agile/Scrum, Risk Management.",
2052
+ "career_id": 6,
2053
  "domain_ids": [
2054
+ 16
 
 
 
2055
  ],
2056
  "skill_ids": [
2057
+ 601,
2058
+ 603
2059
  ],
2060
  "ground_truth_mentors": [
2061
+ 95,
2062
+ 255
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2063
  ]
2064
  },
2065
  {
2066
+ "mentee_id": 77,
2067
+ "goals": "Tôi muốn nâng cao kỹ năng Design Thinking, User Research, Figma.",
2068
+ "career_id": 5,
2069
  "domain_ids": [
2070
+ 5
 
 
 
 
 
2071
  ],
2072
  "skill_ids": [
2073
+ 303,
2074
+ 302,
2075
+ 301
2076
  ],
2077
  "ground_truth_mentors": [
 
2078
  83,
 
2079
  158,
 
2080
  208,
 
 
 
 
 
 
 
2081
  503
2082
  ]
2083
  },
2084
  {
2085
+ "mentee_id": 78,
2086
+ "goals": "Tôi muốn học về System Design, React.js.",
2087
  "career_id": 4,
2088
  "domain_ids": [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2089
  2
2090
  ],
2091
  "skill_ids": [
2092
+ 103,
2093
+ 101
2094
  ],
2095
  "ground_truth_mentors": [
 
 
 
 
 
2096
  36,
 
 
 
 
2097
  66,
2098
  81,
 
 
 
 
2099
  121,
2100
+ 156,
2101
+ 171,
2102
+ 186,
2103
+ 206,
2104
+ 216,
2105
+ 256,
2106
+ 336,
2107
+ 341,
2108
+ 366,
2109
+ 386,
2110
+ 446,
2111
+ 481,
2112
+ 501
2113
  ]
2114
  },
2115
  {
2116
+ "mentee_id": 79,
2117
+ "goals": "Cần tìm mentor giỏi về SEO/SEM, Kubernetes, Content Strategy.",
2118
  "career_id": 2,
2119
  "domain_ids": [
2120
+ 204
 
 
 
 
 
2121
  ],
2122
  "skill_ids": [
2123
  105,
2124
+ 104,
2125
+ 106
2126
  ],
2127
  "ground_truth_mentors": [
2128
  2,
 
2129
  27,
2130
  32,
 
2131
  47,
2132
  52,
2133
  62,
2134
  87,
2135
  112,
 
2136
  142,
2137
  162,
2138
  197,
2139
  212,
2140
  237,
2141
  267,
 
2142
  302,
2143
+ 317,
2144
+ 327,
2145
+ 352,
2146
+ 407,
2147
+ 412
2148
  ]
2149
  },
2150
  {
2151
+ "mentee_id": 80,
2152
+ "goals": "Mình cần người hướng dẫn về Risk Management để phát triển sự nghiệp.",
2153
+ "career_id": 6,
2154
  "domain_ids": [
2155
+ 18
 
 
 
 
 
2156
  ],
2157
  "skill_ids": [
2158
+ 603
2159
+ ],
2160
+ "ground_truth_mentors": [
2161
+ 230,
2162
+ 235,
2163
+ 250,
2164
+ 265,
2165
+ 290,
2166
+ 435
 
 
 
 
 
 
 
 
 
 
2167
  ]
2168
  },
2169
  {
2170
+ "mentee_id": 81,
2171
+ "goals": "Mình đang làm việc trong ngành Banking muốn học thêm về SQL, Tableau.",
2172
  "career_id": 4,
2173
  "domain_ids": [
2174
+ 7
 
 
 
 
 
2175
  ],
2176
  "skill_ids": [
2177
+ 13,
2178
+ 15
2179
  ],
2180
  "ground_truth_mentors": [
2181
+ 74,
2182
+ 105,
2183
+ 134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2184
  ]
2185
  },
2186
  {
2187
+ "mentee_id": 82,
2188
+ "goals": "Mình cần người hướng dẫn về Agile/Scrum để phát triển sự nghiệp.",
2189
+ "career_id": 5,
2190
  "domain_ids": [
2191
+ 210,
 
 
2192
  209
2193
  ],
2194
  "skill_ids": [
2195
+ 117
 
2196
  ],
2197
  "ground_truth_mentors": [
2198
  30,
 
2202
  165,
2203
  240,
2204
  270,
 
 
2205
  460,
2206
  495
2207
  ]
2208
  },
2209
  {
2210
+ "mentee_id": 83,
2211
+ "goals": "Tôi muốn nâng cao kỹ năng Machine Learning, Data Visualization.",
2212
+ "career_id": 5,
2213
  "domain_ids": [
2214
+ 8,
2215
+ 9
 
 
 
 
2216
  ],
2217
  "skill_ids": [
2218
+ 51,
2219
+ 52
2220
  ],
2221
  "ground_truth_mentors": [
2222
+ 10,
2223
+ 25,
2224
+ 150,
2225
+ 170,
2226
+ 295,
2227
+ 300,
2228
+ 325,
2229
+ 335,
2230
+ 350,
2231
+ 400,
2232
+ 465
 
 
 
 
 
 
 
2233
  ]
2234
  },
2235
  {
2236
+ "mentee_id": 84,
2237
+ "goals": "Mục tiêu của tôi trở thành chuyên gia về React.js, Kubernetes.",
2238
  "career_id": 1,
2239
  "domain_ids": [
2240
+ 11
2241
  ],
2242
+ "skill_ids": [
2243
+ 101,
2244
+ 104
2245
+ ],
2246
+ "ground_truth_mentors": [
2247
+ 91,
2248
+ 116,
2249
+ 181,
2250
+ 226,
2251
+ 231,
2252
+ 241,
2253
+ 246,
2254
+ 251,
2255
+ 261,
2256
+ 271,
2257
+ 286,
2258
+ 311,
2259
+ 361,
2260
+ 371,
2261
+ 376,
2262
+ 381,
2263
+ 431,
2264
+ 441
2265
+ ]
2266
+ },
2267
+ {
2268
+ "mentee_id": 85,
2269
+ "goals": "Tôi muốn nâng cao kỹ năng Jira.",
2270
+ "career_id": 6,
2271
+ "domain_ids": [
2272
+ 7
2273
  ],
2274
  "skill_ids": [
2275
+ 602
 
 
2276
  ],
2277
  "ground_truth_mentors": [
2278
+ 70,
2279
+ 124
2280
+ ]
2281
+ },
2282
+ {
2283
+ "mentee_id": 86,
2284
+ "goals": "Mình đang làm việc trong ngành E-commerce, Logistics và muốn học thêm về React.js, Kubernetes.",
2285
+ "career_id": 1,
2286
+ "domain_ids": [
2287
  11,
2288
+ 10
2289
+ ],
2290
+ "skill_ids": [
2291
+ 101,
2292
+ 104
2293
+ ],
2294
+ "ground_truth_mentors": [
 
 
 
 
2295
  91,
 
2296
  116,
2297
+ 181,
2298
+ 226,
2299
+ 231,
2300
+ 241,
2301
+ 246,
2302
+ 251,
2303
+ 261,
2304
+ 271,
2305
+ 286,
2306
+ 311,
2307
+ 361,
2308
+ 371,
2309
+ 376,
2310
+ 381,
2311
+ 431,
2312
+ 441
2313
  ]
2314
  },
2315
  {
2316
+ "mentee_id": 87,
2317
+ "goals": "Tôi muốn nâng cao kỹ năng Python/R.",
2318
  "career_id": 3,
2319
  "domain_ids": [
2320
+ 205,
2321
+ 206
 
 
2322
  ],
2323
  "skill_ids": [
2324
+ 110
 
 
2325
  ],
2326
  "ground_truth_mentors": [
2327
+ 4,
2328
+ 28,
2329
+ 33,
2330
+ 44,
2331
+ 49,
2332
+ 53,
2333
+ 64,
2334
+ 88,
2335
+ 139,
2336
+ 163,
2337
+ 238,
2338
+ 268,
2339
+ 304,
2340
+ 328,
2341
+ 359,
2342
+ 418,
2343
+ 429,
2344
+ 458,
2345
+ 479,
2346
+ 493
2347
  ]
2348
  },
2349
  {
2350
+ "mentee_id": 88,
2351
+ "goals": "Cần tìm mentor giỏi về SEO/SEM, Content Strategy.",
2352
  "career_id": 2,
2353
  "domain_ids": [
2354
+ 204
 
 
 
 
 
2355
  ],
2356
  "skill_ids": [
2357
+ 105,
2358
+ 106
2359
  ],
2360
  "ground_truth_mentors": [
2361
+ 2,
 
2362
  27,
2363
  32,
2364
+ 47,
 
2365
  52,
2366
+ 62,
2367
  87,
2368
+ 112,
2369
+ 142,
 
2370
  162,
2371
+ 197,
2372
+ 212,
2373
  237,
2374
  267,
2375
+ 302,
2376
+ 317,
2377
+ 327,
2378
+ 352,
2379
+ 407,
2380
+ 412
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2381
  ]
2382
  },
2383
  {
2384
+ "mentee_id": 89,
2385
+ "goals": "Em sinh viên muốn tìm hiểu về Jira Retail, FMCG.",
2386
+ "career_id": 2,
2387
  "domain_ids": [
2388
+ 3,
2389
+ 4
 
 
2390
  ],
2391
  "skill_ids": [
2392
+ 20
 
2393
  ],
2394
  "ground_truth_mentors": [
2395
+ 7,
2396
+ 22,
2397
+ 57,
2398
+ 77,
2399
+ 97,
2400
+ 107,
2401
+ 147,
2402
+ 167,
2403
+ 292,
2404
+ 297,
2405
+ 322,
2406
+ 332,
2407
+ 347,
2408
+ 397,
2409
+ 402,
2410
+ 462,
2411
+ 472
 
 
 
2412
  ]
2413
  },
2414
  {
2415
+ "mentee_id": 90,
2416
+ "goals": "Em muốn chuyển ngành sang Healthtech, Edtech nên cần học về Wireframing, Design System.",
2417
+ "career_id": 4,
2418
  "domain_ids": [
2419
+ 208,
2420
+ 207
 
 
2421
  ],
2422
  "skill_ids": [
2423
  115,
2424
+ 116
2425
  ],
2426
  "ground_truth_mentors": [
2427
  5,
 
2428
  29,
2429
  34,
2430
  45,
 
2432
  54,
2433
  65,
2434
  89,
 
2435
  140,
 
2436
  164,
 
 
2437
  239,
2438
  269,
2439
  305,
2440
+ 329,
2441
+ 360,
2442
+ 430,
2443
+ 459,
2444
+ 480,
2445
+ 494
2446
  ]
2447
  },
2448
  {
2449
+ "mentee_id": 91,
2450
+ "goals": "Em muốn chuyển ngành sang E-commerce, Fintech nên cần học về Kubernetes.",
2451
+ "career_id": 1,
2452
  "domain_ids": [
2453
+ 2,
2454
+ 1
2455
  ],
2456
+ "skill_ids": [
2457
+ 104
2458
+ ],
2459
+ "ground_truth_mentors": [
2460
+ 81,
2461
+ 171,
2462
+ 186,
2463
+ 206,
2464
+ 216,
2465
+ 341,
2466
+ 366,
2467
+ 481
2468
+ ]
2469
+ },
2470
+ {
2471
+ "mentee_id": 92,
2472
+ "goals": "Em là sinh viên muốn tìm hiểu về SEO/SEM, Content Strategy, Growth Hacking và Retail.",
2473
+ "career_id": 2,
2474
+ "domain_ids": [
2475
+ 53
2476
  ],
2477
  "skill_ids": [
 
2478
  201,
2479
+ 203,
2480
+ 202
2481
  ],
2482
  "ground_truth_mentors": [
 
 
 
 
 
 
 
 
 
 
2483
  177,
 
 
 
2484
  202,
2485
+ 282,
2486
+ 307
 
 
 
2487
  ]
2488
  },
2489
  {
2490
+ "mentee_id": 93,
2491
+ "goals": "Em muốn chuyển ngành sang Technology nên cần học về Data Visualization, Python/SQL, Statistical Modeling.",
2492
+ "career_id": 5,
2493
  "domain_ids": [
2494
+ 8
 
 
 
2495
  ],
2496
  "skill_ids": [
2497
+ 52,
2498
+ 50,
2499
+ 53
2500
  ],
2501
  "ground_truth_mentors": [
2502
+ 10,
2503
+ 25,
2504
+ 300,
2505
+ 400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2506
  ]
2507
  },
2508
  {
2509
+ "mentee_id": 94,
2510
+ "goals": "Em sinh viên muốn tìm hiểu về System Design, Node.js, React.js Fintech, Thương mại điện tử.",
2511
  "career_id": 1,
2512
  "domain_ids": [
2513
  201,
2514
  202
2515
  ],
 
 
 
 
2516
  "skill_ids": [
2517
+ 103,
2518
+ 102,
2519
+ 101
2520
  ],
2521
  "ground_truth_mentors": [
2522
  1,
2523
  11,
 
2524
  26,
2525
  31,
 
2526
  41,
2527
  46,
2528
  51,
2529
  61,
 
 
2530
  86,
 
2531
  111,
 
 
 
2532
  136,
2533
+ 141,
2534
+ 161,
2535
+ 196,
2536
+ 211,
2537
+ 236,
2538
+ 266,
2539
+ 276,
2540
+ 301,
2541
+ 316
2542
  ]
2543
  },
2544
  {
2545
+ "mentee_id": 95,
2546
+ "goals": "Cần tìm mentor giỏi về Power BI, Stakeholder Management, Risk Management.",
2547
+ "career_id": 5,
2548
  "domain_ids": [
2549
+ 209
 
2550
  ],
2551
+ "skill_ids": [
2552
+ 504,
2553
+ 502,
2554
+ 503
2555
+ ],
2556
+ "ground_truth_mentors": [
2557
+ 280
2558
+ ]
2559
+ },
2560
+ {
2561
+ "mentee_id": 96,
2562
+ "goals": "Cần tìm mentor giỏi về Jira/Confluence, Risk Management, Strategic Planning.",
2563
+ "career_id": 6,
2564
+ "domain_ids": [
2565
+ 8,
2566
  5
2567
  ],
2568
  "skill_ids": [
2569
+ 63,
2570
+ 61,
2571
+ 62
2572
  ],
2573
  "ground_truth_mentors": [
2574
+ 100,
2575
+ 110,
2576
+ 464,
2577
+ 475
 
 
 
 
 
 
2578
  ]
2579
  },
2580
  {
2581
+ "mentee_id": 97,
2582
+ "goals": "Em đang tìm mentor kinh nghiệm về Design System trong lĩnh vực Banking.",
2583
  "career_id": 4,
2584
  "domain_ids": [
2585
+ 7
 
2586
  ],
2587
+ "skill_ids": [
2588
+ 43
2589
+ ],
2590
+ "ground_truth_mentors": [
2591
+ 149,
2592
+ 169,
2593
+ 294,
2594
+ 299,
2595
+ 324,
2596
+ 349,
2597
+ 404
2598
+ ]
2599
+ },
2600
+ {
2601
+ "mentee_id": 98,
2602
+ "goals": "Em đang tìm mentor có kinh nghiệm về SQL, Machine Learning trong lĩnh vực SaaS, Logistics.",
2603
+ "career_id": 2,
2604
+ "domain_ids": [
2605
+ 206,
2606
+ 205
2607
  ],
2608
  "skill_ids": [
2609
+ 109,
2610
+ 112
2611
  ],
2612
  "ground_truth_mentors": [
2613
+ 3,
2614
+ 4,
2615
+ 28,
2616
+ 33,
2617
+ 43,
2618
+ 44,
2619
+ 48,
2620
+ 49,
2621
+ 53,
2622
+ 63,
2623
+ 64,
2624
+ 88,
2625
+ 113,
2626
+ 139,
2627
+ 143,
2628
+ 163,
2629
+ 198,
2630
+ 213,
2631
+ 238,
2632
+ 268
2633
+ ]
2634
+ },
2635
+ {
2636
+ "mentee_id": 99,
2637
+ "goals": "Em muốn chuyển ngành sang Edtech, SaaS nên cần học về User Research.",
2638
+ "career_id": 4,
2639
+ "domain_ids": [
2640
+ 207,
2641
+ 206
2642
+ ],
2643
+ "skill_ids": [
2644
+ 114
2645
+ ],
2646
+ "ground_truth_mentors": [
2647
+ 29,
2648
+ 34,
2649
+ 54,
2650
+ 65,
2651
+ 89,
2652
+ 140,
2653
+ 164,
2654
+ 239,
2655
+ 269,
2656
+ 329,
2657
+ 419,
2658
+ 430,
2659
+ 459,
2660
+ 494
2661
+ ]
2662
+ },
2663
+ {
2664
+ "mentee_id": 100,
2665
+ "goals": "Tôi muốn học về Python/R, Machine Learning, Tableau/Power BI.",
2666
+ "career_id": 4,
2667
+ "domain_ids": [
2668
+ 207,
2669
+ 208
2670
+ ],
2671
+ "skill_ids": [
2672
+ 110,
2673
+ 112,
2674
+ 111
2675
+ ],
2676
+ "ground_truth_mentors": [
2677
+ 4,
2678
+ 44,
2679
+ 49,
2680
+ 114,
2681
+ 144,
2682
+ 199,
2683
+ 214,
2684
+ 304,
2685
+ 319,
2686
+ 354,
2687
+ 359,
2688
+ 409,
2689
+ 414,
2690
+ 454,
2691
+ 479,
2692
+ 489
2693
  ]
2694
  }
2695
  ]
scripts/generate_evaluation_data.py CHANGED
@@ -46,20 +46,46 @@ def generate_synthetic_data(mentors: List[Dict[str, Any]], num_mentees: int = 50
46
  skill_names = [all_skills.get(sid, str(sid)) for sid in selected_skills]
47
  domain_names = [all_domains.get(did, str(did)) for did in selected_domains]
48
 
49
- goals = f"I want to learn about {', '.join(skill_names)}"
50
- if domain_names:
51
- goals += f" in the fields of {', '.join(domain_names)}"
52
- goals += "."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
 
54
  # STRICT MATCHING LOGIC for GROUND TRUTH
55
- # A mentor is considered "relevant" if they have coverage of the requested skills
 
 
56
  relevant_mentors = []
57
  for m in mentors:
 
 
 
 
 
 
 
 
58
  m_skills = set(m.get('skill_ids', []))
59
- # Calculate overlap
60
  overlap = m_skills.intersection(set(selected_skills))
61
- # Score: percentage of requested skills covered
62
- match_score = len(overlap) / len(selected_skills)
 
 
 
63
 
64
  if match_score >= 0.5: # At least 50% skill match
65
  relevant_mentors.append(m['mentor_id'])
@@ -72,7 +98,7 @@ def generate_synthetic_data(mentors: List[Dict[str, Any]], num_mentees: int = 50
72
  "goals": goals,
73
  "career_id": career_id,
74
  "domain_ids": selected_domains,
75
- "mentor_domain_ids": selected_domains, # Simulate preference
76
  "skill_ids": selected_skills,
77
  "ground_truth_mentors": ground_truth
78
  }
 
46
  skill_names = [all_skills.get(sid, str(sid)) for sid in selected_skills]
47
  domain_names = [all_domains.get(did, str(did)) for did in selected_domains]
48
 
49
+ # VIETNAMESE LOCALIZATION
50
+ templates = [
51
+ "Tôi muốn học về {skills}.",
52
+ "Em đang tìm mentor có kinh nghiệm về {skills} trong lĩnh vực {domains}.",
53
+ "Mình cần người hướng dẫn về {skills} để phát triển sự nghiệp.",
54
+ "Tôi muốn nâng cao kỹ năng {skills}.",
55
+ "Em là sinh viên muốn tìm hiểu về {skills} và {domains}.",
56
+ "Mình đang làm việc trong ngành {domains} và muốn học thêm về {skills}.",
57
+ "Cần tìm mentor giỏi về {skills}.",
58
+ "Mục tiêu của tôi là trở thành chuyên gia về {skills}.",
59
+ "Em muốn chuyển ngành sang {domains} nên cần học về {skills}."
60
+ ]
61
+
62
+ template = random.choice(templates)
63
+ skills_str = ", ".join(skill_names)
64
+ domains_str = ", ".join(domain_names) if domain_names else "công nghệ"
65
+
66
+ goals = template.format(skills=skills_str, domains=domains_str)
67
 
68
  # STRICT MATCHING LOGIC for GROUND TRUTH
69
+ # A mentor is considered "relevant" if:
70
+ # 1. They share at least one domain (if mentee has domains)
71
+ # 2. They cover a significant portion (>50%) of requested skills
72
  relevant_mentors = []
73
  for m in mentors:
74
+ # Check domain match first (if domains are specified)
75
+ if selected_domains:
76
+ m_domains = set(m.get('domain_ids', []))
77
+ domain_overlap = m_domains.intersection(set(selected_domains))
78
+ if not domain_overlap:
79
+ continue # Skip if no domain match
80
+
81
+ # Check skill match
82
  m_skills = set(m.get('skill_ids', []))
 
83
  overlap = m_skills.intersection(set(selected_skills))
84
+
85
+ if not selected_skills:
86
+ match_score = 0
87
+ else:
88
+ match_score = len(overlap) / len(selected_skills)
89
 
90
  if match_score >= 0.5: # At least 50% skill match
91
  relevant_mentors.append(m['mentor_id'])
 
98
  "goals": goals,
99
  "career_id": career_id,
100
  "domain_ids": selected_domains,
101
+ # mentor_domain_ids removed as per user request
102
  "skill_ids": selected_skills,
103
  "ground_truth_mentors": ground_truth
104
  }