Skip to content
Snippets Groups Projects
tokens.csv 84.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • Ammar Harrat's avatar
    Ammar Harrat committed
    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
    id,token
    3044,imgwidth
    3909,reuse
    947,automlclient
    3500,tosmash
    2233,shooting
    1289,salary
    2711,torchvision
    1415,tokenization
    2891,numberofskillmoves
    4224,graphpng
    1606,validationcurve
    1755,colorbluestd
    769,!
    1127,predictsubmission
    403,%
    1,(
    2439,predictedtest
    2,)
    332,*
    204,+
    1466,xgbmodel
    109,-
    9,.
    2299,unitedkingdom
    2699,prscsv
    3611,rdylgn
    380,/
    1702,kaggleinputanswerkeycsv
    85,0
    41,1
    2586,scaledbasetable
    402,2
    81,3
    2468,tfd
    675,size
    972,4
    414,5
    592,left
    3910,reserved
    333,6
    1972,10.0
    2666,ruralpct
    1844,7
    276,8
    277,9
    4190,squared
    75,:
    2875,accumulationsteps
    348,;
    19,=
    163,ytrain
    4161,generatedimages
    159,object
    2466,tfp
    3606,mlptrain
    2899,validds
    3261,modelsmodelpos
    3464,kaggleinputbiorxivcleancsv
    133,nrowsread
    134,1000
    787,violinplot
    1748,logreg
    2252,kaggleinputexpensescsv
    1252,balanced
    2733,gold
    3201,result
    4240,confusionmatriximport
    1891,same
    1666,processtwo
    3437,plottree
    31,[
    1373,after
    2370,classificationreportmodel
    32,]
    122,_
    249,a
    3668,asarray
    251,b
    1075,c
    2037,d
    203,e
    2844,mindf
    472,f
    3045,imgheight
    3236,g
    3448,crossvalpredict
    1383,h
    488,i
    3158,j
    1001,k
    1546,l
    3340,abbreviation
    3843,halleylifetablecsv
    1030,m
    2475,linewidth
    1167,n
    2180,________________
    2477,o
    2510,kaggleinputgermandatacsv
    441,p
    1423,the
    301,q
    2302,r
    91,avgfare
    960,s
    485,t
    1720,u
    1418,v
    3563,w
    35,x
    33,y
    112,{
    4070,arubanetherlandscsv
    2775,|
    113,}
    3550,~
    42,decisiontreeregressor
    2379,vaccinated
    4057,souqcomlaptopscsv
    1664,deploy
    3641,matchtypereducednum
    211,testdata
    1558,pathlib
    1498,filedir
    3238,balancedaccuracy
    2747,predicted
    3793,kaggleinputopensprayerimagesdocknetvalid
    3042,bestmodelh
    2974,chi
    342,classificationreport
    2878,rightrecallpkl
    250,check
    3782,finalcarsdatasetscsv
    3832,confirmeddf
    2000,8.26972770690917969
    2497,sparse
    2419,__________________________
    2912,validdf
    3737,1024
    2546,mindatainleaf
    2622,epochacc
    3963,scoredataset
    845,memberships
    2652,worldregion
    3403,radiusworst
    1135,crossvalscore
    2221,kaggleinputdataseriessummarizationprojectv
    3164,ppfrom
    583,trainloss
    2994,testdpath
    537,categorydict
    2883,racers
    3157,tempdf
    4175,ticker
    225,dropfirst
    1628,ticket
    2580,plotting
    2257,inputtweetsentimentextractiontestcsv
    2182,tweet
    108,kghide
    1660,setgradenabled
    2332,treebankwordtokenizer
    1460,imreadfrom
    2031,9.05535793304443359
    881,relativeimportance
    1569,nulltest
    1011,xticklabels
    2534,idta
    1512,initnotebookmodeinitnotebookmode
    3413,cleaneddatatoward
    3319,disabilitystatus
    1751,accrandomforest
    3659,airqualityindexpredictioncsv
    1239,minmaxscalerfrom
    1294,dummy
    3765,imagedatageneratorfrom
    1716,pairwise
    1691,tmp
    1917,flour
    3011,scandir
    2052,dtrain
    2137,validy
    3746,testlabelscsv
    2136,validx
    3780,titanmodel
    3101,flow
    3488,tsnecovidarticlesclustered
    4188,order
    605,mosold
    2512,kaggleinputcatmindecausescsv
    2685,finaltreemodel
    980,paramgrid
    3658,kaggleinputairqualityindexpredictioncsv
    3736,embeddingdim
    2920,trainbce
    3428,melbournehousingextradatacsv
    3818,binary
    3100,validsampleshistory
    71,lightgbm
    2504,numxvalid
    3327,cookingfuel
    1627,trainset
    4141,modellosspng
    1556,variablerootpath
    3812,tol
    933,tuple
    3492,addchangepointstoplotfrom
    1959,ktrain
    2418,top
    3407,timetaken
    2651,subnationalregion
    1388,powernetworkslcljunewithacorngpsvcsv
    4169,grboost
    528,scipy
    3965,meantrainscore
    3587,product
    3082,question
    607,openporchsf
    2550,scorelgb
    1206,densefeatures
    3284,cnt
    3706,minlr
    1590,dateparser
    1973,4.88989353179931641
    677,ascending
    1970,2.0
    4063,clientinfofrom
    2832,tpr
    2839,tpu
    1647,pima
    1807,flipvert
    3249,modelpng
    3043,checkpointer
    2976,kaggleinputvalidationprocessedtfxlmrobertalargeseqlencsv
    2480,thousand
    3224,com
    223,col
    439,unsqueeze
    2039,reglinear
    451,predictproba
    2396,translated
    920,decode
    1951,cvresults
    2944,covidcountryinfocsv
    3515,elementscsv
    2390,lam
    3091,pipe
    2853,latentdirichletallocation
    3645,testselecteddf
    1223,lat
    1304,stopwords
    1028,kaggleinputdailyconfcsv
    1792,traffic
    1877,cumsum
    2939,lay
    3312,deceasedsex
    444,cpu
    2288,paralist
    3169,covidforecastcsv
    2438,predictedtrain
    3613,uncountrydatacsv
    1461,setcontext
    643,trn
    2166,200
    2022,11.89122962951660156
    1550,try
    4182,kaggleinputencatalogaprtojuncsv
    3856,trx
    4233,plotlydark
    492,predictwithtargs
    3677,tsa
    4148,randomforestregressormodel
    1571,lotfrontage
    3647,datetimepd
    4036,addnewfeatures
    156,xfull
    462,22654
    1017,212
    1675,kprint
    2001,11.06334972381591797
    3619,218
    2670,crosstab
    4157,floor
    496,probs
    269,setoption
    503,predictedconfidences
    3443,correlationmatrix
    3159,totals
    3281,ishotdog
    1527,rows
    3480,drawcoastlines
    2204,hamcsv
    3670,lengths
    3427,kaggleinputmelbournehousingextradatacsv
    3246,osimport
    74,METHOD_NAME
    3069,shutil
    3892,equilibrium
    2729,sport
    1204,spmimport
    209,calcscore
    852,cluster
    3133,mdlimport
    1936,getreward
    1133,simplefilter
    1292,csv
    797,biorxivdf
    124,len
    3083,ntop
    497,pred
    527,stats
    2005,6.71804094314575195
    1222,merge
    543,state
    1835,getscore
    2025,14.84462165832519531
    107,standardscaler
    3399,gridfit
    3791,preprocessingfrom
    3964,each
    844,selectednum
    855,labels
    639,trainnames
    1352,xgbregressor
    4035,damagedealt
    3192,osfor
    3383,measuresdf
    1265,makingdataset
    1451,items
    1914,cup
    4002,1900
    1301,networkx
    2197,ypredpcalr
    72,lgb
    111,collapsed
    2065,kaggleinputconfirmedcasescsv
    126,mymodel
    1604,iplcsv
    2549,rmslecv
    3248,tofile
    1950,rfbest
    3354,kimport
    2167,250
    3845,firstconfirmeddatecountry
    1295,256
    1485,traingenerator
    2079,subtestdf
    2006,11.56385326385498047
    2993,inputtrainv
    4004,kaggleinputnewdatasentstripcsv
    2376,photoamt
    2836,distribute
    3435,dfte
    1578,testbcsv
    142,ncol
    553,kaggleinputdatacsv
    2992,traindpath
    1797,team
    774,augmenters
    3328,txt
    4122,matshow
    3301,testtrain
    145,rfmodelonfulldata
    1517,dataset
    1855,ignoreindex
    1101,shapely
    1650,attributecsv
    1010,yticklabels
    2285,cldf
    3553,inputpubgfinishplacementpredictiontrainvcsv
    2562,dfofmarch
    2968,typ
    857,source
    3004,colwithmissingvalues
    381,kaggleinputannotationscsv
    3482,simpleimputerimp
    832,276
    738,compile
    3537,allitsbettencsv
    1100,geodataframe
    588,validationaccuracy
    3669,starts
    2009,11.40053558349609375
    2075,gapvalidationtsv
    2745,actual
    270,maxcolumns
    2403,indiapred
    3671,currentposition
    1544,dftr
    1935,____________
    1128,samplesubmission
    1455,shops
    3081,dmodelsmpepidemicmodels
    3487,full
    3708,kaggleinputadvertisingcsv
    243,finalimputer
    3176,persistenceandstabilityonamultitudeofsubstratesandsourcesnasaldischargesputumurinefecalmatterblood
    1025,linecolor
    3398,gridobj
    2267,aerialbattleswon
    3267,scatterplot
    1908,kaggleinputemergencyshelterscsv
    879,center
    1925,maxticks
    364,placeid
    962,start
    3409,rawdatatoward
    1948,scorerf
    3869,nshift
    2400,func
    2723,vlidx
    2450,kaggleinputbantencovidvcsv
    3021,12345
    3560,shortpromotion
    3776,titlea
    2045,colsamplebytree
    2508,kaggleinputclustercurvescsv
    4137,possiblepositives
    1774,killstreaks
    4029,playersjoined
    3161,logitrocauc
    3841,titanicpredxgbcsv
    4013,basepath
    1117,measures
    1552,selectsecond
    36,trainx
    38,trainy
    4162,realimages
    1736,season
    2661,partnerid
    2034,xgbmdl
    3822,regalpha
    2505,numxtrain
    2786,totalwinsinpremiereleague
    2238,players
    4177,finalmodal
    597,rsuffix
    3520,enginefueltype
    631,distributionofthepublicationsacrossthedataset
    690,subprdrid
    3366,listrows
    2198,logisticregressionpcacsv
    2337,packagedir
    3630,meals
    377,cumcount
    235,loc
    1414,berttokenization
    201,log
    3266,bright
    2561,lon
    3371,historicaltransactions
    1759,colorredmean
    2455,nummodel
    2959,ylim
    1181,tensorflow
    3725,kaggleinputapproachestoevaluateriskforenhanceddiseaseaftervaccinationcsv
    3489,tsnecovidlabelpng
    3432,low
    1016,trainingfscoref
    814,inlineimport
    2847,tfidfvec
    3897,biorxiv
    1004,corrcoef
    421,lstmmodel
    2604,timedelta
    2139,kaggleinputunlabelednercsv
    424,returnsequences
    399,bestmodelstep
    260,plotly
    2283,ictrpweekmarchcsv
    3187,covidcoronavirus
    1337,pipeline
    3738,rnnunits
    2016,4.74105215072631836
    2192,makepred
    799,commusedf
    759,yscoregbctest
    202,clip
    2352,dailychangeincumulativetotal
    810,spacyfrom
    3302,imgnumstr
    408,minmaxscaler
    1698,featureselection
    3127,structtype
    2579,reloadext
    2268,duelswon
    1991,8.46705245971679688
    354,day
    2015,5.54024744033813477
    3565,mainsheetcsv
    1827,paddingmode
    3258,modeloutpath
    487,format
    2972,testfeatures
    3052,ithresh
    3076,copyfile
    2543,0.2319
    1651,numericalcols
    651,1686.2379
    2354,dailychangeincumulativetotalperthousand
    1949,returntrainscore
    297,apples
    144,ftherearenrowrowsandncolcolumns
    303,metadatacsv
    1893,statesuts
    4034,damagedealtoverplayersjoined
    3279,testdataishotdog
    3685,vutil
    2961,kerasareaf
    1410,bertmodeling
    2293,para
    4229,multiplelocator
    92,stdfare
    2319,catboostregressorfrom
    1171,temp
    4195,tensorshape
    2111,startangle
    2933,logtsfare
    1387,kaggleinputpowernetworkslcljunewithacorngpsvcsv
    2490,tourismcsv
    3961,cvpopcountycsv
    4194,build
    2937,plotline
    2121,confmatrix
    2199,dayofweek
    3975,weekofyear
    1221,corrmatrix
    2502,indexnumxtrain
    2646,stack
    73,def
    3579,meansquarederrorimport
    4107,mimg
    2209,imagenames
    575,areas
    1626,del
    2262,kolkatawestbengal
    182,path
    328,bind
    3010,isfile
    3674,dfa
    3215,testbatch
    1741,playerbirthdate
    1942,pass
    3202,dff
    1079,modelberth
    2271,lightpalette
    1918,milk
    3121,traindataloader
    760,inputsmokingstatsshareofadultswhosmokecsv
    2613,adoptionspeed
    1012,rocaucscore
    1834,preds
    3204,lineplot
    3796,predl
    1617,dataapr
    2615,!=
    3099,validsamples
    440,cuda
    686,average
    1003,treatment
    3979,devloss
    584,validationloss
    1633,scispacy
    1281,logisticregression
    1081,testinput
    3821,subsamplefreq
    4210,pemaildomainaddr
    890,numberoffatalcases
    3532,loansfilepath
    851,journal
    2445,punkt
    3966,cvresdf
    1312,utterancesspcsv
    2531,pricerange
    2692,fpath
    3578,pxfrom
    790,datapath
    1203,siximport
    83,bins
    1540,garagetype
    2080,kaggleinputwhorevisedcsv
    1880,0.01
    594,right
    1724,sentencetransformers
    2791,nonzero
    3585,productblockshopcombi
    2950,majorcrimesinsanfrancisco
    2364,seltex
    1450,itemscsv
    2766,quarter
    3952,dic
    3575,fnntrainer
    1198,nltk
    2911,todropcolumns
    1275,dim
    669,dir
    2177,tweets
    924,div
    941,inspectionscsv
    645,0.05
    3053,elementwisegreaterthan
    3172,rangeofincubationperiodsforthediseaseinhumansandhowlongindividualsarecontagiousevenafterrecovery
    3189,valcrps
    2367,ypredxgb
    3144,0.02
    2043,0.03
    2237,club
    480,signal
    1070,info
    221,test
    1979,10.56953334808349609
    3275,resnet
    2767,month
    3020,0.15
    552,traintargets
    1542,garagecond
    3655,daybeforeprivatedfinterest
    3508,validloss
    1361,numleaves
    2617,squeeze
    3958,importance
    2698,kaggleinputgithubprscsv
    2908,0.33
    3365,gettable
    350,back
    2440,training
    171,title
    544,states
    3242,imgursecretsantacsv
    2612,tweetscsv
    667,load
    740,optimizer
    712,primerange
    482,0.25
    53,ignore
    4114,company
    2415,kaggleinputtimegendercsv
    1459,misc
    1763,labelencoderlabelxtrain
    1484,datageneratorwithaug
    1933,ticks
    3003,originalimgsize
    4140,predictedpositives
    416,length
    2384,accumulationstep
    3182,immuneresponseandimmunity
    3145,evalmetric
    4050,encodekitchenqual
    1341,unk
    3656,kaggleinputbloombergbizsitemapcsv
    829,1168
    2459,bcewithlogitsloss
    3060,cudnnlstm
    369,append
    3418,salepricex
    1380,commonwords
    1978,9.48088836669921875
    620,rcparams
    1084,testpredbertint
    1177,division
    3826,dmy
    2343,carcategory
    2629,xgbclassifiermodels
    3846,dayssincefirstdeceased
    563,cvscore
    2287,subsectionvectordict
    1271,text
    2424,latin
    1658,chainedassignment
    1130,submissionnewforkedcsv
    2113,init
    1704,kaggleinputdfnamescsv
    2633,minkowski
    3065,topology
    4099,agebincode
    1794,classification
    1858,emptyval
    2503,objectcols
    1564,trainraw
    1593,countryhealthindicators
    3109,selectedtext
    1960,csvimport
    1981,3.0
    3886,skpltfrom
    3582,evaluate
    3891,doi
    205,**
    2272,ascmap
    1105,folium
    1086,nsteps
    2600,timeseriescoviddeathsglobalcsv
    4061,gapicv
    2274,backgroundgradient
    3694,desiredoutputarray
    483,0.75
    2807,seedeverything
    1788,yaxis
    2387,targets
    1146,randomforestregressorfittedasregressor
    950,mae
    2704,testpredsall
    3839,inputvrighthandrecommendationengineuserscsv
    1811,maxzoom
    2627,kaggleinputdataclaimscsv
    2071,gaptesttsv
    2614,finaldf
    540,map
    1260,fxtestshapeisxtestshapeandyshapeisytestshape
    28,fullbath
    2422,mar
    3351,convolutional
    661,max
    2260,elapsedtime
    2373,trainingaccuracy
    2798,xtraintorch
    4094,url
    4238,kaggleinputnewclassmaptobasiccsv
    507,+=
    2168,300
    3716,rftrainpred
    2744,validatedf
    2395,validyandex
    2454,featureimportances
    16,traintestsplit
    1191,use
    1577,kaggleinputtestbcsv
    2365,xgbclassifierxgb
    2227,defending
    3600,0.99
    334,main
    484,0.98
    2552,kaggleinputcasocsv
    338,confusionmatrix
    3690,0.95
    3391,receiveroperatingcharacteristic
    3392,lowerright
    3471,revenue
    1139,311
    2523,strip
    1190,loadmodel
    2846,ngramrange
    308,pbar
    3769,continuous
    2553,casocsv
    3823,reglambda
    2115,logs
    3864,maramimputed
    1218,likes
    1653,makeenv
    2835,--
    2481,-.
    3604,xtrainscaledduo
    121,realresultf
    3179,implementationofdiagnosticsandproductstoimproveclinicalprocesses
    3761,precisiontrainf
    921,utf
    1089,stepsperepoch
    4073,ypredfinal
    682,weights
    2773,normalduo
    918,checkoutput
    3666,-=
    1559,missingvalues
    2478,markersize
    1943,cleanup
    3207,kaggleinputtitaniccsv
    3850,timelosses
    2822,kaggleinputapplicationofregulatorystandardsegcsv
    1129,roundoutput
    499,preptime
    1818,./
    2138,.1
    2752,.2
    3072,dst
    2840,npscaled
    3760,.3
    873,.5
    777,segmaps
    999,.8
    1021,linewidths
    1293,skms
    2884,givenalistofracerssetthefirstplaceraceratthefrontofthelisttolastplaceandviceversarmariobowserluigipurpleshellrrluigibowsermario
    3244,recoveredcountry
    1841,inputtitanictestcsv
    2294,testquery
    2246,dtc
    1087,repeat
    1510,kaggleinputtitanictraincsv
    1746,dfcovidpickle
    228,tolist
    792,cleandatapath
    2336,keyedvectors
    1913,cups
    3285,fetchmldata
    3522,make
    961,//
    459,2020-03-24
    3385,countermeasuresdf
    951,imgid
    830,numcolswithmissing
    2347,validationsquadcsv
    2457,/=
    2805,modelidx
    3872,kaggleinputedgescsvedgescsv
    2273,orange
    1612,trainenrichedwithcontainmentvcsv
    2404,indiamodel
    1465,searchtrend
    479,maeyourappraoch
    1178,printfunctionimport
    1689,createmodelnn
    2385,0.
    3603,roylabchatcsv
    1873,stacking
    2770,duo
    2067,subdatafolder
    3094,formationenergyevnatom
    164,yvalid
    3831,countrydf
    1047,about
    2997,inputtrainshipsegmentationsvcsv
    474,valwordresult
    2063,stringio
    148,inputtraincsv
    453,sessionid
    3324,drinkingwatersource
    3931,parsing
    3067,constraints
    1343,onehotencoder
    2169,350
    3915,granted
    891,seriesname
    3075,workingdmodelsepidemicmodelspy
    3997,covidkeralacsv
    2103,sizes
    1233,realvalue
    2887,palette
    1672,1.
    4151,kaggleinputdmcdataorderscsv
    395,10
    1386,height
    1694,11
    876,12
    2023,13
    1027,14
    2048,6000
    80,15
    1892,16
    1355,17
    2011,18
    1490,19
    2377,sterilized
    1809,360
    2013,4.87243366241455078
    3110,tweetdataset
    4237,dzacovidcsv
    184,filename
    2790,proteinclassificationcsv
    3259,getmodeloutpath
    227,unique
    1023,cmap
    3106,xladevice
    3381,kaggleinputcasesanddeathspercountrycasescsv
    2713,utilsimport
    971,20
    3950,male
    295,21
    737,22
    3036,traintasks
    3148,23
    808,24
    1209,25
    1899,goimport
    701,26
    2872,27
    2406,28
    3505,batchidx
    2511,germandatacsv
    2578,mishactivation
    2727,trainmodel
    4084,classnum
    721,permutations
    1985,4.18107128143310547
    1224,long
    591,powerliftingmeets
    1753,min
    340,ytest
    1142,maxfeatures
    3899,mir
    848,titleraw
    2573,featurecolumns
    170,30
    2989,32
    296,34
    293,35
    3866,stat
    3610,36
    2266,desiredoutputstdcitystatekolkatawestbengalchennaitamilnaduhyderabadtelenganabangalorekarnataka
    2710,lrscheduler
    1113,sentimenttraincsv
    3282,ahotdog
    1449,parsedates
    1120,windspeed
    1102,geometry
    1680,40
    294,41
    471,open
    646,42
    3868,nleaves
    3913,funder
    2556,folders
    614,arange
    826,project
    3755,kaggleinputoriginalcsvsoriginalcsvsoecdpopulationagestructurecsv
    2489,kaggleinputtourismcsv
    3577,traintestsplitimport
    928,labelcls
    2449,chartstudio
    4163,preprocessingimport
    2224,syntheticsizeklenznormbin
    1560,ytesthat
    1573,garageyrblt
    3557,kaggleinputprecodolarmensalcsv
    86,50
    877,barh
    1595,kaggleinputsearchtrendcsv
    1511,gofrom
    2691,kaggleinputcleannoncommusecsv
    2378,dewormed
    2809,embeddingmatrix
    3156,pivottable
    2541,55
    1018,58
    2708,tnum
    3213,kaggleinputplayidtraindfcsv
    140,cordmicrosoftacademiccitationmetadatacsv
    2529,cuisinestyle
    735,dense
    4174,mlp
    3772,downloadcsvfile
    2889,settitle
    2469,nantonum
    809,60
    265,graphobjs
    2990,64
    3273,tsnewithnolabels
    1420,distplot
    1248,kaggleinputcompaniesdatacsv
    2598,svctuned
    2033,averageprecisionscoreypredtrain
    3999,percentageofarticleswithmissingpublishtimebeforefillingmissingvalues
    1582,kaggleinputinputlatlonglatlongcsv
    82,figsize
    3412,rawdataanalytics
    2657,mpirural
    2567,apple
    908,inputwinereviewswinemagdatafirstkcsv
    2076,devdfpath
    3153,75
    959,mask
    1847,------------------
    1435,mnb
    3497,77
    465,apply
    1305,ipython
    3329,argparse
    2940,layout
    2998,bstmodelfpath
    3234,80
    253,step
    2213,86
    18,decisiontreeregressoriowafilepath
    1457,base
    1957,stem
    220,inputdataminingassignmenttestcsv
    1902,trend
    3857,getmodel
    3357,maskfunctions
    4186,axes
    2082,hardnegative
    2687,finalrf
    231,loss
    2601,oofpredictions
    635,90
    3051,returnalistwiththesamelengthaslwherethevalueatindexiistrueifliisgreaterthanthreshandfalseotherwiseelementwisegreaterthanfalsefalsetruetrue
    2316,gplearn
    2019,12.76094818115234375
    2621,epochloss
    670,val
    2648,99
    305,countryregion
    1349,transformers
    3526,var
    1779,ridedistance
    2654,mpi
    725,mpl
    1374,metricsypred
    3451,kaggleinputplanetsdatasetplanetplanet
    3644,trainselecteddf