File size: 20,494 Bytes
ae5eda9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 |
[
{
"query": "Who are the students from 2016 with a bachelors?",
"output": {
"batch": "2016",
"degree": "B Tech"
}
},
{
"query": "List grads working around me.",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "List alumni employed by Microsoft.",
"output": {
"company": "Microsoft"
}
},
{
"query": "Show me alumni from my batch who are in Delhi.",
"output": {
"batch": "<user_data>",
"city": "Delhi",
"country": "India"
}
},
{
"query": "List the graduates who completed b tech in 2015.",
"output": {
"batch": "2015",
"degree": "B Tech"
}
},
{
"query": "Any folks employed by Microsoft living in my country?",
"output": {
"company": "Microsoft",
"country": "<user_data>"
}
},
{
"query": "Show me grads from my city working in Germany.",
"output": {
"country": "<user_data>",
"city": "<user_data>"
}
},
{
"query": "Please show me the alumni in around me area.",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Who are the grads at Microsoft in UK?",
"output": {
"company": "Microsoft",
"country": "UK"
}
},
{
"query": "List the graduates who completed m tech in 2015.",
"output": {
"batch": "2015",
"degree": "M Tech"
}
},
{
"query": "Find ya alumni in CSE(DS) around me",
"output": {
"branch": "CSE(DS)",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Find ya alumni in my branch around me",
"output": {
"branch": "<user_data>",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Who all are there in Tokyo from our college?",
"output": {
"city": "Tokyo",
"country": "Japan"
}
},
{
"query": "List alumni residing in London, UK.",
"output": {
"city": "London",
"country": "UK"
}
},
{
"query": "Give me the list of people in USA with my degree.",
"output": {
"country": "USA",
"degree": "<user_data>"
}
},
{
"query": "Give me ppl in CSE(DS)",
"output": {
"branch": "CSE(DS)"
}
},
{
"query": "List alumni residing in Kolkata, Germany.",
"output": {
"city": "Kolkata",
"country": "Germany"
}
},
{
"query": "Who are the M Tech grads living in Chennai?",
"output": {
"degree": "M Tech",
"city": "Chennai",
"country": "India"
}
},
{
"query": "Find alumni in Japan.",
"output": {
"country": "Japan"
}
},
{
"query": "Find ppl doing cse ai ml",
"output": {
"branch": "CSE(AI&ML)"
}
},
{
"query": "Show people from 2018 working around me.",
"output": {
"batch": "2018",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Who are the grads based in UK?",
"output": {
"country": "UK"
}
},
{
"query": "Find people at Microsoft in UK.",
"output": {
"company": "Microsoft",
"country": "UK"
}
},
{
"query": "List alumni working for Google based in India.",
"output": {
"company": "Google",
"country": "India"
}
},
{
"query": "Any alumni employed by Amazon located in Bangalore?",
"output": {
"company": "Amazon",
"city": "Bangalore",
"country": "India"
}
},
{
"query": "Who are the folks at Amazon based in New York?",
"output": {
"company": "Amazon",
"city": "New York",
"country": "USA"
}
},
{
"query": "Any passouts from 2020?",
"output": {
"batch": "2020"
}
},
{
"query": "Who are the alumni in my location?",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Any alumni employed by Microsoft located in my location?",
"output": {
"company": "Microsoft",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Get me the grads in Bangalore at Microsoft.",
"output": {
"company": "Microsoft",
"city": "Bangalore",
"country": "India"
}
},
{
"query": "Show people from 2017 working around me.",
"output": {
"batch": "2017",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Find people in around me, USA.",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Any masters alumni based in Germany?",
"output": {
"degree": "M Tech",
"country": "Germany"
}
},
{
"query": "Show me m tech grads living in India.",
"output": {
"degree": "M Tech",
"country": "India"
}
},
{
"query": "List alumni employed by IBM.",
"output": {
"company": "IBM"
}
},
{
"query": "Who are the B Tech grads living in Delhi?",
"output": {
"degree": "B Tech",
"city": "Delhi",
"country": "India"
}
},
{
"query": "List bachelors holders working with IBM.",
"output": {
"degree": "B Tech",
"company": "IBM"
}
},
{
"query": "List masters alumni based in Mumbai.",
"output": {
"degree": "M Tech",
"city": "Mumbai",
"country": "India"
}
},
{
"query": "Who are the folks at TCS?",
"output": {
"company": "TCS"
}
},
{
"query": "Show me the masters holders from 2015 year.",
"output": {
"batch": "2015",
"degree": "M Tech"
}
},
{
"query": "Who are the people from 2020?",
"output": {
"batch": "2020"
}
},
{
"query": "Find people in Chennai, USA.",
"output": {
"city": "Chennai",
"country": "USA"
}
},
{
"query": "List grads working around me.",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Find people in around me, UK.",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Any passouts around me?",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Who are the M Tech holders in my city?",
"output": {
"degree": "M Tech",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Any alumni living in India?",
"output": {
"country": "India"
}
},
{
"query": "Who are the alumni in my location?",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Show me grads who did PhD in ai ml",
"output": {
"degree": "PhD",
"branch": "CSE(AI&ML)"
}
},
{
"query": "Show me grads who did bachelor in CSE",
"output": {
"degree": "B Tech",
"branch": "CSE"
}
},
{
"query": "Find folks with my degree near me.",
"output": {
"degree": "<user_data>",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Find graduates of 2018 batch residing in Chennai.",
"output": {
"batch": "2018",
"city": "Chennai",
"country": "India"
}
},
{
"query": "Please show me the alumni in Chennai area.",
"output": {
"city": "Chennai",
"country": "India"
}
},
{
"query": "Who all are there in my location from our college?",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Find ya alumni in ai and ml around me",
"output": {
"branch": "CSE(AI&ML)",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Any grads in IBM?",
"output": {
"company": "IBM"
}
},
{
"query": "Who all are there in London from our college?",
"output": {
"city": "London",
"country": "UK"
}
},
{
"query": "Show me my degree grads living in UK.",
"output": {
"degree": "<user_data>",
"country": "UK"
}
},
{
"query": "Show me the people connected to our college.",
"output": {}
},
{
"query": "List the alumni with my degree.",
"output": {
"degree": "<user_data>"
}
},
{
"query": "Find the grads with my degree in Delhi.",
"output": {
"city": "Delhi",
"country": "India",
"degree": "<user_data>"
}
},
{
"query": "List bachelors alumni based in Mumbai.",
"output": {
"degree": "B Tech",
"city": "Mumbai",
"country": "India"
}
},
{
"query": "Any alumni living in USA?",
"output": {
"country": "USA"
}
},
{
"query": "Any m tech alumni based in Japan?",
"output": {
"degree": "M Tech",
"country": "Japan"
}
},
{
"query": "Find alumni residing near me.",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Can you tell me the grads from 2016 batch?",
"output": {
"batch": "2016"
}
},
{
"query": "Show me people from my batch yaar.",
"output": {
"batch": "<user_data>"
}
},
{
"query": "Show people from 2018 working around me.",
"output": {
"batch": "2018",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "List alumni employed by IBM.",
"output": {
"company": "IBM"
}
},
{
"query": "Find graduates of 2017 batch residing in near me.",
"output": {
"batch": "2017",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "List PhD alumni based in Hyderabad.",
"output": {
"degree": "PhD",
"city": "Hyderabad",
"country": "India"
}
},
{
"query": "Find grads at my company near me.",
"output": {
"company": "<user_data>",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Find folks with my degree near me.",
"output": {
"degree": "<user_data>",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Show me grads who did B Tech in CSE(DS)",
"output": {
"degree": "B Tech",
"branch": "CSE(DS)"
}
},
{
"query": "Show me the b tech holders from 2019 year.",
"output": {
"batch": "2019",
"degree": "B Tech"
}
},
{
"query": "Who are the bachelors grads living in Tokyo?",
"output": {
"degree": "B Tech",
"city": "Tokyo",
"country": "Japan"
}
},
{
"query": "Show me graduates from 2016.",
"output": {
"batch": "2016"
}
},
{
"query": "Any 2017 passouts currently in Bangalore?",
"output": {
"batch": "2017",
"city": "Bangalore",
"country": "India"
}
},
{
"query": "List alumni employed by Microsoft.",
"output": {
"company": "Microsoft"
}
},
{
"query": "Who are the folks based in New York, Germany?",
"output": {
"city": "New York",
"country": "Germany"
}
},
{
"query": "List alumni employed by my company.",
"output": {
"company": "<user_data>"
}
},
{
"query": "Give me ppl in cse ds",
"output": {
"branch": "CSE(DS)"
}
},
{
"query": "List all graduates.",
"output": {}
},
{
"query": "Find grads at my company near me.",
"output": {
"company": "<user_data>",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Give me ppl in ds",
"output": {
"branch": "CSE(DS)"
}
},
{
"query": "List all graduates.",
"output": {}
},
{
"query": "Who are the alumni in my location?",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Who are the alumni in my location?",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Any masters alumni based in UK?",
"output": {
"degree": "M Tech",
"country": "UK"
}
},
{
"query": "Find the grads with my degree in Chennai.",
"output": {
"city": "Chennai",
"country": "India",
"degree": "<user_data>"
}
},
{
"query": "Any master holders residing in Hyderabad?",
"output": {
"degree": "M Tech",
"city": "Hyderabad",
"country": "India"
}
},
{
"query": "Who are the folks based in London, UK?",
"output": {
"city": "London",
"country": "UK"
}
},
{
"query": "Any folks employed by IBM living in Germany?",
"output": {
"company": "IBM",
"country": "Germany"
}
},
{
"query": "Who are the folks based in Pune, USA?",
"output": {
"city": "Pune",
"country": "USA"
}
},
{
"query": "Find ppl doing data science",
"output": {
"branch": "CSE(DS)"
}
},
{
"query": "Who are the grads at my company in India?",
"output": {
"company": "<user_data>",
"country": "India"
}
},
{
"query": "Any mtech alumni based in USA?",
"output": {
"degree": "M Tech",
"country": "USA"
}
},
{
"query": "Any my degree alumni based in USA?",
"output": {
"degree": "<user_data>",
"country": "USA"
}
},
{
"query": "Find people working at TCS in my location.",
"output": {
"company": "TCS",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "List grads in Berlin working for Infosys.",
"output": {
"company": "Infosys",
"city": "Berlin",
"country": "Germany"
}
},
{
"query": "Show me folks from my city working in Capgemini.",
"output": {
"company": "Capgemini",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Need info on alumni from 2016 batch with master.",
"output": {
"batch": "2016",
"degree": "M Tech"
}
},
{
"query": "List bachelor holders in USA.",
"output": {
"degree": "B Tech",
"country": "USA"
}
},
{
"query": "Show me the m tech holders from 2016 year.",
"output": {
"batch": "2016",
"degree": "M Tech"
}
},
{
"query": "Show me alumni at TCS yaar.",
"output": {
"company": "TCS"
}
},
{
"query": "Who are the people from 2018?",
"output": {
"batch": "2018"
}
},
{
"query": "Any folks employed by IBM living in Japan?",
"output": {
"company": "IBM",
"country": "Japan"
}
},
{
"query": "Any graduates living in New York, UK?",
"output": {
"city": "New York",
"country": "UK"
}
},
{
"query": "Give me ppl in CSE",
"output": {
"branch": "CSE"
}
},
{
"query": "Show me people from my batch yaar.",
"output": {
"batch": "<user_data>"
}
},
{
"query": "Please show me the alumni in Kolkata area.",
"output": {
"city": "Kolkata",
"country": "India"
}
},
{
"query": "Who are the folks based in Berlin, Germany?",
"output": {
"city": "Berlin",
"country": "Germany"
}
},
{
"query": "Who are the folks at Wipro based in around me?",
"output": {
"company": "Wipro",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Need names of PhD grads at Capgemini.",
"output": {
"degree": "PhD",
"company": "Capgemini"
}
},
{
"query": "Show me grads who did master in ai and ml",
"output": {
"degree": "M Tech",
"branch": "CSE(AI&ML)"
}
},
{
"query": "Find people at Capgemini in Japan.",
"output": {
"company": "Capgemini",
"country": "Japan"
}
},
{
"query": "Any passouts from 2016?",
"output": {
"batch": "2016"
}
},
{
"query": "Any alumni employed by Amazon located in Chennai?",
"output": {
"company": "Amazon",
"city": "Chennai",
"country": "India"
}
},
{
"query": "Show me alumni from 2019 who are in Mumbai.",
"output": {
"batch": "2019",
"city": "Mumbai",
"country": "India"
}
},
{
"query": "Show me alumni at my company yaar.",
"output": {
"company": "<user_data>"
}
},
{
"query": "Give me the list of people working at Amazon na.",
"output": {
"company": "Amazon"
}
},
{
"query": "Find alumni residing near me.",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Who all are there in Hyderabad from our college?",
"output": {
"city": "Hyderabad",
"country": "India"
}
},
{
"query": "Find alumni residing near me.",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Who are the folks at Wipro?",
"output": {
"company": "Wipro"
}
},
{
"query": "Any folks employed by my company living in UK?",
"output": {
"company": "<user_data>",
"country": "UK"
}
},
{
"query": "List alumni of my batch batch.",
"output": {
"batch": "<user_data>"
}
},
{
"query": "Any grads in Infosys?",
"output": {
"company": "Infosys"
}
},
{
"query": "List bachelor holders working with Amazon.",
"output": {
"degree": "B Tech",
"company": "Amazon"
}
},
{
"query": "Show me alumni with B Tech employed by Wipro.",
"output": {
"degree": "B Tech",
"company": "Wipro"
}
},
{
"query": "Any folks living in my area?",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "List the graduates who completed master in 2019.",
"output": {
"batch": "2019",
"degree": "M Tech"
}
},
{
"query": "Find people working at IBM.",
"output": {
"company": "IBM"
}
},
{
"query": "Find alumni residing near me.",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "List bachelor holders in UK.",
"output": {
"degree": "B Tech",
"country": "UK"
}
},
{
"query": "List people from 2017 living in New York.",
"output": {
"batch": "2017",
"city": "New York",
"country": "USA"
}
},
{
"query": "Who are the folks at my company?",
"output": {
"company": "<user_data>"
}
},
{
"query": "Who are the people from my batch at Infosys?",
"output": {
"company": "Infosys",
"batch": "<user_data>"
}
},
{
"query": "List alumni employed by Amazon.",
"output": {
"company": "Amazon"
}
},
{
"query": "Who are the alumni?",
"output": {}
},
{
"query": "Find alumni at my company in Germany.",
"output": {
"country": "Germany",
"company": "<user_data>"
}
},
{
"query": "Any alumni employed by IBM located in Chennai?",
"output": {
"company": "IBM",
"city": "Chennai",
"country": "India"
}
},
{
"query": "Show me alumni from my graduating class who are in New York.",
"output": {
"batch": "<user_data>",
"city": "New York",
"country": "USA"
}
},
{
"query": "Find alumni residing near me.",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Give me the list of people in Japan with my degree.",
"output": {
"country": "Japan",
"degree": "<user_data>"
}
},
{
"query": "Who are the masters graduates at Microsoft?",
"output": {
"degree": "M Tech",
"company": "Microsoft"
}
},
{
"query": "Find folks with my degree near me.",
"output": {
"degree": "<user_data>",
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Any alumni living in India?",
"output": {
"country": "India"
}
},
{
"query": "Who are the people near me?",
"output": {
"city": "<user_data>",
"country": "<user_data>"
}
},
{
"query": "Please show me the alumni in Kolkata area.",
"output": {
"city": "Kolkata",
"country": "India"
}
}
] |