-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2019_questions.csv
We can't make this file beautiful and searchable because it's too large.
executable file
·8840 lines (8840 loc) · 782 KB
/
2019_questions.csv
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,CreationDate,Score,ViewCount,Tags,AnswerCount,FavoriteCount
"44419","2019-01-23 09:21:13","1","21","<machine-learning><data-mining>","0",""
"44420","2019-01-23 09:34:01","0","25","<machine-learning><regression><linear-regression><regularization>","0",""
"44423","2019-01-23 09:58:41","2","1651","<python><time-series><forecast><forecasting>","0",""
"44427","2019-01-23 10:57:09","0","55","<machine-learning><scikit-learn><pca>","1",""
"44428","2019-01-23 11:02:15","0","19","<dataset><bigdata><data><speech-to-text>","0",""
"44430","2019-01-23 11:13:32","0","283","<fuzzy-logic>","1",""
"44432","2019-01-23 11:17:46","1","214","<time-series><anomaly-detection><online-learning>","0","1"
"44436","2019-01-23 12:49:39","0","9","<matrix-factorisation>","0",""
"44437","2019-01-23 13:04:11","0","7","<correlation><naive-bayes-classifier>","0",""
"44438","2019-01-23 13:16:29","0","584","<machine-learning><python><deep-learning><keras><cnn>","1",""
"44439","2019-01-23 13:25:24","0","17","<machine-learning>","0",""
"44440","2019-01-23 14:04:25","0","64","<machine-learning><theory>","2",""
"44446","2019-01-23 14:55:08","1","73","<machine-learning><gradient-descent>","2",""
"44448","2019-01-23 15:34:39","2","105","<nlp><clustering><feature-extraction><encoding><embeddings>","0",""
"44449","2019-01-23 15:36:41","1","1212","<python><scikit-learn><pandas><numpy>","0",""
"44450","2019-01-23 15:37:08","2","178","<python><scikit-learn><decision-trees><accuracy><matlab>","2",""
"44454","2019-01-23 16:56:01","0","204","<python><pandas>","2",""
"44456","2019-01-23 17:29:04","2","188","<python><deep-learning><keras>","1","1"
"44460","2019-01-23 18:03:18","0","48","<machine-learning><reinforcement-learning><q-learning><policy-gradients>","1",""
"44463","2019-01-23 18:52:32","1","26","<neural-network><deep-learning><image-classification>","0",""
"44465","2019-01-23 21:19:38","2","30","<r><logistic-regression><regularization>","1",""
"44472","2019-01-24 00:10:24","0","52","<machine-learning><time-series><predictive-modeling><lstm><reinforcement-learning>","0",""
"44474","2019-01-24 00:43:27","2","1810","<python><keras><tensorflow><gpu>","2","2"
"44476","2019-01-24 04:59:16","1","1779","<python><pandas><bigdata><data-cleaning>","2",""
"44478","2019-01-24 06:33:12","0","36","<machine-learning><data-cleaning><logistic-regression>","1",""
"44480","2019-01-24 07:04:40","0","16","<python><object-detection>","0",""
"44482","2019-01-24 07:25:46","2","57","<machine-learning><recommender-system><supervised-learning><similarity>","1",""
"44483","2019-01-24 07:58:35","0","17","<machine-learning><deep-learning><nlp><text-mining><word-embeddings>","0",""
"44484","2019-01-24 08:17:31","1","34","<machine-learning-model>","1",""
"44489","2019-01-24 09:18:10","0","77","<xgboost><apache-spark>","0",""
"44491","2019-01-24 09:44:44","0","12","<time-series><anomaly-detection>","0",""
"44492","2019-01-24 09:45:25","0","61","<machine-learning><neural-network><classification><feature-extraction>","0",""
"44498","2019-01-24 12:18:46","0","839","<python>","0",""
"44499","2019-01-24 12:24:40","1","78","<gaussian><deepmind>","0",""
"44500","2019-01-24 12:40:20","0","157","<deep-learning><training>","0",""
"44501","2019-01-24 12:52:37","1","226","<time-series><anomaly-detection><online-learning>","0","2"
"44503","2019-01-24 13:43:15","0","33","<machine-learning><statistics>","1",""
"44504","2019-01-24 14:02:19","1","152","<nlp><nlg>","0",""
"44506","2019-01-24 14:45:18","1","635","<overfitting><inception>","1",""
"44508","2019-01-24 15:18:57","1","27","<tensorflow>","0",""
"44513","2019-01-24 17:06:45","0","26","<neural-network>","0",""
"44514","2019-01-24 17:21:25","0","151","<python><deep-learning><keras><lstm><rnn>","1",""
"44516","2019-01-24 17:46:21","0","28","<r><topic-model><dplyr>","0",""
"44517","2019-01-24 17:47:15","0","1289","<python><scikit-learn><bigdata><k-means>","3",""
"44518","2019-01-24 18:08:03","2","971","<cnn><convnet>","2",""
"44520","2019-01-24 18:21:45","0","53","<r><parameter-estimation><markov-hidden-model>","0",""
"44522","2019-01-24 18:45:27","1","90","<nlp><dimensionality-reduction>","0",""
"44526","2019-01-24 20:03:07","0","66","<python><keras><cnn><convnet>","0",""
"44529","2019-01-24 21:18:18","1","47","<neural-network><autoencoder><topic-model>","0","1"
"44530","2019-01-24 21:47:34","2","59","<machine-learning><scikit-learn><data-mining><visualization><algorithms>","1",""
"44533","2019-01-24 22:45:30","0","5","<dataset><data-analysis><weighted-data><fuzzy-logic>","0",""
"44535","2019-01-24 23:58:29","2","370","<cnn><mnist>","1",""
"44537","2019-01-25 00:54:49","0","303","<machine-learning><neural-network><keras><tensorflow>","1",""
"44543","2019-01-25 06:49:03","0","9","<natural-language-process>","0",""
"44544","2019-01-25 06:59:45","0","43","<neural-network><image-classification>","1",""
"44546","2019-01-25 07:49:00","1","35","<regression><activation-function>","0",""
"55900","2019-07-18 08:31:17","0","29","<time-series>","0",""
"55901","2019-07-18 08:34:46","1","313","<nlp><encoding><transformer><attention-mechanism>","0","1"
"55902","2019-07-18 08:36:01","2","1038","<machine-learning><python><classification><xgboost>","2",""
"55907","2019-07-18 09:21:08","1","354","<python><image-classification><pytorch>","1","1"
"55908","2019-07-18 09:26:20","0","11","<python><nlp><encoding><parallel><processing>","0",""
"55909","2019-07-18 09:31:10","0","69","<deep-learning>","2",""
"55916","2019-07-18 12:07:09","1","72","<python><pandas><dataframe><text>","1",""
"55919","2019-07-18 13:33:17","0","20","<neural-network><feature-engineering><feature-scaling>","0","1"
"55920","2019-07-18 13:40:37","-1","37","<machine-learning><clustering>","1",""
"55921","2019-07-18 13:56:21","0","19","<machine-learning><neural-network><data-cleaning>","0",""
"55922","2019-07-18 13:59:42","0","117","<keras><tensorflow><anomaly-detection><autoencoder>","0",""
"55923","2019-07-18 14:19:53","-1","33","<machine-learning><linear-regression><linear-algebra>","1",""
"55924","2019-07-18 14:20:55","0","13","<deep-learning><labels><binary><deep-network>","1",""
"55925","2019-07-18 14:26:20","0","16","<python><tensorflow><predictive-modeling><lstm><anaconda>","0",""
"55926","2019-07-18 14:26:28","0","28","<machine-learning><data><feature-engineering><bias>","0","2"
"55928","2019-07-18 14:42:28","2","30","<python><scikit-learn><categorical-data><encoding>","1","1"
"55930","2019-07-18 15:02:23","0","21","<r><time-series><statistics>","0",""
"55931","2019-07-18 15:07:00","1","29","<tensorflow>","1",""
"55933","2019-07-18 15:10:00","1","32","<python><bigdata>","0",""
"55934","2019-07-18 15:19:59","0","30","<json>","0",""
"55935","2019-07-18 15:35:56","1","37","<classification><data-science-model><weka>","1",""
"55937","2019-07-18 16:15:07","0","24","<machine-learning><python><deep-learning><data-mining><time-series>","0",""
"55940","2019-07-18 16:33:59","1","12","<time-series><regression>","0",""
"55948","2019-07-18 18:19:11","0","48","<python><feature-selection><multiclass-classification><supervised-learning>","1",""
"55949","2019-07-18 18:41:09","1","71","<machine-learning><xboost>","2","1"
"55950","2019-07-18 18:59:27","0","55","<dataset><data><excel>","1",""
"55953","2019-07-18 19:16:55","1","15","<neural-network><dataset><data><generalization>","0",""
"55954","2019-07-18 19:18:41","0","38","<python><sql><market-basket-analysis>","0",""
"55955","2019-07-18 19:48:56","0","56","<neural-network>","1",""
"55958","2019-07-18 21:25:46","1","7","<machine-learning><deep-learning><classification><data-mining>","0",""
"55959","2019-07-18 21:37:01","0","22","<machine-learning><python><data-cleaning><anomaly-detection>","0",""
"55960","2019-07-18 21:43:46","1","13","<python><deep-learning><keras><time-series><lstm>","0","1"
"55961","2019-07-18 21:48:37","0","41","<python><dataset><pandas><dataframe>","1","1"
"55962","2019-07-18 21:56:56","1","1079","<neural-network><loss-function><probability><pytorch><softmax>","1",""
"55963","2019-07-18 21:57:44","0","367","<python><deep-learning><keras><cnn><image-classification>","2",""
"55968","2019-07-19 01:49:58","0","12","<machine-learning><deep-learning><convolution>","0",""
"55969","2019-07-19 02:11:00","1","35","<feature-selection><feature-engineering><correlation><matlab>","1","2"
"55972","2019-07-19 04:37:08","0","26","<neural-network><gan><generative-models>","1",""
"55975","2019-07-19 06:05:49","0","360","<machine-learning><cnn><reinforcement-learning><convolution>","0",""
"55977","2019-07-19 06:41:41","0","13","<cnn><convolution><pytorch><image-preprocessing>","0",""
"55980","2019-07-19 08:05:35","1","39","<python><keras><time-series><lstm><forecasting>","0",""
"55982","2019-07-19 08:11:19","0","1787","<machine-learning><python><pandas><lstm>","0",""
"55984","2019-07-19 08:34:35","3","66","<machine-learning><evaluation><explainable-ai>","1","2"
"55985","2019-07-19 08:41:50","0","13","<python><deep-learning><keras><time-series><lstm>","0",""
"55988","2019-07-19 09:35:44","0","48","<machine-learning><python><scikit-learn><feature-selection><random-forest>","1",""
"55990","2019-07-19 09:53:13","0","23","<neural-network><regression><pytorch>","1",""
"55991","2019-07-19 10:10:22","3","1239","<machine-learning><deep-learning><training>","2",""
"55994","2019-07-19 10:55:04","0","100","<machine-learning><deep-learning><tensorflow><object-detection><faster-rcnn>","1",""
"56000","2019-07-19 12:35:37","0","144","<tensorflow>","0",""
"56002","2019-07-19 13:47:30","1","19","<computer-vision><convolution><faster-rcnn>","1",""
"56003","2019-07-19 13:54:29","0","112","<machine-learning><python><time-series><prediction>","1",""
"56006","2019-07-19 14:09:49","0","14","<dataset><regression><statistics><data><bigdata>","1",""
"44573","2019-01-25 14:46:52","0","15","<dataset><theory>","0",""
"44574","2019-01-25 14:47:02","0","38","<machine-learning><time-series><forecast>","0",""
"44575","2019-01-25 14:49:19","0","23","<reinforcement-learning><dqn>","0",""
"44578","2019-01-25 15:26:30","1","389","<overfitting>","2",""
"44582","2019-01-25 16:54:16","0","74","<python><logistic-regression>","1",""
"44584","2019-01-25 18:22:34","0","229","<deep-learning><keras><tensorflow>","1",""
"44586","2019-01-25 19:13:11","2","506","<machine-learning><python>","1",""
"44591","2019-01-25 22:29:58","0","24","<machine-learning><deep-learning><c>","0",""
"44595","2019-01-26 03:53:11","0","932","<keras><multiclass-classification>","1",""
"44597","2019-01-26 06:21:26","1","28","<deep-learning><lstm>","0","1"
"44598","2019-01-26 07:32:26","0","8","<data-science-model>","0",""
"44602","2019-01-26 08:42:46","0","17","<career>","0",""
"44607","2019-01-26 10:30:50","0","167","<reinforcement-learning><ai><openai-gym>","2",""
"44608","2019-01-26 11:28:34","0","36","<preprocessing><distribution><methodology><learning>","0",""
"44611","2019-01-26 16:16:54","2","102","<keras><tensorflow>","1","1"
"44613","2019-01-26 16:53:48","0","25","<cnn><image-recognition>","1",""
"44617","2019-01-26 19:36:50","1","150","<machine-learning><python><multilabel-classification>","1",""
"44621","2019-01-26 23:18:17","0","290","<r>","3",""
"44624","2019-01-27 02:53:33","2","2538","<keras><tensorflow><lstm>","3","1"
"44625","2019-01-27 06:16:27","1","43","<machine-learning><deep-learning><transfer-learning>","0",""
"44627","2019-01-27 07:54:54","0","255","<python><tensorflow><anaconda>","2",""
"44635","2019-01-27 11:22:36","0","78","<machine-learning><neural-network><recommender-system><embeddings>","1",""
"44637","2019-01-27 11:50:17","0","57","<machine-learning><neural-network><supervised-learning>","1","1"
"44638","2019-01-27 11:54:23","1","19","<classification><data-mining><labels>","0",""
"44640","2019-01-27 12:17:44","1","24","<classification><decision-trees>","1",""
"44641","2019-01-27 12:30:58","1","34","<python><scikit-learn><data><linear-regression>","1",""
"44643","2019-01-27 13:45:38","0","35","<excel><sas>","1",""
"44644","2019-01-27 14:01:53","2","5672","<neural-network><keras><feature-selection><recurrent-neural-net><sequence-to-sequence>","1","1"
"44645","2019-01-27 14:13:32","1","216","<machine-learning><neural-network><keras><tensorflow>","1",""
"44647","2019-01-27 14:44:10","1","109","<neural-network><time-series><overfitting><recurrent-neural-net><data-augmentation>","2",""
"44649","2019-01-27 15:07:29","0","13","<probability><sampling><monte-carlo>","0",""
"44655","2019-01-27 17:20:07","0","53","<classification><time-series><predictive-modeling><statistics>","0",""
"44657","2019-01-27 18:20:22","1","70","<image-classification><image-recognition>","3","1"
"44658","2019-01-27 19:25:00","1","12","<statistics><ensemble-modeling><variance>","0",""
"44659","2019-01-27 19:38:54","1","119","<dataframe>","1",""
"44664","2019-01-27 22:11:40","0","37","<machine-learning><machine-learning-model>","1",""
"44668","2019-01-28 02:26:19","0","216","<python><machine-learning-model><data-science-model>","1",""
"44671","2019-01-28 03:05:03","1","16","<machine-learning><data-mining>","0",""
"44672","2019-01-28 03:27:38","0","42","<regression><cnn><convolution><image-preprocessing>","0",""
"44673","2019-01-28 04:04:19","1","62","<machine-learning><neural-network><deep-learning><cnn><image-classification>","2",""
"44674","2019-01-28 05:13:45","1","212","<deep-learning>","1",""
"44675","2019-01-28 06:20:18","0","21","<model-selection>","1",""
"44678","2019-01-28 06:45:34","1","275","<regression><categorical-data><unbalanced-classes>","1",""
"44679","2019-01-28 06:57:39","1","117","<naive-bayes-classifier>","0",""
"44680","2019-01-28 07:48:11","1","193","<python><tensorflow><cnn><computer-vision><opencv>","0",""
"44682","2019-01-28 08:11:29","0","2077","<pytorch>","2",""
"44683","2019-01-28 09:00:16","0","18","<classification><dataset><training>","0",""
"44692","2019-01-28 11:29:14","0","60","<deep-learning><keras><time-series><machine-learning-model><pytorch>","0",""
"44693","2019-01-28 11:44:21","2","482","<classification><multiclass-classification>","2",""
"44694","2019-01-28 11:49:17","1","188","<machine-learning><prediction>","1","1"
"44697","2019-01-28 12:32:03","1","406","<machine-learning><classification><nlp><natural-language-process><named-entity-recognition>","0",""
"44699","2019-01-28 13:15:46","4","73","<neural-network><deep-learning><nlp><word-embeddings>","1","2"
"44700","2019-01-28 13:17:11","4","3358","<neural-network><scikit-learn><classifier><mlp>","2","1"
"44703","2019-01-28 13:34:41","3","2010","<machine-learning><neural-network><gradient-descent><backpropagation><cost-function>","1","3"
"55798","2019-07-16 20:16:18","0","23","<deep-learning><keras><features>","0",""
"55800","2019-07-16 22:07:04","0","151","<python>","0",""
"55802","2019-07-16 23:46:14","1","28","<machine-learning><classification><dataset><text-mining>","0","1"
"55803","2019-07-17 00:05:06","1","29","<nlp><text-mining>","0",""
"55804","2019-07-17 01:11:25","0","25","<predictive-modeling>","0",""
"55808","2019-07-17 05:26:43","0","28","<python><pandas><dataframe>","2",""
"55811","2019-07-17 05:49:50","0","202","<python><pandas><csv><data-formats>","1",""
"55815","2019-07-17 06:46:12","0","10","<machine-learning>","0",""
"55816","2019-07-17 07:14:02","0","34","<machine-learning><deep-learning><cnn><batch-normalization>","0",""
"55817","2019-07-17 07:23:51","1","11","<machine-learning><preprocessing><pipelines>","0",""
"55818","2019-07-17 08:00:00","0","50","<machine-learning><r><feature-engineering><data-science-model><feature-map>","0","1"
"55819","2019-07-17 08:48:50","0","54","<machine-learning><scikit-learn><statistics><svm><anomaly-detection>","0",""
"55820","2019-07-17 08:59:13","0","840","<python><pandas>","1",""
"55821","2019-07-17 09:29:07","3","28","<machine-learning><computer-vision><natural-language-process>","2","1"
"55823","2019-07-17 09:35:57","1","19","<deep-learning>","0","1"
"55826","2019-07-17 11:09:26","0","50","<machine-learning><classification><class-imbalance>","2",""
"55828","2019-07-17 11:45:42","0","84","<deep-learning>","1",""
"55829","2019-07-17 11:51:26","0","36","<machine-learning><deep-learning><anomaly-detection>","1",""
"55830","2019-07-17 11:55:42","0","269","<machine-learning><python>","1",""
"55831","2019-07-17 12:03:36","4","70","<machine-learning><regularization><lasso>","2",""
"55833","2019-07-17 13:39:38","0","288","<machine-learning><keras><time-series><lstm><sequence>","0","1"
"55835","2019-07-17 13:47:50","0","148","<machine-learning><nlp><word2vec><gensim>","1",""
"55838","2019-07-17 13:56:09","1","130","<deep-learning><gan><transfer-learning><generative-models>","1",""
"55843","2019-07-17 15:06:27","1","62","<machine-learning><text-mining>","1",""
"55849","2019-07-17 15:50:40","0","8","<bayesian>","0",""
"55850","2019-07-17 15:53:35","1","204","<scipy>","1","0"
"55853","2019-07-17 17:58:23","0","10","<probability><naive-bayes-classifier><distribution><gaussian>","0",""
"55854","2019-07-17 17:59:51","0","17","<machine-learning><python><feature-engineering><forecast>","0",""
"55855","2019-07-17 18:10:46","0","109","<machine-learning><tensorflow>","1",""
"55856","2019-07-17 18:33:59","0","20","<python><nlp><clustering><word-embeddings>","1",""
"55857","2019-07-17 19:22:15","0","6","<gaussian-process>","0",""
"55858","2019-07-17 19:28:24","0","9","<data-mining><dataset><statistics><bigdata><categorical-data>","0",""
"55859","2019-07-17 19:32:53","1","50","<deep-learning><keras><tensorflow>","2","1"
"55860","2019-07-17 19:36:40","1","47","<beginner>","1","2"
"55862","2019-07-17 20:17:56","0","14","<decision-trees>","1",""
"55867","2019-07-17 21:24:42","0","12","<machine-learning><r><association-rules>","0",""
"55868","2019-07-17 21:30:52","0","9","<python><neural-network><tensorflow><predictive-modeling>","0","1"
"55869","2019-07-17 21:51:57","1","18","<scikit-learn><random-forest>","0",""
"55870","2019-07-17 22:28:44","0","15","<linear-regression>","0",""
"55873","2019-07-17 23:17:44","0","13","<deep-learning><dataset><class-imbalance>","0",""
"55874","2019-07-17 23:28:54","0","13","<deep-learning><autoencoder>","0",""
"55876","2019-07-17 23:40:17","2","31","<machine-learning><nlp><data-mining><text-mining><natural-language-process>","0",""
"55877","2019-07-17 23:57:25","0","28","<beginner><missing-data><definitions>","1",""
"55879","2019-07-18 00:31:19","2","77","<data-cleaning><csv>","2",""
"55882","2019-07-18 04:14:23","0","7","<data-analysis>","0",""
"55884","2019-07-18 05:13:15","0","13","<python><time-series><pandas><matplotlib><annotation>","0",""
"55886","2019-07-18 05:30:17","0","8","<machine-learning><aws><sagemaker>","0",""
"55887","2019-07-18 05:46:20","1","26","<machine-learning><deep-learning><tensorflow><data-science-model>","0","1"
"55888","2019-07-18 06:10:56","-1","65","<machine-learning><python><scala>","1",""
"55890","2019-07-18 06:17:31","0","22","<deep-learning><keras><object-detection>","0",""
"55892","2019-07-18 06:53:51","1","29","<nlp><machine-translation>","1",""
"55894","2019-07-18 07:23:45","0","12","<machine-learning><deep-learning><activation-function><perceptron>","0",""
"55896","2019-07-18 07:42:15","2","1219","<machine-learning><nlp><spacy>","1",""
"55897","2019-07-18 07:44:14","0","31","<machine-learning><time-series><linear-regression>","1",""
"55899","2019-07-18 08:00:57","0","29","<neural-network><keras><tensorflow><convolution><autoencoder>","0",""
"44790","2019-01-29 21:57:59","0","169","<python><computer-vision><opencv>","1",""
"44794","2019-01-29 23:52:17","5","35","<machine-learning><time-series>","1",""
"44795","2019-01-30 00:33:11","1","295","<machine-learning><python><nlp><clustering><similarity>","1",""
"44797","2019-01-30 01:14:19","1","11","<machine-learning><q-learning>","0","1"
"44798","2019-01-30 03:26:00","0","42","<bigdata><apache-hadoop>","1",""
"44800","2019-01-30 05:45:10","1","3093","<python><scikit-learn><recommender-system>","2",""
"44801","2019-01-30 06:04:15","1","19","<neural-network><deep-learning><data-science-model><ai>","0","1"
"44803","2019-01-30 06:51:22","1","367","<python><dataset><data><svm><machine-learning-model>","1",""
"44804","2019-01-30 09:06:08","1","81","<machine-learning><deep-learning><predictive-modeling><cnn>","1",""
"44811","2019-01-30 11:16:36","0","88","<pandas>","1",""
"44812","2019-01-30 11:34:15","0","21","<dataset><pandas><data><dataframe><weighted-data>","0",""
"44813","2019-01-30 11:44:39","1","58","<lstm><overfitting><generalization>","0","1"
"44818","2019-01-30 15:10:00","1","10","<data><probability><databases>","0",""
"56012","2019-07-19 14:29:01","1","60","<machine-learning><explainable-ai>","1","1"
"56013","2019-07-19 14:30:16","1","287","<machine-learning><python><scikit-learn><decision-trees>","2","1"
"56014","2019-07-19 14:31:04","0","448","<machine-learning><nlp><spacy>","0",""
"56016","2019-07-19 14:52:35","1","33","<python><data><data-analysis><interpolation>","0",""
"56017","2019-07-19 14:58:50","-1","30","<data>","1",""
"56021","2019-07-19 16:35:33","1","74","<keras><gpu>","1",""
"56025","2019-07-19 18:26:16","0","26","<deep-learning><rnn><loss-function><cost-function>","0",""
"56030","2019-07-19 19:30:16","1","76","<machine-learning><classification><data><class-imbalance>","0",""
"56033","2019-07-19 19:38:11","0","28","<classification><nlp><dataset>","1",""
"56035","2019-07-19 20:17:25","0","45","<machine-learning><python><forecasting>","1",""
"56038","2019-07-19 22:58:54","0","165","<neural-network><keras><tensorflow><cnn><gpu>","0",""
"56039","2019-07-19 23:08:56","1","80","<neural-network><deep-learning><cnn><autoencoder><hyperparameter-tuning>","0",""
"56041","2019-07-20 01:09:48","1","42","<machine-learning><gradient-descent><boosting>","0",""
"56042","2019-07-20 01:12:13","1","20","<r><xgboost><gbm>","0",""
"56045","2019-07-20 02:25:11","0","19","<machine-learning><deep-learning><classification>","1",""
"56046","2019-07-20 03:53:03","0","25","<deep-learning><bayesian>","0",""
"56047","2019-07-20 03:57:34","1","52","<classification><regression><predictive-modeling><markov>","2",""
"56049","2019-07-20 06:07:21","0","25","<deep-learning><loss-function><backpropagation><softmax>","2",""
"56050","2019-07-20 06:08:23","1","56","<logistic-regression><feature-engineering><feature-construction>","1","2"
"56053","2019-07-20 08:06:54","3","172","<python><deep-learning><reinforcement-learning><q-learning><openai-gym>","1",""
"56054","2019-07-20 08:58:49","1","32","<classification><data-mining>","0",""
"56056","2019-07-20 09:41:33","0","31","<dataset><statistics><bigdata><data-science-model>","1",""
"56058","2019-07-20 13:09:44","0","22","<machine-learning><boosting><ensemble>","1",""
"56062","2019-07-20 15:40:58","0","36","<machine-learning><clustering><recommender-system><k-means>","3",""
"56064","2019-07-20 17:08:13","0","22","<ocr><tesseract>","0",""
"56065","2019-07-20 17:11:17","0","20","<keras><openai-gym><weight-initialization>","0",""
"56066","2019-07-20 17:11:32","0","26","<machine-learning><python><neural-network><autoencoder><image-preprocessing>","0",""
"56067","2019-07-20 17:41:12","0","99","<neural-network><keras><tensorflow><autoencoder>","0",""
"56071","2019-07-20 18:55:06","1","62","<machine-learning><nlp><word2vec>","1",""
"56073","2019-07-20 20:45:28","0","258","<neural-network><cnn><tfidf>","0",""
"56074","2019-07-20 21:03:02","0","14","<backpropagation><linear-algebra>","0",""
"56077","2019-07-20 22:03:38","1","55","<machine-learning><python><feature-selection><random-forest><kaggle>","1","1"
"56080","2019-07-21 03:41:25","0","23","<deep-learning><computer-vision><convolution>","0",""
"56081","2019-07-21 04:01:11","0","12","<machine-learning><deep-learning><statistics><metric><bayesian>","1",""
"56084","2019-07-21 05:14:43","1","36","<dataset><feature-selection>","1",""
"56087","2019-07-21 07:17:49","1","196","<neural-network><keras><cnn>","1",""
"56088","2019-07-21 07:21:34","0","8","<machine-learning><autoencoder><generative-models><vae>","0",""
"56089","2019-07-21 10:07:22","1","167","<python>","1",""
"56090","2019-07-21 10:15:05","1","150","<encoding>","3","1"
"56091","2019-07-21 10:34:52","0","26","<neural-network><keras><cnn><transfer-learning>","0","1"
"56093","2019-07-21 10:53:34","0","31","<python><clustering><geospatial>","1",""
"56094","2019-07-21 11:35:52","2","682","<scikit-learn><recommender-system><cosine-distance><movielens>","1",""
"44547","2019-01-25 07:52:48","0","120","<machine-learning><deep-learning><classification>","0",""
"44549","2019-01-25 09:33:15","4","801","<machine-learning><loss-function><parameter-estimation>","1",""
"44552","2019-01-25 10:30:02","3","81","<neural-network><statistics><recurrent-neural-net><forecast><forecasting>","1",""
"44553","2019-01-25 10:32:31","2","29","<python><data-mining><text-mining><algorithms><optimization>","1",""
"44554","2019-01-25 10:36:38","0","4410","<python><historgram>","1",""
"44555","2019-01-25 10:39:20","0","15","<ocr>","0",""
"44558","2019-01-25 11:37:36","0","16","<algorithms>","1",""
"44561","2019-01-25 11:54:48","0","247","<machine-learning><python><time-series><lstm>","2",""
"44565","2019-01-25 12:53:34","1","41","<python><keras><time-series><regression><forecast>","0",""
"44823","2019-01-30 17:08:57","1","124","<machine-learning><neural-network><weighted-data><matrix>","1",""
"44828","2019-01-30 19:30:09","0","25","<machine-learning>","0",""
"44831","2019-01-30 20:02:20","1","65","<classification><random-forest><recommender-system><multiclass-classification>","2",""
"44836","2019-01-30 21:18:08","0","156","<python><text-mining><supervised-learning><lda>","1",""
"44837","2019-01-30 21:27:17","1","29","<neural-network><keras>","0","1"
"44839","2019-01-31 00:42:33","0","98","<keras><loss-function>","2",""
"44840","2019-01-31 01:15:50","0","54","<scikit-learn><tensorflow><algorithms>","1",""
"44841","2019-01-31 02:42:39","0","18","<scikit-learn><random-forest><decision-trees>","0",""
"44843","2019-01-31 04:28:42","0","262","<machine-learning><python>","1",""
"44845","2019-01-31 06:16:49","0","240","<python><feature-selection><correlation>","1",""
"44846","2019-01-31 06:54:43","2","135","<machine-learning><training><scalability>","4","1"
"44850","2019-01-31 08:36:48","1","125","<neural-network><convolution>","0",""
"44851","2019-01-31 08:49:03","-1","39","<dataframe>","1",""
"44852","2019-01-31 09:13:00","1","60","<feature-selection><ranking><information-theory><mutual-information>","0",""
"44853","2019-01-31 09:28:56","1","236","<machine-learning><clustering><k-means><fuzzy-logic>","1","1"
"44863","2019-01-31 13:42:09","2","201","<machine-learning>","4",""
"44864","2019-01-31 14:00:45","0","16","<machine-learning><tensorflow><autoencoder>","0",""
"44866","2019-01-31 14:16:49","1","492","<tensorflow>","1",""
"44870","2019-01-31 15:45:41","0","58","<machine-learning-model><kaggle>","0",""
"44871","2019-01-31 15:57:53","0","11122","<python><computer-vision><opencv>","2",""
"44875","2019-01-31 19:13:36","0","31","<machine-learning><classification><performance>","1",""
"44876","2019-01-31 19:58:54","1","65","<nlp><text-mining><text>","0",""
"44880","2019-01-31 22:51:31","5","177","<neural-network><linear-regression><svm><naive-bayes-classifier><perceptron>","4","1"
"44883","2019-02-01 00:02:15","5","4551","<deep-learning><keras><tensorflow><multiclass-classification><class-imbalance>","6","1"
"44884","2019-02-01 00:11:05","1","412","<machine-learning><data-mining><dataset>","2","1"
"44889","2019-02-01 04:16:08","2","304","<deep-learning><visualization><word2vec><tsne>","2","1"
"44890","2019-02-01 04:59:28","1","12","<prediction><linear-algebra>","0",""
"44893","2019-02-01 06:18:21","1","301","<clustering><k-means><features>","1",""
"44895","2019-02-01 07:00:14","1","66","<machine-learning><deep-learning><lstm><rnn><data-science-model>","1",""
"44896","2019-02-01 08:06:31","2","68","<machine-learning><optimization><machine-learning-model>","1",""
"44897","2019-02-01 08:17:46","1","857","<clustering><k-means>","2","1"
"44899","2019-02-01 08:50:33","1","339","<python><time-series><pandas><forecasting>","1",""
"44901","2019-02-01 09:44:49","0","21","<deep-learning><time-series><loss-function>","0",""
"44904","2019-02-01 10:26:58","1","282","<loss-function><gan><game>","0",""
"44908","2019-02-01 11:57:10","0","48","<dataset><lstm>","0",""
"44909","2019-02-01 12:05:50","0","483","<keras><autoencoder>","0",""
"44910","2019-02-01 12:15:54","7","171","<gan>","1","3"
"44911","2019-02-01 12:16:58","0","11","<python><neural-network><scikit-learn><tensorflow><simulation>","0",""
"44912","2019-02-01 12:21:02","0","46","<machine-learning><python><neural-network><deep-learning><numpy>","0",""
"44913","2019-02-01 13:15:31","1","29","<machine-learning>","3",""
"44915","2019-02-01 13:30:06","0","46","<nlp>","1",""
"44917","2019-02-01 14:01:38","0","17","<machine-learning><neural-network><deep-learning><probability><bayesian>","0",""
"44919","2019-02-01 14:17:32","0","39","<statistics>","0",""
"44923","2019-02-01 15:50:27","1","252","<dataset><prediction><marketing>","4","1"
"44925","2019-02-01 16:33:45","0","31","<machine-learning><neural-network><deep-learning><nlp><natural-language-process>","1",""
"44928","2019-02-01 17:05:44","0","77","<python><keras><tensorflow>","1",""
"56163","2019-07-22 14:24:54","6","229","<machine-learning><distance><metric><linear-algebra>","0",""
"56165","2019-07-22 14:35:26","0","86","<machine-learning><natural-language-process><data-analysis><cosine-distance>","1",""
"56167","2019-07-22 14:44:54","3","41","<recommender-system>","0","1"
"56168","2019-07-22 14:47:03","0","29","<dataset><training><object-detection><yolo>","0",""
"56170","2019-07-22 16:21:19","2","140","<multiclass-classification><multilabel-classification>","1",""
"56171","2019-07-22 16:36:03","1","255","<deep-learning><keras><tensorflow><cnn><convnet>","1","0"
"56172","2019-07-22 17:05:49","0","264","<tensorflow>","0",""
"56178","2019-07-22 18:01:31","5","190","<machine-learning><python><classification><dataset><xgboost>","2","2"
"56181","2019-07-22 18:53:04","0","14","<keras><tensorflow>","0",""
"56183","2019-07-22 19:37:14","0","39","<python><neural-network>","0","2"
"44933","2019-02-01 18:34:56","1","155","<deep-learning><cnn><convnet>","1",""
"44936","2019-02-01 18:49:09","1","1019","<neural-network><keras><multilabel-classification>","1",""
"44938","2019-02-01 19:09:41","1","16","<machine-learning><python><scikit-learn><predictive-modeling><sql>","0",""
"44940","2019-02-01 20:29:22","1","77","<python><pandas>","1",""
"44941","2019-02-01 20:39:46","1","192","<python><scikit-learn><random-forest><apache-spark><pyspark>","0",""
"44944","2019-02-01 21:54:18","1","56","<machine-learning><algorithms><boosting>","2",""
"44945","2019-02-01 22:46:32","0","29","<deep-learning><rbm>","0",""
"44947","2019-02-01 23:10:17","2","46","<predictive-modeling><machine-learning-model>","2",""
"44948","2019-02-01 23:21:38","1","86","<linear-regression><gradient-descent>","1","1"
"44949","2019-02-02 00:03:59","1","33","<terminology>","1",""
"44950","2019-02-02 03:23:13","1","260","<machine-learning><scikit-learn><cross-validation>","0","1"
"44951","2019-02-02 03:56:06","0","42","<machine-learning-model><machine-translation>","0",""
"44952","2019-02-02 03:56:58","0","63","<neural-network><ann>","0","1"
"44953","2019-02-02 05:42:13","1","74","<machine-learning><linear-algebra>","0",""
"44959","2019-02-02 06:47:12","0","12","<recommender-system>","0",""
"44961","2019-02-02 08:36:54","0","22","<machine-learning><time-series><rnn><forecast><forecasting>","1",""
"44966","2019-02-02 11:53:50","1","91","<neural-network><keras><time-series><recurrent-neural-net><sequence-to-sequence>","0",""
"44967","2019-02-02 13:26:24","1","24","<feature-selection>","0",""
"44968","2019-02-02 14:13:38","0","40","<python><pandas><simulation><monte-carlo>","0",""
"44969","2019-02-02 17:20:12","0","76","<python><keras><tensorflow>","1",""
"44970","2019-02-02 17:24:26","0","34","<nlp><word2vec><word-embeddings>","0",""
"44971","2019-02-02 19:00:35","1","219","<gpu><epochs>","1",""
"44972","2019-02-02 19:33:54","0","23","<machine-learning><neural-network>","0",""
"44973","2019-02-02 19:34:25","1","65","<machine-learning><python><predictive-modeling>","2",""
"44975","2019-02-02 20:24:01","1","28","<nlp><cross-validation><multilabel-classification><randomized-algorithms>","0",""
"44978","2019-02-02 21:12:21","0","55","<machine-learning><time-series><lstm>","0",""
"44980","2019-02-02 23:43:53","0","964","<classification><predictive-modeling><logistic-regression><xgboost>","3",""
"44981","2019-02-03 03:12:52","2","152","<deep-learning><nlp><text-generation>","1","1"
"44986","2019-02-03 09:46:38","2","110","<time-series><lstm><prediction>","1","1"
"44987","2019-02-03 10:39:54","0","32","<time-series><rnn><linear-regression>","1",""
"44990","2019-02-03 11:42:30","1","19","<machine-learning><deep-learning><statistics>","1",""
"44992","2019-02-03 12:10:15","2","27","<similarity><cosine-distance><jaccard-coefficient>","1",""
"44995","2019-02-03 14:22:25","2","3970","<python><visualization><matplotlib>","1",""
"44996","2019-02-03 14:23:41","1","360","<matlab><image-preprocessing>","0",""
"44999","2019-02-03 16:29:55","0","62","<python><numpy><scipy><matrix>","1",""
"45001","2019-02-03 17:27:30","0","30","<r><data-imputation>","1",""
"45003","2019-02-03 19:47:09","0","402","<dataset><image-classification>","0",""
"45004","2019-02-03 20:15:48","1","46","<machine-learning><classification><data-mining><xgboost><prediction>","2",""
"45006","2019-02-03 22:29:28","0","65","<dataset><statistics><data><missing-data><variance>","0",""
"45008","2019-02-04 00:12:21","1","19","<visualization><svm><supervised-learning>","0",""
"45011","2019-02-04 01:02:42","0","60","<pandas>","1",""
"45014","2019-02-04 03:23:30","0","13","<machine-learning>","0",""
"45015","2019-02-04 03:44:27","4","728","<neural-network><deep-learning><tensorflow>","1","2"
"45017","2019-02-04 05:06:13","0","12","<neural-network><feature-selection><feature-engineering>","0","2"
"45018","2019-02-04 05:48:02","1","135","<random-forest><multiclass-classification><unbalanced-classes><sampling>","0",""
"56097","2019-07-21 12:08:10","0","16","<machine-learning><deep-learning><nlp><machine-translation>","0",""
"56098","2019-07-21 12:16:36","1","60","<machine-learning><boosting><ensemble-learning>","1","1"
"56101","2019-07-21 12:39:44","0","43","<python><neural-network><scikit-learn><cross-validation><numpy>","1",""
"56105","2019-07-21 14:14:38","0","23","<machine-learning><information-theory><mutual-information>","0",""
"56108","2019-07-21 15:18:58","2","48","<cross-validation>","2",""
"56109","2019-07-21 15:40:41","0","34","<cross-validation><training>","2",""
"56110","2019-07-21 15:41:25","1","651","<deep-learning><keras><tensorflow><convnet><convolution>","1","1"
"56111","2019-07-21 15:52:33","3","60","<machine-learning><python><scikit-learn><class-imbalance>","1","1"
"56112","2019-07-21 15:53:27","0","26","<data-cleaning><feature-engineering>","1",""
"56116","2019-07-21 17:42:25","1","132","<deep-learning><reinforcement-learning><q-learning>","1",""
"56117","2019-07-21 18:06:17","0","16","<python><keras><tensorflow><dqn>","0",""
"56118","2019-07-21 18:20:29","0","10","<machine-learning><feature-engineering><forecasting>","0",""
"56122","2019-07-21 20:05:24","0","12","<machine-learning><nlp><sequence-to-sequence>","0",""
"56125","2019-07-21 21:07:47","0","34","<neural-network><convnet><gradient-descent><convolution><backpropagation>","0","1"
"56126","2019-07-21 21:56:34","1","100","<python><neural-network><keras><tensorflow><sequence-to-sequence>","0",""
"56129","2019-07-22 00:37:37","1","29","<scikit-learn><learning-to-rank>","1",""
"56130","2019-07-22 01:22:56","1","16","<autoencoder><gan><generative-models><markov>","0",""
"56135","2019-07-22 06:24:00","1","26","<classification><statistics>","1","1"
"56136","2019-07-22 07:13:53","0","108","<python><deep-learning><keras><lstm>","1",""
"56137","2019-07-22 07:44:56","0","21","<feature-selection><feature-engineering><data-science-model>","1","1"
"56139","2019-07-22 08:55:00","1","116","<machine-learning>","4","1"
"56141","2019-07-22 09:26:29","0","23","<machine-learning><neural-network><deep-learning><r><sequential-pattern-mining>","0",""
"56142","2019-07-22 09:31:57","1","62","<machine-learning><preprocessing>","2",""
"56144","2019-07-22 09:54:45","1","17","<machine-learning><reinforcement-learning><q-learning><policy-gradients><actor-critic>","1",""
"56145","2019-07-22 10:11:13","1","22","<neural-network><metric><machine-translation><transformer>","0",""
"56149","2019-07-22 10:46:54","0","15","<machine-learning><reinforcement-learning><q-learning><policy-gradients>","0","1"
"56150","2019-07-22 10:48:15","0","29","<classification><algorithms><supervised-learning>","2",""
"56152","2019-07-22 12:01:53","2","52","<machine-learning><pandas><correlation>","1",""
"56153","2019-07-22 12:08:52","0","20","<machine-learning><boosting><ensemble-learning>","1",""
"56154","2019-07-22 13:11:25","2","120","<semi-supervised-learning>","0","1"
"56155","2019-07-22 13:18:50","1","342","<optimization><scipy>","1",""
"56156","2019-07-22 13:35:10","0","148","<machine-learning><classification><nlp><spacy>","1",""
"56273","2019-07-23 19:57:03","4","24","<convnet><convolution>","2","1"
"56275","2019-07-23 20:17:40","1","17","<machine-learning><neural-network><numpy><recurrent-neural-net>","0",""
"56276","2019-07-23 22:18:28","1","23","<machine-learning><classification><predictive-modeling><logistic-regression><machine-learning-model>","0",""
"56277","2019-07-23 22:51:30","1","63","<machine-learning><svm>","2","2"
"56278","2019-07-23 23:04:16","1","63","<dataset><statistics><graphs><descriptive-statistics><math>","1",""
"56282","2019-07-24 02:18:52","0","265","<python><seaborn><heatmap>","0",""
"56285","2019-07-24 04:51:35","2","139","<machine-learning><xgboost><boosting>","2",""
"56286","2019-07-24 04:52:55","0","13","<neural-network><deep-learning>","0",""
"56289","2019-07-24 06:50:57","0","43","<machine-learning><classification><regression><machine-learning-model>","2",""
"56290","2019-07-24 06:57:18","0","13","<machine-learning><neural-network><deep-learning><tensorflow><graphs>","0",""
"45063","2019-02-05 05:08:34","0","26","<machine-learning><python><deep-learning><tensorflow>","0","1"
"45067","2019-02-05 06:11:55","1","86","<machine-learning><python><naive-bayes-classifier><tfidf>","0",""
"45068","2019-02-05 06:35:04","2","138","<machine-learning><neural-network><deep-learning><supervised-learning><performance>","0",""
"45070","2019-02-05 07:28:04","4","94","<neural-network><lstm><recurrent-neural-net>","0",""
"45071","2019-02-05 08:10:24","0","23","<deep-learning><batch-normalization>","0",""
"45073","2019-02-05 09:28:15","0","59","<deep-learning><classification><cnn><image-recognition>","0",""
"44727","2019-01-28 18:09:24","2","540","<neural-network><training><convolution><matlab>","1",""
"44728","2019-01-28 18:11:50","0","59","<tensorflow><lstm>","0",""
"44729","2019-01-28 18:59:00","0","18","<python><matlab>","0",""
"44730","2019-01-28 19:19:04","1","187","<python><neural-network>","1",""
"44731","2019-01-28 19:35:36","1","39","<nlp><word2vec>","0",""
"44735","2019-01-28 20:03:24","0","9","<probability><theory>","0",""
"44738","2019-01-28 20:27:01","1","3991","<python><dataframe>","1",""
"44741","2019-01-28 22:14:20","0","9","<tensorflow><lstm>","0",""
"44744","2019-01-28 22:57:10","0","403","<python><word2vec><gensim>","1",""
"44745","2019-01-28 23:48:02","0","159","<python><text-mining>","0",""
"44746","2019-01-28 23:49:09","0","531","<data-mining><market-basket-analysis>","1",""
"44749","2019-01-29 04:30:15","0","12","<machine-learning>","0",""
"44750","2019-01-29 05:06:56","1","64","<anaconda>","1",""
"44751","2019-01-29 05:20:11","0","19","<recommender-system><ranking>","0",""
"44753","2019-01-29 06:17:37","1","13","<machine-learning><deep-learning><pytorch>","0",""
"44755","2019-01-29 07:21:40","2","788","<classification><unbalanced-classes><weighted-data>","1","2"
"44759","2019-01-29 09:00:04","0","61","<machine-learning><python><xgboost>","1",""
"44761","2019-01-29 09:17:28","0","41","<machine-learning><neural-network><computer-vision>","0",""
"44762","2019-01-29 09:31:41","0","244","<word2vec><similarity><normalization><similar-documents>","0",""
"44763","2019-01-29 09:49:09","0","38","<forecasting>","0",""
"44764","2019-01-29 09:57:20","0","365","<python><outlier>","1",""
"44768","2019-01-29 11:04:38","6","242","<machine-learning><neural-network><deep-learning>","4","1"
"44769","2019-01-29 13:42:55","2","47","<social-network-analysis>","0",""
"44774","2019-01-29 15:23:35","1","87","<jupyter><kaggle>","1","1"
"44776","2019-01-29 15:51:00","0","365","<python><computer-vision><object-detection><opencv>","0",""
"44777","2019-01-29 16:07:48","1","65","<feature-selection><linear-regression>","3",""
"44778","2019-01-29 16:23:55","2","71","<deep-learning><lstm>","1","1"
"44780","2019-01-29 17:00:21","1","120","<python><tensorflow>","0",""
"44783","2019-01-29 17:58:34","0","124","<python><keras><tensorflow><estimators>","0","2"
"44788","2019-01-29 20:25:24","0","23","<machine-learning><deep-learning><reinforcement-learning><q-learning>","0",""
"56302","2019-07-24 12:17:29","0","8","<machine-learning><keras><statistics>","0",""
"56303","2019-07-24 12:27:32","1","47","<reinforcement-learning><openai-gym>","1",""
"56304","2019-07-24 12:42:32","1","18","<reinforcement-learning><openai-gym>","1",""
"56307","2019-07-24 13:09:38","1","67","<deep-learning><keras><word-embeddings><embeddings>","1",""
"56308","2019-07-24 13:10:53","2","128","<reinforcement-learning>","1",""
"56311","2019-07-24 13:37:06","0","28","<pandas><csv><aws><aws-lambda>","0",""
"56315","2019-07-24 14:33:09","0","18","<neural-network>","1",""
"56318","2019-07-24 14:56:02","2","37","<machine-learning>","2",""
"56320","2019-07-24 15:49:17","0","17","<machine-learning><deep-learning><linear-regression><association-rules>","0",""
"56321","2019-07-24 15:57:29","4","170","<regression><xgboost><cross-validation><overfitting><metric>","1","2"
"56323","2019-07-24 16:37:21","0","15","<deep-learning>","0",""
"56324","2019-07-24 16:55:44","1","35","<r><data-cleaning>","1",""
"56325","2019-07-24 18:11:35","0","131","<machine-learning><scikit-learn><pandas>","1",""
"56327","2019-07-24 18:24:49","0","21","<machine-learning><python><time-series><statistics><forecasting>","0",""
"56328","2019-07-24 18:56:02","3","40","<machine-learning><python><scikit-learn><distance><k-nn>","1","2"
"56329","2019-07-24 19:00:39","1","50","<python><matplotlib>","1",""
"56330","2019-07-24 19:22:33","0","135","<machine-learning><keras><loss-function>","0",""
"56331","2019-07-24 19:33:23","0","635","<dataset><regression><prediction><dummy-variables>","2",""
"56332","2019-07-24 19:35:24","2","32","<powerbi>","0",""
"56333","2019-07-24 20:02:03","0","19","<machine-learning><lstm><machine-learning-model>","0",""
"56335","2019-07-24 20:34:34","0","43","<neural-network><training><object-detection>","0",""
"56336","2019-07-24 21:01:05","1","113","<machine-learning><xgboost>","0","1"
"56337","2019-07-24 21:19:34","0","10","<classification><bigdata><indexing>","0",""
"56338","2019-07-24 21:27:39","1","25","<classification><r><clustering><logistic-regression>","1","1"
"56341","2019-07-24 21:34:12","0","85","<machine-learning><xgboost><survival-analysis>","0",""
"56345","2019-07-24 23:58:54","1","25","<machine-learning><python><linear-regression><multiclass-classification>","0",""
"56349","2019-07-25 00:46:27","1","12","<ab-test>","0",""
"56352","2019-07-25 05:12:20","0","24","<feature-selection><xgboost><correlation>","0",""
"56353","2019-07-25 06:27:02","5","65","<python><software-development>","1","1"
"45019","2019-02-04 05:55:38","2","149","<tensorflow><pytorch>","0","1"
"45023","2019-02-04 09:05:24","1","60","<nlp><natural-language-process>","0","1"
"45027","2019-02-04 11:03:58","1","231","<deep-learning><cnn><convolution>","0","2"
"45028","2019-02-04 11:18:01","3","274","<scikit-learn><logistic-regression>","1",""
"45029","2019-02-04 11:22:49","0","123","<nlp><anomaly-detection><ngrams>","0",""
"45030","2019-02-04 11:24:40","0","18","<machine-learning><random-forest><recommender-system>","0",""
"45033","2019-02-04 12:10:56","3","336","<natural-language-process>","2",""
"45034","2019-02-04 13:33:08","0","9","<dataset><error-handling>","0",""
"45036","2019-02-04 13:39:51","0","38","<deep-learning><lstm>","1",""
"45039","2019-02-04 14:46:24","3","257","<deep-learning><cnn><training><gan>","1","2"
"45041","2019-02-04 16:08:30","0","461","<machine-learning><python><classification><scikit-learn>","1",""
"45043","2019-02-04 16:21:49","0","61","<machine-learning><neural-network><deep-learning><convolution>","0",""
"45044","2019-02-04 16:23:19","0","40","<churn>","0","1"
"56365","2019-07-25 10:46:19","1","791","<classification><xgboost><prediction><supervised-learning>","1",""
"56366","2019-07-25 10:54:08","0","154","<neural-network><dataset>","1",""
"56367","2019-07-25 10:57:03","0","9","<markov-hidden-model>","0","1"
"56369","2019-07-25 10:59:34","3","51","<svm><kernel><ridge-regression>","1",""
"56373","2019-07-25 12:35:56","1","30","<classification><scikit-learn><multiclass-classification>","1","1"
"56374","2019-07-25 12:46:45","0","197","<r><svm>","0",""
"56376","2019-07-25 13:50:50","6","36","<neural-network><deep-learning><computer-vision><convolution>","1",""
"56377","2019-07-25 13:52:10","4","57","<cnn><feature-extraction><image-recognition><gan><image-preprocessing>","1","1"
"56379","2019-07-25 14:12:03","0","51","<machine-learning><feature-engineering><data-wrangling>","3",""
"56382","2019-07-25 15:00:20","0","34","<machine-learning><python><pandas><natural-language-process><dataframe>","0",""
"56383","2019-07-25 15:04:42","4","136","<machine-learning><data-science-model><overfitting>","1","2"
"56386","2019-07-25 15:48:07","2","70","<machine-learning><python><scikit-learn><svm><matplotlib>","0",""
"56390","2019-07-25 16:11:19","2","33","<visualization>","1",""
"56398","2019-07-25 17:47:24","0","86","<machine-learning><python>","0",""
"56401","2019-07-25 19:46:31","0","20","<machine-learning><neural-network><deep-learning><predictive-modeling><prediction>","0",""
"56404","2019-07-25 21:02:02","2","40","<faster-rcnn><alex-net>","1",""
"56405","2019-07-25 21:13:31","7","178","<machine-learning><optimization><gradient-descent><mini-batch-gradient-descent>","2","1"
"56406","2019-07-25 21:32:27","1","16","<nlp><search-engine>","1",""
"56407","2019-07-25 21:57:55","2","166","<keras><kernel>","1",""
"56409","2019-07-25 23:04:38","2","13","<python><google><cloud>","0",""
"56412","2019-07-26 02:05:45","0","51","<python><cnn><mnist><weighted-data>","0",""
"56420","2019-07-26 07:18:47","2","55","<machine-learning><statistics><data-cleaning><data-wrangling>","0",""
"56426","2019-07-26 09:41:37","2","43","<data><feature-engineering><feature-scaling>","2",""
"56427","2019-07-26 10:31:23","1","71","<python><pandas><visualization><matplotlib><plotting>","2",""
"56429","2019-07-26 10:56:26","1","123","<machine-learning><boosting><lightgbm>","0",""
"56430","2019-07-26 11:03:10","0","21","<deep-learning><optimization><backpropagation><object-detection><openai-gym>","0",""
"56432","2019-07-26 11:44:54","1","64","<neural-network><deep-learning><cnn><object-detection><yolo>","1",""
"56437","2019-07-26 12:36:28","0","16","<regression><statistics><logistic-regression>","0",""
"45189","2019-02-06 22:44:04","1","10","<time-series>","0",""
"45190","2019-02-07 04:49:52","1","28","<natural-language-process><language-model>","0",""
"45197","2019-02-07 08:37:05","1","44","<machine-learning><deep-learning><supervised-learning>","1",""
"45200","2019-02-07 09:06:03","1","32","<machine-learning><neural-network><cnn>","1",""
"45202","2019-02-07 09:46:19","2","55","<predictive-modeling><model-selection><evaluation><scoring>","1",""
"45203","2019-02-07 09:53:25","1","32","<r><data-mining><visualization><ggplot2>","1",""
"45204","2019-02-07 09:56:54","1","41","<nlp>","0",""
"45208","2019-02-07 10:14:38","1","283","<keras><scikit-learn><cross-validation><class-imbalance>","1",""
"45211","2019-02-07 10:47:30","2","43","<machine-learning><regression><statistics><logistic-regression>","1",""
"45212","2019-02-07 11:47:51","0","94","<python><classification><logistic-regression><sampling>","0",""
"45213","2019-02-07 12:18:47","0","84","<supervised-learning><model-selection><hyperparameter-tuning>","0",""
"56186","2019-07-22 20:23:50","0","262","<machine-learning><python><clustering><unsupervised-learning><feature-scaling>","1",""
"56193","2019-07-23 01:09:44","0","68","<neural-network><deep-learning><optimization><gan><generative-models>","2",""
"56194","2019-07-23 01:41:38","1","9","<python><preprocessing><natural-language-process>","0",""
"56195","2019-07-23 01:54:44","2","28","<machine-learning><deep-learning>","0","1"
"56196","2019-07-23 03:11:39","1","337","<keras><evaluation><gan><inception>","0",""
"56197","2019-07-23 03:24:59","1","23","<machine-learning><dataset><data><data-cleaning><feature-scaling>","0","1"
"56198","2019-07-23 03:33:24","1","18","<machine-learning><python><nlp><nltk><topic-model>","0","1"
"56201","2019-07-23 03:50:04","0","28","<machine-learning><classification><cnn><data-cleaning>","0",""
"56202","2019-07-23 03:50:45","0","29","<python><neural-network><deep-learning><cnn><pytorch>","1",""
"56204","2019-07-23 05:18:59","2","36","<nlp>","2",""
"56208","2019-07-23 06:05:09","0","37","<machine-learning><deep-learning><data-mining><predictive-modeling><machine-learning-model>","0",""
"56209","2019-07-23 06:08:56","0","70","<machine-learning><statistics><data-cleaning><data-wrangling>","3",""
"56210","2019-07-23 06:11:18","1","106","<neural-network><deep-learning><reinforcement-learning>","1",""
"56213","2019-07-23 06:57:45","0","47","<data-mining><matlab>","0",""
"56215","2019-07-23 07:09:00","2","298","<neural-network><deep-learning>","2",""
"56217","2019-07-23 07:41:44","0","20","<deep-learning><time-series><hyperparameter-tuning>","1",""
"56220","2019-07-23 08:17:29","0","48","<machine-learning><neural-network><cost-function>","0","1"
"56221","2019-07-23 08:23:05","1","8","<cnn><autoencoder>","0",""
"56224","2019-07-23 09:24:56","0","23","<python><stacked-lstm>","0",""
"56225","2019-07-23 09:57:59","0","23","<python><statistics><descriptive-statistics>","0",""
"56226","2019-07-23 10:08:15","1","42","<machine-learning><deep-learning><classification><nlp>","1",""
"56227","2019-07-23 10:16:56","0","64","<neural-network><keras><regression>","1",""
"56230","2019-07-23 11:02:46","1","27","<predictive-modeling><random-forest>","0",""
"56231","2019-07-23 11:27:56","0","27","<neural-network><deep-learning><lstm><reinforcement-learning><recurrent-neural-net>","0",""
"56233","2019-07-23 11:45:15","0","10","<machine-learning><word2vec>","0",""
"56234","2019-07-23 11:51:40","0","66","<clustering><unsupervised-learning>","2",""
"56235","2019-07-23 12:13:22","0","44","<machine-learning><time-series><lstm>","0","2"
"56238","2019-07-23 12:47:48","0","206","<python><pandas>","1",""
"56240","2019-07-23 13:04:28","4","46","<cnn><image-classification><supervised-learning><image-recognition>","1","2"
"56246","2019-07-23 13:24:05","1","37","<machine-learning><regression><svm><svr>","0","1"
"56248","2019-07-23 13:59:36","0","41","<neural-network><scikit-learn><accuracy><overfitting>","0",""
"56250","2019-07-23 14:29:08","2","384","<scikit-learn><decision-trees><class-imbalance>","1","0"
"56252","2019-07-23 14:45:23","1","49","<machine-learning><cnn><convolution>","1",""
"56254","2019-07-23 15:21:05","0","14","<neural-network><classification>","0",""
"56256","2019-07-23 15:56:37","0","20","<deep-learning><predictive-modeling><feature-selection><prediction>","1",""
"56259","2019-07-23 16:17:30","0","42","<classification><cnn>","0",""
"56262","2019-07-23 18:37:26","1","82","<deep-learning><batch-normalization>","1",""
"56263","2019-07-23 18:41:44","-1","82","<machine-learning><scikit-learn>","2",""
"56264","2019-07-23 19:01:22","1","50","<machine-learning><python><keras><tensorflow>","2",""
"56265","2019-07-23 19:01:23","0","15","<scikit-learn><tensorflow><time-series><random-forest><numpy>","0",""
"56267","2019-07-23 19:23:59","1","32","<deep-learning><cnn><image-classification><unsupervised-learning>","2",""
"56269","2019-07-23 19:35:21","0","40","<python><keras><tensorflow><lstm><rnn>","0",""
"56270","2019-07-23 19:44:32","1","17","<machine-learning><cross-validation>","0","1"
"56450","2019-07-26 15:43:56","0","111","<representation>","0",""
"56453","2019-07-26 16:09:02","0","20","<clustering><correlation>","0",""
"56454","2019-07-26 16:17:24","0","39","<xgboost>","2",""
"56455","2019-07-26 16:23:14","0","25","<neural-network><deep-learning>","0",""
"56457","2019-07-26 16:49:57","0","26","<autoencoder><pca>","1",""
"56460","2019-07-26 17:36:12","0","52","<keras><time-series><lstm><rnn><training>","0",""
"56464","2019-07-26 21:35:36","0","39","<machine-learning><time-series><feature-engineering><feature-extraction><forecasting>","0",""
"56465","2019-07-26 21:52:17","1","17","<machine-learning><deep-learning><deep-network>","0",""
"56466","2019-07-26 21:59:05","0","57","<machine-learning><dataset><machine-learning-model>","4",""
"45074","2019-02-05 10:02:16","2","3556","<python><pandas>","2",""
"45075","2019-02-05 10:02:24","1","3875","<python><pandas>","1",""
"45081","2019-02-05 11:11:28","0","42","<time-series>","0",""
"45083","2019-02-05 11:20:29","1","342","<r><dataframe><programming><dplyr>","1",""
"45084","2019-02-05 11:57:00","1","47","<loss-function>","1",""
"45086","2019-02-05 12:03:37","1","161","<keras><tensorflow>","1",""
"45089","2019-02-05 12:44:40","1","104","<pandas>","4",""
"45093","2019-02-05 14:00:29","1","20","<neural-network><deep-learning><keras><tensorflow>","0",""
"45098","2019-02-05 15:06:04","1","25","<neural-network><training>","0",""
"45099","2019-02-05 15:29:35","0","158","<python><image-classification><opencv><image-preprocessing>","0",""
"45102","2019-02-05 15:45:10","2","115","<python><pandas><numpy><jupyter>","1",""
"45103","2019-02-05 16:19:07","2","56","<neural-network><deep-learning>","2","0"
"45104","2019-02-05 16:19:40","0","152","<tensorflow>","1",""
"45107","2019-02-05 16:44:46","1","20","<predictive-modeling>","0","1"
"45112","2019-02-05 17:53:12","0","41","<time-series><lstm><recurrent-neural-net>","0",""
"45114","2019-02-05 18:48:48","1","23","<predictive-modeling><unsupervised-learning><supervised-learning>","1",""
"45116","2019-02-05 19:36:40","1","309","<neural-network><tensorflow><object-detection>","0",""
"45117","2019-02-05 19:37:02","1","316","<python><neural-network><rnn><pytorch>","0",""
"45118","2019-02-05 20:38:56","4","4950","<python><r>","1",""
"45119","2019-02-05 20:55:27","1","27","<classification>","1",""
"45121","2019-02-05 20:57:25","2","61","<machine-learning><python><r><machine-learning-model><azure-ml>","1",""
"45124","2019-02-05 21:52:45","6","664","<python><pytorch>","1","1"
"45126","2019-02-06 00:06:11","0","12","<r><nlp>","0",""
"45128","2019-02-06 03:26:47","2","109","<machine-learning><sampling>","1",""
"45129","2019-02-06 03:57:30","1","1113","<python><time-series><lstm><matlab>","1",""
"45133","2019-02-06 05:13:53","1","27","<python><data-mining><data-cleaning>","1",""
"45136","2019-02-06 05:55:24","1","18","<python><data-mining><data-cleaning>","1",""
"45137","2019-02-06 06:31:51","1","60","<machine-learning><time-series><correlation><similarity>","1",""
"45139","2019-02-06 07:31:29","0","36","<python><map-reduce>","1",""
"45143","2019-02-06 08:36:38","1","33","<nlp><naive-bayes-classifier><ngrams>","0",""
"45144","2019-02-06 08:56:45","1","518","<machine-learning><pandas><pyspark>","2",""
"45148","2019-02-06 09:24:17","1","1585","<r><data-mining><dataset><dplyr>","1",""
"45149","2019-02-06 09:37:59","2","341","<nlp><sentiment-analysis>","1",""
"45151","2019-02-06 10:14:49","1","34","<python><data-mining><data-cleaning>","1",""
"45153","2019-02-06 10:37:31","1","30","<machine-learning>","1",""
"45154","2019-02-06 10:40:51","1","517","<tensorflow><lstm><rnn><data-science-model>","0",""
"45156","2019-02-06 10:58:20","2","1444","<python><data-mining><text-mining><data-cleaning>","2",""
"45157","2019-02-06 10:58:23","1","23","<data><preprocessing>","0",""
"45158","2019-02-06 11:01:01","1","82","<text-mining><orange>","0",""
"45163","2019-02-06 12:31:40","2","679","<python><nlp><class-imbalance><imbalanced-learn>","3",""
"45165","2019-02-06 13:29:24","14","28060","<machine-learning><neural-network><deep-learning><classification><keras>","4","2"
"45168","2019-02-06 13:57:33","2","38","<deep-learning><classification><cnn><computer-vision><image-preprocessing>","0","2"
"45169","2019-02-06 14:23:36","2","17","<data-mining><machine-learning-model>","0",""
"45170","2019-02-06 14:31:11","1","29","<r>","1",""
"45174","2019-02-06 15:51:53","2","1621","<machine-learning><scikit-learn><multilabel-classification>","3","1"
"45176","2019-02-06 16:50:59","1","25","<python><optimization>","1",""
"45177","2019-02-06 16:51:27","1","524","<tensorflow>","1",""
"45178","2019-02-06 17:24:27","1","27","<beginner><education>","1",""
"45179","2019-02-06 17:26:20","1","32","<python><keras><tensorflow>","1",""
"45180","2019-02-06 17:37:49","6","95","<feature-selection><random-forest><decision-trees><predictor-importance>","1","1"
"45183","2019-02-06 18:56:27","2","93","<nlp><recommender-system><word-embeddings>","1",""
"45184","2019-02-06 19:24:17","2","20","<dataset>","1",""
"45328","2019-02-10 03:26:11","2","551","<python><keras><dataset><lstm><bigdata>","0",""
"45330","2019-02-10 04:40:54","0","22","<deep-learning><chatbot><dialog-flow>","0",""
"45331","2019-02-10 05:20:25","1","304","<machine-learning><data>","1",""
"45332","2019-02-10 06:33:37","6","95","<classification><statistics><optimization><machine-learning-model>","3","0"
"45335","2019-02-10 10:40:47","0","25","<machine-learning><deep-learning><nlp><natural-language-process>","1",""
"45340","2019-02-10 14:56:07","1","104","<machine-learning><neural-network><classification><keras>","0",""
"45341","2019-02-10 15:32:13","0","108","<machine-learning><training><unsupervised-learning><supervised-learning>","1",""
"45343","2019-02-10 17:13:39","1","489","<machine-learning><neural-network><deep-learning><tensorflow><gan>","0",""
"45344","2019-02-10 17:31:41","0","23","<neural-network><classification><scikit-learn>","0","0"
"45345","2019-02-10 17:43:07","0","43","<market-basket-analysis>","1",""
"45346","2019-02-10 18:13:25","1","217","<decision-trees><data-science-model>","1",""
"45348","2019-02-10 19:00:45","0","98","<machine-learning><clustering><data-analysis>","1",""
"45351","2019-02-10 23:09:41","2","181","<kaggle><genetic-programming>","2",""
"45355","2019-02-11 02:42:05","0","202","<scikit-learn><pipelines>","1",""
"45356","2019-02-11 02:48:58","1","794","<python><scikit-learn>","1",""
"45359","2019-02-11 03:42:29","1","17","<statistics><probability><bayesian><probabilistic-programming><mcmc>","1",""
"45362","2019-02-11 06:22:00","1","19","<machine-learning><nlp><nltk>","0",""
"45364","2019-02-11 07:17:57","0","54","<machine-learning><time-series><anomaly-detection><forecasting><grid-search>","0",""
"45365","2019-02-11 07:35:30","2","61","<ranking><learning-to-rank><ndcg>","1",""
"45367","2019-02-11 08:20:51","0","13","<image-classification><feature-extraction>","0",""
"45368","2019-02-11 08:53:30","1","18","<neural-network><convnet><text><transfer-learning>","0",""
"45369","2019-02-11 09:57:39","2","1477","<bigdata><apache-spark><pyspark>","1",""
"45370","2019-02-11 10:35:45","2","148","<clustering><unsupervised-learning><tsne>","2",""
"45371","2019-02-11 10:49:46","4","290","<scikit-learn><regression><linear-regression><gradient-descent><boosting>","1",""
"56514","2019-07-28 11:04:17","1","31","<machine-learning><machine-learning-model><terminology><definitions>","2",""
"56517","2019-07-28 12:08:28","0","128","<tensorflow>","0",""
"56518","2019-07-28 12:25:33","0","458","<python><deep-learning><computer-vision><faster-rcnn>","0",""
"56519","2019-07-28 12:36:13","1","128","<python><scikit-learn><predictive-modeling>","0",""
"56526","2019-07-28 21:57:49","1","70","<deep-learning><keras><tensorflow><convolution>","0",""
"56527","2019-07-28 22:40:05","1","23","<ranking>","0",""
"56530","2019-07-29 03:08:30","0","117","<time-series><hyperparameter-tuning><lightgbm>","1",""
"56531","2019-07-29 03:51:11","0","35","<time-series><predictive-modeling><lstm><rnn>","0",""
"56532","2019-07-29 04:34:45","1","12","<social-network-analysis><reference-request>","0",""
"56533","2019-07-29 05:53:29","0","19","<machine-learning><svm><loss-function><perceptron>","0",""
"56534","2019-07-29 06:04:21","0","30","<nlp><natural-language-process><nltk>","1",""
"56537","2019-07-29 07:26:20","1","105","<deep-learning><generative-models>","1",""
"56538","2019-07-29 07:45:17","0","14","<machine-learning><dimensionality-reduction><grid-search><feature-reduction>","0",""
"56546","2019-07-29 08:33:32","0","16","<deep-learning><generative-models>","0",""
"56549","2019-07-29 09:11:55","1","20","<machine-learning><python><classification><algorithms>","1",""
"56551","2019-07-29 09:18:06","1","41","<scikit-learn><regression><feature-selection><cross-validation>","1",""
"56552","2019-07-29 09:18:46","2","59","<machine-learning><model-selection><hyperparameter-tuning>","0",""
"56553","2019-07-29 09:24:56","0","47","<deep-learning><reinforcement-learning><q-learning><dqn>","1",""
"56555","2019-07-29 09:39:48","0","25","<scikit-learn><regression><random-forest><categorical-data><data-science-model>","0",""
"56556","2019-07-29 09:55:10","0","43","<machine-learning><python><keras><natural-language-process>","0",""
"56559","2019-07-29 11:26:10","0","16","<powerbi>","0",""
"56560","2019-07-29 11:41:38","2","20","<neural-network><cnn><convnet><backpropagation>","0",""
"56561","2019-07-29 12:21:59","2","27","<orange>","0",""
"56562","2019-07-29 12:30:32","1","31","<python><lstm><pytorch>","0",""
"56563","2019-07-29 13:02:31","0","69","<time-series><lstm><rnn><attention-mechanism>","0",""
"56565","2019-07-29 13:35:35","2","152","<clustering>","2",""
"56567","2019-07-29 13:39:56","0","43","<nlp><bert>","0",""
"56568","2019-07-29 13:47:11","1","38","<machine-learning><deep-learning><statistics>","1",""
"56570","2019-07-29 14:36:34","0","23","<pandas><visualization><seaborn>","1","1"
"56571","2019-07-29 14:52:31","1","41","<neural-network><classification><image-classification><computer-vision>","1",""
"56572","2019-07-29 14:56:12","0","23","<machine-learning><predictive-modeling><algorithms><prediction><model-selection>","0",""
"56577","2019-07-29 15:28:21","0","43","<machine-learning><ensemble-modeling><hyperparameter><meta-learning>","1",""
"56579","2019-07-29 16:31:37","0","9","<machine-learning><predictive-modeling><prediction><preprocessing>","0",""
"56580","2019-07-29 16:51:27","1","47","<dataset><preprocessing>","0",""
"44707","2019-01-28 13:57:16","1","119","<python><data><json><wolfram-language>","1",""
"44708","2019-01-28 14:13:57","0","454","<machine-learning><deep-learning><tensorflow><data-augmentation><image-preprocessing>","1",""
"44711","2019-01-28 14:34:03","0","670","<multiclass-classification><smote>","1",""
"44715","2019-01-28 15:21:03","1","61","<pca>","1",""
"44716","2019-01-28 15:46:08","0","23","<deep-learning><keras><tensorflow>","1",""
"44717","2019-01-28 15:48:32","1","387","<tensorflow><azure-ml>","1",""
"44720","2019-01-28 16:08:24","1","56","<clustering><orange>","2",""
"45046","2019-02-04 16:32:21","6","1261","<machine-learning><scikit-learn><cross-validation><sampling><class-imbalance>","1",""
"45051","2019-02-04 20:45:20","0","268","<convnet><faster-rcnn>","0","1"
"45052","2019-02-04 21:25:49","1","20","<autoencoder><hyperparameter><generative-models><hyperparameter-tuning>","0",""
"45054","2019-02-04 22:45:45","0","916","<scikit-learn><outlier>","3",""
"45057","2019-02-05 01:21:37","0","34","<reinforcement-learning><policy-gradients><actor-critic>","2",""
"45061","2019-02-05 03:04:19","1","48","<machine-learning><time-series><clustering><similarity>","0",""
"45223","2019-02-07 16:10:54","1","44","<machine-learning><ensemble-modeling>","1",""
"45224","2019-02-07 18:00:45","1","139","<python><keras>","0",""
"45227","2019-02-07 18:31:53","0","12","<data>","0","1"
"45228","2019-02-07 18:47:25","1","883","<machine-learning><keras><time-series><lstm>","1","1"
"45230","2019-02-07 18:59:38","1","81","<machine-learning><classification><svm><fuzzy-logic>","0",""
"45231","2019-02-07 19:32:24","1","122","<time-series><clustering>","1",""
"45236","2019-02-07 23:23:03","3","236","<statistics><distribution><excel><churn>","3",""
"45237","2019-02-07 23:53:36","0","15","<colab>","0",""
"45238","2019-02-08 02:51:26","3","367","<naive-bayes-classifier><missing-data>","2",""
"45239","2019-02-08 04:13:36","1","1089","<python><regression>","1",""
"45240","2019-02-08 04:34:06","1","36","<neural-network><cnn><transfer-learning><neural>","1",""
"45243","2019-02-08 06:09:06","4","83","<machine-learning><neural-network><reinforcement-learning>","2","1"
"45246","2019-02-08 08:49:04","1","653","<neural-network><deep-learning><keras><tensorflow><convnet>","1",""
"45249","2019-02-08 09:35:03","0","22","<nlp><information-retrieval>","0",""
"45250","2019-02-08 09:36:05","0","164","<python><scikit-learn><feature-selection>","0","1"
"45251","2019-02-08 09:37:25","1","118","<classification><scikit-learn><data-mining><text-mining><word2vec>","1",""
"45254","2019-02-08 09:47:49","3","103","<data-mining><time-series><predictive-modeling><statistics><prediction>","1","1"
"45255","2019-02-08 10:14:25","3","505","<naive-bayes-classifier><outlier><bayesian>","2",""
"45256","2019-02-08 10:29:29","0","879","<machine-learning><regression><statistics>","1",""
"45258","2019-02-08 11:06:49","0","5","<machine-learning><bayesian-networks>","0",""
"45259","2019-02-08 11:12:14","0","35","<time-series><statistics><similarity>","0",""
"45262","2019-02-08 12:28:24","0","36","<machine-learning><deep-learning><convnet><reinforcement-learning><convolution>","0",""
"45263","2019-02-08 12:46:10","0","96","<machine-learning><feature-selection><feature-extraction><feature-engineering><machine-learning-model>","1",""
"45268","2019-02-08 13:55:08","0","27","<machine-learning><deep-learning><nlp><reference-request><language-model>","0",""
"45269","2019-02-08 14:28:07","0","43","<machine-learning><training>","0",""
"45274","2019-02-08 16:52:42","0","72","<python><keras>","0",""
"45276","2019-02-08 17:36:13","2","283","<machine-learning><python><deep-learning><tensorflow>","1",""
"45277","2019-02-08 18:30:04","1","64","<pandas>","0",""
"45279","2019-02-08 19:31:01","2","25","<classification><accuracy><metric>","2",""
"45281","2019-02-08 21:23:21","1","2250","<machine-learning><neural-network><deep-learning><keras>","2",""
"45282","2019-02-08 22:09:13","1","2000","<cnn>","1",""
"56444","2019-07-26 13:39:41","0","231","<machine-learning><softmax>","2",""
"56447","2019-07-26 14:01:14","1","184","<neural-network><regression><loss-function><class-imbalance>","1","1"
"56448","2019-07-26 14:22:08","1","27","<neural-network><backpropagation><cost-function>","1",""
"56643","2019-07-30 21:03:56","0","38","<scikit-learn><svm><grid-search><gridsearchcv>","0",""
"56644","2019-07-30 21:24:33","0","18","<clustering><text-mining>","0",""
"56646","2019-07-30 21:43:42","0","37","<neural-network><lstm>","1",""
"56647","2019-07-30 22:19:54","0","104","<machine-learning><keras><time-series><lstm><forecasting>","1",""
"56648","2019-07-30 22:59:03","0","25","<neural-network><keras><lstm><machine-learning-model><recurrent-neural-net>","0",""
"56650","2019-07-31 02:04:50","1","12","<predictive-modeling><linear-regression><categorical-data><counts>","0",""
"56651","2019-07-31 02:38:31","1","59","<nlp><bert>","1",""
"56652","2019-07-31 03:51:20","1","13","<neural-network><word2vec><natural-language-process>","0",""
"56655","2019-07-31 06:15:00","0","32","<python>","1",""
"56658","2019-07-31 06:53:22","1","44","<machine-learning><classification><random-forest><data-science-model>","1",""
"56661","2019-07-31 07:53:09","0","19","<python><lstm><pytorch>","0",""
"56663","2019-07-31 08:42:09","0","27","<deep-learning><hyperparameter-tuning><coursera>","1",""
"56664","2019-07-31 09:03:06","0","40","<cnn><feature-engineering><audio-recognition>","1","1"
"56667","2019-07-31 09:57:25","2","34","<neural-network><beginner>","1",""
"56668","2019-07-31 10:08:51","3","12847","<data-mining><pandas>","3",""
"56671","2019-07-31 10:20:28","0","11","<cnn><image-classification><numpy>","0",""
"56672","2019-07-31 10:34:19","2","90","<feature-selection><random-forest><xgboost>","2",""
"56674","2019-07-31 10:48:38","0","39","<python><beginner>","1",""
"56676","2019-07-31 11:06:16","26","8373","<machine-learning><deep-learning>","7","11"
"45463","2019-02-12 20:31:40","1","21","<word-embeddings>","0",""
"45464","2019-02-12 20:50:15","2","322","<python><scikit-learn><nlp><topic-model><lda>","1",""
"45465","2019-02-12 21:08:34","1","25","<regression><prediction><class-imbalance>","1",""
"45467","2019-02-12 21:49:08","1","37","<machine-learning><deep-learning>","0",""
"45469","2019-02-12 22:40:12","1","85","<machine-learning><deep-learning><keras><scikit-learn><multilabel-classification>","0","0"
"45470","2019-02-12 22:59:07","4","108","<machine-learning><random-forest><data-cleaning><machine-learning-model><data-wrangling>","3","2"
"45471","2019-02-12 23:26:14","5","107","<xgboost><probability><hyperparameter>","1","1"
"45472","2019-02-13 00:01:17","1","22","<ab-test>","0",""
"45475","2019-02-13 03:43:48","3","747","<nlp><attention-mechanism>","1",""
"45476","2019-02-13 04:25:53","2","39","<orange>","1",""
"45478","2019-02-13 05:45:59","1","42","<python><neural-network><keras><tensorflow><lstm>","0",""
"45480","2019-02-13 06:35:55","3","32","<neural-network><perceptron><mlp>","1",""
"45484","2019-02-13 07:33:35","1","38","<python><time-series><pandas>","0",""
"45486","2019-02-13 07:46:49","1","41","<classification><clustering>","2",""
"45488","2019-02-13 07:56:33","0","24","<keras><lstm><rnn><training>","0",""
"45491","2019-02-13 08:56:52","0","20","<recommender-system><k-nn><matrix-factorisation>","0",""
"45493","2019-02-13 09:41:56","1","43","<machine-learning><neural-network><clustering><graphs>","0",""
"45495","2019-02-13 10:27:41","1","13","<python><nlp><text-mining><topic-model>","0",""
"45496","2019-02-13 10:32:06","1","45","<machine-learning><neural-network><preprocessing><graphs>","0",""
"45497","2019-02-13 10:34:29","1","30","<machine-learning><decision-trees><accuracy>","0",""
"45498","2019-02-13 10:49:48","1","51","<tensorflow><training><epochs>","1",""
"45499","2019-02-13 11:42:49","1","27","<r>","1",""
"45500","2019-02-13 12:00:29","2","263","<neural-network><keras><tensorflow>","2",""
"45503","2019-02-13 12:14:24","4","718","<neural-network><regression><lstm><rnn><word-embeddings>","4","1"
"45505","2019-02-13 12:49:24","3","51","<neural-network><activation-function>","1",""
"45508","2019-02-13 13:53:55","2","23","<python><scikit-learn><dataset><scipy>","1",""
"45509","2019-02-13 14:22:49","1","40","<pca><dimensionality-reduction>","0",""
"45510","2019-02-13 14:33:40","2","89","<time-series><clustering><preprocessing><distance>","1","1"
"45511","2019-02-13 14:39:47","1","13","<machine-learning><dataset><statistics>","0",""
"45514","2019-02-13 14:57:20","1","96","<python><keras><tensorflow>","0",""
"45515","2019-02-13 15:18:07","1","17","<machine-learning><neural-network><deep-learning><predictive-modeling><lstm>","0",""
"45517","2019-02-13 15:34:10","3","15","<audio-recognition>","0","1"
"45519","2019-02-13 15:44:59","1","346","<python><text-mining><nltk><pip>","0",""
"45520","2019-02-13 15:49:08","2","23","<word-embeddings><multilabel-classification><natural-language-process><distance>","1",""
"45523","2019-02-13 16:38:57","1","56","<accuracy>","1",""
"45524","2019-02-13 17:18:16","1","30","<python><autoencoder><accuracy>","1",""
"45526","2019-02-13 18:02:00","5","46","<classification><nlp><cross-validation><evaluation>","2","2"
"45527","2019-02-13 18:05:45","1","90","<random-forest><data-cleaning><encoding><geospatial>","0",""
"45530","2019-02-13 18:33:05","1","120","<deep-learning>","0",""
"45532","2019-02-13 18:48:49","2","50","<classification>","0",""
"45533","2019-02-13 19:18:58","4","710","<feature-extraction><databases>","3",""
"45539","2019-02-13 20:30:32","1","40","<lstm><rnn>","0",""
"45540","2019-02-13 21:30:54","3","117","<machine-learning><python><scikit-learn><regression><supervised-learning>","1",""
"56354","2019-07-25 06:41:56","1","33","<computer-vision><unsupervised-learning><pytorch>","0",""
"56356","2019-07-25 08:30:19","0","53","<machine-learning><python><pandas><lstm>","1",""
"56358","2019-07-25 09:24:23","0","30","<r><statistics><glm>","1",""
"56360","2019-07-25 09:44:34","0","21","<python><clustering><graphs>","0",""
"56362","2019-07-25 09:47:23","0","49","<neural-network><lstm>","0",""
"56363","2019-07-25 09:56:09","0","8","<machine-learning>","0",""
"56364","2019-07-25 10:19:48","3","335","<python><pandas><csv>","1","1"
"45283","2019-02-08 22:44:54","0","14","<r><data><overfitting>","0","1"
"45284","2019-02-08 23:04:18","1","130","<machine-learning><feature-engineering>","1",""
"45285","2019-02-09 00:14:07","2","510","<neural-network><regression><logistic-regression><loss-function><probability>","1",""
"45286","2019-02-09 00:20:54","1","32","<neural-network><feature-engineering><gradient-descent>","1",""
"45287","2019-02-09 01:48:15","1","16","<machine-learning><classification><data-mining><decision-trees><scoring>","0","1"
"45288","2019-02-09 03:49:28","1","51","<machine-learning><rbm>","1",""
"45289","2019-02-09 04:53:37","1","113","<python>","2","1"
"45291","2019-02-09 07:23:35","0","60","<clustering>","1",""
"45292","2019-02-09 07:27:55","2","124","<machine-learning><neural-network><image-classification><image-recognition>","2","1"
"45293","2019-02-09 07:39:51","2","232","<python><time-series>","1",""
"45298","2019-02-09 09:44:36","1","20","<excel>","0",""
"45300","2019-02-09 09:50:29","1","209","<python><neural-network><rnn><feature-construction>","1",""
"45301","2019-02-09 11:31:03","1","22","<machine-learning><data-analysis><marketing>","0",""
"45302","2019-02-09 12:13:57","1","18","<machine-learning><svm>","0",""
"45308","2019-02-09 15:06:02","1","10","<data-mining><dataset><data-cleaning>","0",""
"45309","2019-02-09 15:11:13","1","94","<keras><version-control>","0",""
"45310","2019-02-09 16:56:47","1","8","<time-series><regression>","0",""
"45311","2019-02-09 17:09:14","1","4295","<python><dataset><pandas><numpy><dataframe>","2","1"
"45312","2019-02-09 17:22:44","1","267","<keras><multilabel-classification>","0",""
"45314","2019-02-09 18:24:50","4","33203","<python><pandas>","3","1"
"45318","2019-02-09 21:52:15","1","14","<neural-network><keras><tensorflow><cnn><pytorch>","1",""
"45319","2019-02-09 23:03:38","2","491","<machine-learning><python><scikit-learn><decision-trees><overfitting>","3","1"
"45320","2019-02-09 23:08:55","3","42","<neural-network><deep-learning><ai><weight-initialization>","1","1"
"45321","2019-02-09 23:15:06","1","23","<python><text-mining><map-reduce>","0",""
"45322","2019-02-09 23:36:42","3","78","<deep-learning><activation-function>","1","3"
"56728","2019-08-01 00:10:58","1","13","<deep-learning><cnn><nvidia>","0",""
"56729","2019-08-01 00:31:42","2","56","<machine-learning><classification><time-series>","2",""
"56730","2019-08-01 01:34:24","0","26","<machine-learning><dataset><data-cleaning><missing-data><data-analysis>","1",""
"56731","2019-08-01 04:34:08","1","39","<machine-learning><scikit-learn><machine-learning-model><accuracy><grid-search>","2",""
"56735","2019-08-01 06:05:12","1","53","<machine-learning><python><overfitting><kaggle>","1",""
"56737","2019-08-01 06:30:44","0","16","<dbscan>","0",""
"56740","2019-08-01 07:26:28","0","35","<neural-network><deep-learning><data-science-model>","1","0"
"56747","2019-08-01 09:49:50","0","210","<machine-learning><python><optimization>","2",""
"56751","2019-08-01 11:10:50","0","69","<python><pandas><ipython>","2","1"
"56752","2019-08-01 11:46:30","0","19","<regression><decision-trees>","1",""
"56756","2019-08-01 14:02:34","0","73","<machine-learning><deep-learning><keras><cnn>","1",""
"56758","2019-08-01 14:21:02","1","31","<pca><tsne>","1",""
"56760","2019-08-01 14:43:25","0","15","<classification><binary>","0",""
"56761","2019-08-01 15:11:04","1","43","<nlp><word-embeddings><topic-model><javascript>","1",""
"45558","2019-02-14 07:06:16","0","171","<machine-learning><deep-learning><keras><time-series><lstm>","0",""
"45559","2019-02-14 08:04:39","-1","22","<python><clustering><unsupervised-learning>","1",""
"45562","2019-02-14 09:11:39","1","51","<machine-learning><predictive-modeling><regression><cross-validation><accuracy>","0",""
"45563","2019-02-14 09:19:53","1","196","<machine-learning><xgboost>","2",""
"45566","2019-02-14 09:49:51","0","33","<gradient-descent>","2",""
"45568","2019-02-14 10:17:44","0","28","<python><tensorflow><word-embeddings>","1",""
"45569","2019-02-14 10:17:48","1","28","<lstm><multilabel-classification>","0",""
"45570","2019-02-14 11:36:39","1","36","<probability><distribution>","0",""
"45575","2019-02-14 12:14:02","6","222","<machine-learning><data-leakage>","1",""
"45578","2019-02-14 14:33:54","2","1577","<variance><bias>","3","2"
"44930","2019-02-01 17:12:31","1","17","<text-generation><state-of-the-art>","0",""
"44932","2019-02-01 18:29:48","0","36","<deep-learning>","0",""
"56296","2019-07-24 09:25:06","0","35","<anomaly-detection>","1",""
"56299","2019-07-24 10:16:54","2","115","<machine-learning><cross-validation><prediction>","1","3"
"56300","2019-07-24 10:20:17","0","25","<loss-function><ranking>","0","1"
"45375","2019-02-11 11:39:35","1","41","<classification><nlp><text>","0",""
"45376","2019-02-11 11:44:54","2","348","<python><classification><preprocessing><text><named-entity-recognition>","2","0"
"45377","2019-02-11 11:53:27","1","42","<machine-learning><tensorflow><logistic-regression>","1",""
"45379","2019-02-11 12:11:23","1","69","<machine-learning><neural-network>","1",""
"45380","2019-02-11 12:36:31","0","23","<classification><optimization><probability>","0",""
"45383","2019-02-11 14:12:26","2","1666","<python><pandas><data-cleaning><missing-data>","1",""
"45387","2019-02-11 15:03:15","3","40","<data-mining><dataset><data-cleaning>","0",""
"45389","2019-02-11 15:11:10","1","20","<machine-learning><decision-trees><tfidf>","1",""
"45393","2019-02-11 16:02:18","1","376","<keras><tensorflow><cnn>","1",""
"45394","2019-02-11 16:02:49","2","1397","<r><time-series><lstm><forecasting>","1",""
"45400","2019-02-11 17:31:48","1","81","<machine-learning><python><scikit-learn>","1",""
"45404","2019-02-11 17:58:48","5","74","<cnn><multiclass-classification><alex-net>","2",""
"45405","2019-02-11 18:30:26","2","34","<logistic-regression>","1",""
"45407","2019-02-11 20:02:17","0","35","<prediction><natural-language-process><amazon-ml>","0",""
"45408","2019-02-11 20:35:28","2","112","<gradient-descent><learning-rate>","2",""
"45409","2019-02-11 20:37:03","1","112","<python><tensorflow><gradient-descent>","0",""
"45410","2019-02-11 21:04:17","4","45","<pytorch><summarunner-architecture>","1","1"
"45416","2019-02-12 00:36:29","2","469","<python><keras><tensorflow><cnn><probability>","1",""
"45418","2019-02-12 00:50:39","2","35","<neural-network>","0",""
"45422","2019-02-12 04:40:51","0","146","<python><ibm-watson><chatbot>","0",""
"45426","2019-02-12 04:51:49","1","376","<keras>","1",""
"45427","2019-02-12 05:08:24","2","55","<r><predictive-modeling><machine-learning-model><simulation>","0",""
"45428","2019-02-12 05:43:18","1","18","<cnn>","0",""
"45430","2019-02-12 06:20:30","3","86","<machine-learning><learning>","0",""
"45431","2019-02-12 07:26:56","2","81","<machine-learning>","1",""
"45433","2019-02-12 08:56:23","2","348","<python><keras><tensorflow><lstm>","0","1"
"45434","2019-02-12 09:09:01","8","123","<neural-network><feature-selection><mlp>","4",""
"45436","2019-02-12 09:41:33","1","26","<predictive-modeling><recommender-system>","0",""
"45437","2019-02-12 09:47:13","3","171","<python><classification><keras>","2",""
"45438","2019-02-12 09:59:33","2","2078","<python><neural-network>","1",""
"45441","2019-02-12 11:35:08","1","344","<python><anaconda>","0",""
"45442","2019-02-12 11:35:56","2","190","<python><neural-network><deep-learning><keras>","0",""
"45443","2019-02-12 11:36:15","1","202","<python><scikit-learn><random-forest>","1",""
"45444","2019-02-12 12:00:15","1","59","<data-mining><time-series><lstm><rnn><data-cleaning>","0",""
"45449","2019-02-12 13:55:49","3","234","<python><dataset><pandas>","1",""
"45451","2019-02-12 14:33:37","3","597","<keras>","2",""
"45452","2019-02-12 15:09:52","3","30","<data-mining><dataset><statistics><sampling>","1",""
"45457","2019-02-12 15:43:35","2","31","<statistics><feature-engineering>","0",""
"45458","2019-02-12 16:01:24","2","26","<clustering><similarity><variance><dbscan>","0",""
"45459","2019-02-12 17:15:05","10","576","<scikit-learn><graphs>","1","2"
"45461","2019-02-12 19:08:38","2","491","<python><data><decision-trees><prediction><h2o>","1","1"
"45462","2019-02-12 20:24:55","0","67","<classification><keras><lstm>","0",""
"56770","2019-08-01 17:22:58","0","22","<deep-learning><keras>","0",""
"56771","2019-08-01 17:36:44","0","31","<machine-learning><data-mining>","2",""
"56772","2019-08-01 17:55:51","0","200","<deep-learning><keras><pytorch>","1",""
"56773","2019-08-01 17:57:57","0","33","<r><correlation>","0",""
"56774","2019-08-01 18:10:57","0","45","<python><regression>","4",""
"56777","2019-08-01 18:33:49","0","67","<machine-learning><computer-vision>","3",""
"56782","2019-08-01 19:43:16","1","166","<machine-learning><cnn><convolution><backpropagation><javascript>","1",""
"56783","2019-08-01 19:43:50","1","50","<dataset><data-analysis>","2",""
"56785","2019-08-01 19:50:09","0","33","<data-mining>","1",""
"56786","2019-08-01 19:52:52","0","12","<normalization>","0",""
"56793","2019-08-01 20:14:37","0","28","<multiclass-classification><data-science-model>","1",""
"56794","2019-08-01 20:15:35","0","31","<scikit-learn>","0",""
"56795","2019-08-01 20:16:17","0","113","<tensorflow><gpu><distribution><parallel>","1",""
"56797","2019-08-01 21:03:35","0","19","<lstm>","0",""
"56799","2019-08-01 21:08:46","1","81","<machine-learning>","0",""
"56801","2019-08-01 21:48:54","0","28","<distribution><weighted-data><randomized-algorithms>","1",""
"56802","2019-08-01 22:07:12","3","125","<reinforcement-learning>","1","1"
"56804","2019-08-01 22:33:29","0","56","<machine-learning><python><scikit-learn><cross-validation>","1",""
"56806","2019-08-02 00:44:17","0","152","<machine-learning><time-series><feature-extraction>","1","1"
"56808","2019-08-02 01:45:13","3","131","<neural-network>","3",""
"56812","2019-08-02 03:01:40","2","313","<tensorflow>","1",""
"56825","2019-08-02 07:35:53","0","28","<machine-learning><neural-network><cnn><correlation>","0","0"
"56826","2019-08-02 07:40:53","1","154","<python><clustering><pca><matplotlib>","1",""
"56830","2019-08-02 10:12:00","0","110","<neural-network><deep-learning><keras><cnn><activation-function>","1",""
"56831","2019-08-02 10:31:40","1","223","<python><scikit-learn><pandas><encoding>","1",""
"56832","2019-08-02 10:38:21","0","10","<data>","0",""
"56833","2019-08-02 11:35:25","3","134","<machine-learning><python><xgboost>","2",""
"56834","2019-08-02 11:39:08","0","140","<python><deep-learning><keras><cnn><image-classification>","1",""
"56837","2019-08-02 11:54:10","0","24","<deep-learning><cnn><feature-extraction><similarity><autoencoder>","0",""
"56840","2019-08-02 13:37:51","1","68","<training><computer-vision><gan>","2",""
"56843","2019-08-02 14:31:57","0","31","<clustering>","2",""
"56844","2019-08-02 14:39:40","0","21","<nlp><dataset><language-model><ngrams>","1",""
"56847","2019-08-02 15:07:49","1","43","<cross-validation>","1",""
"56848","2019-08-02 16:23:47","0","53","<orange>","0",""
"56851","2019-08-02 17:04:34","0","9","<neural-network><time-series><lstm><rnn>","0",""
"45663","2019-02-15 20:49:28","5","848","<machine-learning><python><scikit-learn><pandas>","1","2"
"45666","2019-02-15 22:04:27","1","49","<graphs>","0",""
"45667","2019-02-15 22:11:00","1","99","<python><statistics><numpy><distribution><scipy>","0",""
"45668","2019-02-15 23:03:42","3","283","<machine-learning><scikit-learn><ridge-regression>","2",""
"45671","2019-02-16 03:59:13","2","296","<machine-learning><neural-network>","0",""
"45672","2019-02-16 05:36:46","2","405","<time-series><predictive-modeling><random-forest><training><transfer-learning>","1","1"
"45675","2019-02-16 07:35:56","2","53","<machine-learning><preprocessing>","2",""
"45678","2019-02-16 09:24:19","3","220","<neural-network><deep-learning><convolution><math><image-preprocessing>","1",""
"45679","2019-02-16 09:48:06","2","265","<python><jupyter>","1",""
"45680","2019-02-16 10:16:08","2","168","<cnn>","1",""
"45681","2019-02-16 10:16:55","1","52","<machine-learning><naive-bayes-classifier>","2",""
"45684","2019-02-16 12:12:19","3","1919","<machine-learning><python><neural-network><deep-learning><time-series>","1",""
"45685","2019-02-16 13:26:07","1","55","<python><jupyter><fastai>","1",""
"45686","2019-02-16 13:40:39","1","194","<feature-selection>","1",""
"45688","2019-02-16 14:28:10","1","27","<linear-regression>","1",""
"45689","2019-02-16 14:29:12","1","20","<machine-learning><deep-learning>","0",""
"45690","2019-02-16 14:37:25","3","52","<machine-learning><pca><dimensionality-reduction>","1",""
"45691","2019-02-16 14:55:10","1","49","<machine-learning><math><linear-algebra>","1",""
"45698","2019-02-16 17:38:01","2","950","<keras><scikit-learn><cross-validation>","1","2"
"45702","2019-02-16 20:05:03","3","51","<neural-network><optimization>","1","0"
"45703","2019-02-16 21:43:32","8","193","<linear-regression><terminology>","3","2"
"45711","2019-02-17 04:41:27","4","715","<python><distribution><matplotlib><image>","1","2"
"45713","2019-02-17 09:06:47","2","53","<regression><linear-regression><data-science-model>","1",""
"45714","2019-02-17 10:13:20","1","22","<machine-learning><statistics>","0",""
"45716","2019-02-17 12:52:43","2","255","<machine-learning><python><classification>","1",""
"45718","2019-02-17 13:07:47","2","337","<machine-learning><python><reinforcement-learning><backpropagation><pytorch>","0",""
"45719","2019-02-17 13:24:50","1","34","<autoencoder>","0",""
"45720","2019-02-17 16:45:39","1","223","<python><nlp>","0",""
"45721","2019-02-17 17:09:15","1","17","<regression><lstm><cnn>","0",""
"45725","2019-02-17 18:28:15","4","38","<machine-learning><python><normalization>","1",""
"45726","2019-02-17 19:06:30","1","6577","<python><anaconda>","1",""
"45728","2019-02-17 19:20:14","3","134","<machine-learning><python><scikit-learn><svm>","1",""
"45729","2019-02-17 20:11:09","0","599","<python><regression><pandas><correlation>","1",""
"45731","2019-02-17 21:01:31","2","408","<image-classification><transfer-learning>","1",""
"45735","2019-02-18 00:30:49","2","96","<probability><probabilistic-programming>","1",""
"45542","2019-02-13 22:25:43","1","11","<svm><semi-supervised-learning><implementation>","0",""
"45543","2019-02-13 23:51:11","1","16","<machine-learning><object-detection>","0","2"
"45544","2019-02-14 00:15:23","1","246","<time-series><clustering><data><anomaly-detection><data-science-model>","1",""
"45545","2019-02-14 00:21:07","2","255","<machine-learning><time-series><predictive-modeling><lstm><matlab>","0",""
"45546","2019-02-14 00:49:54","1","39","<machine-learning><notation><pac-learning>","0",""
"45549","2019-02-14 01:46:44","0","15","<time-series>","0",""
"45550","2019-02-14 02:26:19","1","1969","<pandas><kaggle>","1",""
"45552","2019-02-14 03:04:21","1","314","<scikit-learn><svm>","1",""
"45553","2019-02-14 03:24:29","1","300","<xgboost><ranking><ndcg>","0",""
"45554","2019-02-14 05:17:07","2","148","<machine-learning><algorithms>","1",""
"45556","2019-02-14 05:47:46","1","30","<machine-learning><gradient-descent>","1",""
"56857","2019-08-02 17:53:02","2","85","<python><time-series><scipy><difference>","1",""
"56858","2019-08-02 18:04:16","0","21","<tensorflow><cnn><image-recognition><yolo>","0",""
"56860","2019-08-02 18:54:35","0","235","<training><gan><mnist>","1",""