-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathall_ml_ideas.csv
We can make this file beautiful and searchable if this error is corrected: Any value after quoted field isn't allowed in line 164.
2592 lines (2592 loc) · 132 KB
/
all_ml_ideas.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
Predicting Freeway Congestion
Supervised Learning of Query Term Relevant Product Recommendations
Robotic Arm Control
Network Intrusion Detection
Multi-Website Name Coreference Resolution
Probabilistic Independent Component Analysis for fMRI Data and Validating the Components using Learning Methods
Machine learning algorithms for musical instrument recognition
Classification of Network Flows
Vision and Learning for Quadruped Robot
Selection of Relevant Sites in Single Nucleotide Polymorphism
Grammar Acquisition in Natural Languages
Neural Network Approach to Option Pricing
Unsupervised Learning for DNA Transcription Factors
A System for Segmenting Video of Juggling
An EigenFace based approach to classify cell-signaling profiles
Motor Skill Learning
Reinforced Genre Classification and Vocal Segmentation of Popular Music
Feature Selection based on Maximizing the Separability in Gauss Mixture Models
A Study on Aging Patterns of NBA Players
Chunking based learning of Associative Markov Networks for Segmentation of 3D Scan Data
Document Retrieval using Syntactic Analysis of Queries
Nonlinear Dimension Reduction Technique for Branching Structure
Applying Sentiment Classification Techniques to the Personalization Problem
Stock Trading Learner
Dance, Dance Classification
Probabilistic Models for Identifying Genetic Basis of Gene Expression Variation
This Sentence is Not a Question, or Is It?
Learning Capital Structure Arbitrage
Using unlabelled data for Adaptation of Named-Entity Recognition Systems
Automated Failure Detection in Web Applications via Changes in User Behavior
Using Unsupervised Learning to Build Image Feature Index Databases
Semantic Context Classification
Control parameter optimization for autonomous driving on rough terrain
Machine Learning of Arm Dynamics for Collision Detection
Probabilistic Group Scheduling For Chaotic People
Data driven approach to generate dirt textures
Simulating Autonomous Vacuum Cleaner using Particle Filters and PCA
Separating Format and Content in Hypertext Documents
Shape completion of nonrigid articulated objects
K-Means Heuristics and Other Approaches to Clustering
Learning to Focus Reasoning in a Reactive Agent
Quadrotor aircraft autonomous flight above ground effect using reinforcement learning control
Spam Classification
Clustering Methods for Reference Resolution
Using Statistical Shape with Intensity and Texture Information for Abdominal Aortic Aneurysm Segmentation
Snake robot motion planning for climbing obstacles
An Empirical Study of Public Education Spending and Student Performance
Sheet Music
Stock Market Prediction
Most Probable Ground Edge Explanation in an Image
Learning an Event Model for Financial News and Stock Prices
Bootstrapping
Localization using Unsynchronized Ultrasonic Sensor Network with Unknown Node Locations
Classification of remote sensing images with SVM
Image Segmentation for Desert Road Following
De-Obfuscation for Spam Emails
Learning to Manipulate Objects from Simulated Images
Music Alignment Discovery
User authentication based on behavioral mouse dynamics biometrics
Reordering Attachment Candidates in the CSLI Dialogue Systems
Decoding Cognitive States from fMRI Timeseries
Semantic Extensions to Syntactic Analysis of Queries
Learning To Pick Up a Novel Object
Controlling Devices by Using Robot Arm
Metrics for a Mastoidectomy Simulator
Using Embedding Algorithms to Find a Low Dimensional Representation of Neural Activity During Motor Planning
Multicore Learning Algorithm
Gaussian PRM Samplers for Dynamic Configuration Spaces
NER Adapatation
Beat CAL: Machine Learning in Football Play-calling
Door Handle Detection for Stair
Machine Learning for Controlled Slides of a RC Car
Sentence Unit Detection Without an Audio Signal
Identification of Heterozygous Mutations
GroupTime Probabilistic Scheduling
Learning to Classify Terrain
How's Your Golf Game?
Chest Pain in the Emergency Department: Use of Asymmetric Penalties in Sequential Minimal Optimization with Feature Selection to Improve Clinical Decision Making Accuracy
Distributed Random Forests
Explicit Image Filter
MLB Prediction and Analysis
Tracking a Ground Vehicle from an Autonomous Helicopter
Clustering News Feeds with Flock
Simultaneous learning of a robot's gait and its body dimensions and compliances
Smart Text Input System
A Discriminative Learning Model for RNA Secondary Structure Prediction
Removing Ionospheric Corruption from Low Frequency Radio Arrays
Human Vision based Object Recognition
Prostate Detection Using PCA
Aircraft Collision Avoidance.
Machine Learning for Patent Classification
Factor Analysis Using pPCA
Re-Learning to Walk: Learning the Optimal Force Feedback Controller for aQuadruped Robot
Handwritten Digit Recognition: Investigation and Improvement of theInferred Motor Program Algorithm
Machine Learning for Auto-Dynamic Difficulty in a 2-D Space Shooter
Query Optimization
Segmentation of Music Into Notes Using Mixture of Gaussians
Statistical clustering and Mineral Spectral Unmixing in Aviris HyperspectralImage of Cuprite, NV
Music Tempo Classification
L1 Regularized Logistic Regression
Localization in Ad-Hoc Sensor Network
Predicting political trends from news text
Applying Synthetic Images to Learning Grasping Orientation from Single Monocular Images
Distributed Compression of Stereoscopic Images With Unsupervised Learning of Disparity
Assessing Opinion of Product Reviews
Query By Humming
Splice Site Recognition Using Multiple Sequence Alignment
Combining Monocular and Stereo Depth Cues
Applying Machine Learning to Astronaut Robotic Assistants
Learning to Automatically Discover Meronyms
A Novel Approach to User Authentication Through Machine Learning of Keyboard Acoustic Emanations
Learning Techniques for Computer Aided Diagnosis in Chest Radiography
Application of Clustering for Unsupervised Language Learning
Predicting Win/Loss Probabilities and Score Distributions in Competitive Games
Hierarchical Learning from Natural Images
Named Entity Recognition
Learning Depth in Lightfield Images
Dual Tree KDE
Clustering and Segmentation of Probabilistic Interaction Networks
Protein Structure Classification
Automated Extraction of Even Details from Text Snippets
A Hierarchical Application of ICA-based Feature Extraction to Image Classification
Football Ranking System
Machine Learning of Expressive Microtiming in Brazilian and Reggae Drumming
Learning Traffic Light Control Policies
Fraud Detection for Online Retail Using Random Forests
Failure Diagnosis for Configuration Problem in Storage System
Incipient Hydraulic Pump Fault Detection using One-Class Support Vector Machines
Learning to Rank Wine
Conversation Closings: Creating a Boredom Detector
Maximizing Pinball Scores Through MDP Algorithms
Entity Resolution of Structured Soccer Data
Learning Scoring Functions for Question Answering
Robust Logistic Regression
Snake robot locomotion
Learning Traffic Light Control Policies
Prediction of Content Quality and Perspective
Machine Learning Algorithms for the Design of Novel Photonic Crystals
Automatic Calendar Management
Learning Maps for 3-D Combat Games
The Brainwaves of Imaginary Events
Using a Kalman Filter with an Information-Form Data Association Filter
Learning Snake Gaits
Learning Life and Death in Go
Exploring machine learning techniques for recommending advertising keywords
Predicting Outcomes of Baseball At-Bats
Gene Recognition
Learning how to Classify Ventricular Tachicardia in ICDs
Diversity Classification for Futures Contracts
Kernels for Classification Based on Associations
Face Detection with Random Forests
Finding Gene Pairs With Disjoint Expression In Cancer Cells
Driving an RC car using computer vision
Using Atomic Actions to Control Snake Robot Locomotion
Minimizing System Correlation in SVM Training
Dimensionality Reduction using Noisy Distance Data
Temporal Ordering of Event Descriptions
Training Log Linear Models Using Smoothed Hamming Loss
Just Keep Flying: Machine Learning for UAV Gust Soaring
Learning Planar Geometric Scene Context Using Stereo Vision
KNN for Netflix
Object Identification in Images
Intelligent Rankings
"Combination of Experts" Approach to Image Boundary Detection
Auto-Tagging the Facebook
Segmenting Descending Aorta Using Machine Learning
Structure-Informed RNA Sequence Alignment using Discriminative Models
Musical Instrument Detection
Breaking it Down: The World as Legos
Learning 3-D Scene Structure from a Single Still Image
Language Classification in Multilingual Documents
Rotation-Invariant Sparse Coding
Knowledge Based Reconstruction of the Transcriptional Regulatory Network in Yeast
4-D Interest Maps for Direct Fovea Attention-Based Systems
System Identification of DragonFly UAV via Bayesian Estimation
Dimensionality-Reduction of Neural Data
Image processing of wildtype and mutant bacterial cells
Dimension Reduction of Image Manifolds
Learning Techniques to aid Pose Estimation via SIFT
Classifying fMRI Data
Investigating Copy Number Variation in Cancer
Computational Beauty Analysis
Programming-By-Example Gesture Recognition
Teaching STAIR to Identify and Manipulate Tools
Netflix Prize Project
Pose Estimation From Occluded Images
Predicting how Netflix users will rate movies using logistic regression and probabilistic modelling
Hierarchical Sparse Coding
Mining Feelings
Market Making With Machine Learning
Beat Induction
Predicting Visual Saliency and Saccade Probability
Extracting Meeting Topics Using Speech And Documents
Detecting Corporate Fraud: An Application of Machine Learning
Matrix Factorization for Collaborative Prediction
Face Orientation Estimation in Smart Camera Networks
Super-resolution
Optical Illusion
Object Recognition from 3D Point Clouds
Use of KNN and K-Means for the Netflix Prize
Factor-analysis with partially observed training data
A Machine Learning Approach to Opponent Modeling in General Game Playing
Sparse Coding Invariance
Automatically clustering WordNet senses
SQUINT: Identifying Relevant Sections of a Web page for a Web Search Query
Detecting Digital Forgeries Using SVMs and Lighting Inconsistencies
Waveform-based Musical Genre Classification
Machine Learning Based Botnet Detection
Machine Learning applied to Building Performance Metrics
Automatic Identification of Red-Eye in Photos
Machine Learning with a Lego Mindstorms Robot
Applying sparse coding to speech
Determining the Information Value Of Tags
Computational Identification and Prediction of Tissue-Specific Alternative Splicing
Predicting connection quality in peer-to-peer real-time video streaming systems
Predicting 3D Arm Trajectories
Are You Hot Or Not?
Explaining Preference Learning
Rotten Tomatoes: Sentiment Classification in Movie Reviews
NFL Project (Predicting the outcome of NFL games)
Learning to Test
Predicting Movie Preferences
Learning Bayesian Networks in Presence of Missing Data
Understanding Civil War and Economic Growth
Stock Trading with Recurrent Reinforcement Learning (RRL)
Emotion Detection from Speech
Data Mining from Digital Image
Audio Segmentation
Learning to Select a Good Grasp
Localizing a Guidewire in Three Dimensions during Endovascular Interventions Using Single-view Fluoroscopy and a Stereo Roadmap: Method and Feasibility Study
Improving Estimation of the Nearest Neighbor in Mobile Wireless Sensor Networks
Ascertaining the relevance model of a web search-engine
Solving the Damage Localization Problem in Structural Health Monitoring Using Techniques in Pattern Classification
Learning V2 basis for sparse RBM
Object Recognition using Large Datasets
HMM Analysis and Synthesis of Acoustic Drum Signals
Multiple Object Detection with Optimized Spatial Weighting
How to Win at the Track
Learning to recognize people
Autonomous Flight / Kalman Filtering for Full-Size Helicopter
Face Detection Using ICA
Authorship of Hebrews
Exploring Image Clustering Algorithm for Wall and Floor Identification
A Gait Library for Rapid Quadruped Locomotion
Tls, using Learning to Speculate
Semantic Website Clustering
Robust Building Identification for Mobile Augmented Reality
Structural Edge Learning For 3-D Reconstruction From a Single Still Image
Facebook Friend Suggestion
Who's in Charge Here?: Using Clustering Algorithms to Infer Association of Putative Regulatory Elements and Genes
FIDA: Face Recognition using Descriptive Input Semantics
Motion Planning for the ATHLETE Rover with Reinforcement Learning
Image Processing for Bubble Detection in Microfluidics
Neighborhood based methods for Collaborative Filtering
Computationally Efficient Evolutionary Algorithms: Enhanced by On-Line Machine Learning
Robot Motion for Obstacle Negotiation
Automatic Detection of Character Encoding and Language
Seeing Invisible Properties of Subsurface Oil and Gas Reservoir through Extensive Uses of Machine Learning Algorithms
Corporate Valuation Using Machine Learning
Maximum Divergence in Speech Recognition
A travel time prediction with machine learning algorithms
3D reconstruction of brain tissue
Semi-Supervised Learning with Sparse Distributed Representations
Robot Grasping
Cave Exploring With 3D Pointclouds
Automated photo tagging in Facebook
Semantic Taxonomy Induction from Semi-Structured Text
Enabling a Robot to Open Doors
Extending WordNet using Generalized Automated Relationship Induction
Inferring 3D Scene Structure from a Single Still Image
Predicting New Search-Query Cluster Volume
Volatility Forecasting using SVM
Using Machine Learning to Improve in Silico Enhancer Prediction Specificity
Identification of copy number variation in cancer genomes
Compact Representation of Protein Surface Patches
Using WordNet and Clustering for Semantic Role Labeling
Morphological Galaxy Classification Using Machine Learning
Sparse Coding of Point Cloud Data
Adaptive optimization of hyperparameters in L2-regularised logistic regression
Object Tracking in a Video Sequence
System Identification of Cessna 182 Model UAV
Multiple hyperparameter learning in L1 regularized models using a Bayesian approach
Automatic Construction of Cell Genealogical Histories
Customer Review Feature Extraction
Machine Learning Applied to Texas Hold 'Em Poker
3D reconstruction of brain tissue
Multi-Class Object Recognition Using Shared SIFT Features
Topic Correlations over Time
Combinatorail Laplacian and Rank Aggregation
Classifying Press Releases and Companies Relationships Based on Stock Performance
Online feedback for human learning
A Non-Parametric EM Algorithm for Hybrid Sampling in Probabilistic Roadmap (PRM) PLanning
Machine Learning Applied to 3-D Reservoir Simulation
Self-Calibration of a Pair of Webcams for Stereo Vision
Control of an autonomous helicopter in autorotation
Automatically Detecting Banner Ads in Web Pages
Patent Cases Docket Classification
Forecasting Purchasing Behavior using fMRI Data
Sound Design Learning for Frequency Modulation Synthesis Parameters
State Indexed Policy Search by Dynamic Programming
Getting the Position and the Pose Using Stereo Vision
Fault-Tolerant Architecture for Machine Learning Applications
A Machine Learning Approach to Developing Rigid-body Dynamics Simulators for Quadruped Trot Gaits
A Model of Perceptual Decision Making in Lateral Intraparietal Area
A Predictive Model of Gene Expression in E. Coli
Accurate and Cheap Robot Range Finder
Adaptive AI for Fighting Games
Location Based Adaptive Routing Protocol(LBAR) using Reinforcement Learning
Airline Departure Delay Prediction
Audio Query by Gesture
Automated Microsurgery for High-Throughput Fly Brain Imaging
Automatic Calibration of 2D and 3D Point Correspondences
Automatic Index Generation for Religious Texts
Automatic robotic arm calibration using parameter optimization techniques
Autonomous Interpretation of Elevator Panels for Robot Navigation
Bagging for One-Class Learning
GoodReads Recommendations
Channel Selection for Cognitive Radio Terminals
Character Set Encoding Detection using a Support Vector Machine
Classification Of Heirarchical Activation In Visual Cortex
Classifying Musical Scores By Composer
Computational Gambling
Cracking CAPTCHAs
Creating Models of Performers of Chopin Mazurkas
Classifying Handshapes on a Multitouch Device
DDR
Restoring Focus in Photographs
Detection and Extraction of Events From Emails
Detection of Atrial Fibrillation in ECGs
Predicting 3D Geometric Shapes of Objects From a Single Image
OCR for Mobile Phones
Exploiting a database to predict the in-flight stability of the F-16
Face Detection using LBP features
Content-Based Features in the Composer Identification Problem
Finding Common Opinions in User-Generated Reviews
Flickr Tag Recommendation
Robust Realignment of fMRI Time Series Data
Uncertainties estimation and compensation on a robot manipulator: Application on Barrett robotic arm
Genotype Prediction with SVMs
Grasping Obects Using High-Density, High-Accuracy Point Cloud Data
Grouping Photos by Face
Portfolio Replication with Sparse Regression
Holey Ship! Bilging by reinforcement learning
Identifying Epilepsy Using MRIs of the Hippocampus
Identifying protein-protein interactions
Image Segmentation
Improving Search Engine for a Digital Library
Incentives and Machine Learning
Internet Article Comment Classifier
Learning To Predict A Student's Performance On Problem sets
Learning and Predicting Flow Duration and Rate
Ray density Learning
Machine Learning Classification Of Malicious Network Traffic
Machine Learning Methods Application in Moving Average Trading Rules
Machine Learning for Gene Behavior Classification
Machine Learning for the Frequency Control of MEMS Resonators
Modern Intelligent Tutoring System
Movie Recommendations Using Social Networks
Music Search Engine
Musical Hit Detection
Netflix Movie Rating Prediction using Enriched Movie Metadata
Object Recognition using Template Matching
Optical character recognition with an unsupervised hidden layer
Predicting Candidate Responses in Presidential Debates
Predicting Mode of Transport from iPhone Accelerometer Data
Predicting Protein Interactions with Motifs
Learning Business Article Sentiment Based on Stock Market Performance
Predicting Tastes from Friend Relationships
Prediction from Blog Data
Prediction of gene interaction measurements
Noise vs Feature: Probabilistic Denoising of Range Data
Absolute Range Detection System for STAIR
Protein Secondary Structure Prediction based on Neural Network Models and Support Vector Machines
Query Segmentation using Supervised Learning
Recognition of Door Handles to Enable a Robot to Open Doors
Recognizing People in Video Sequences
Recommendation System based on Collaborative Filtering
Reconstruction of Ca2+ dynamics from low frame rate Ca2+ imaging data
Recovering the Multitrack: Semi-Supervised Separation of Polyphonic Recorded Music
Robot Grasping with Optical Proximity Sensors
Scalable Object Recognition Using Support Vector Machines
Scientific Authorship, Collaboration, Interdisciplinarity, and Productivity
Object Removal
Self Lane Assignment Using Smart Mobile Camera For Intelligent GPS Navigation and Traffic Interpretation
Semantic Classification of Emails
Sentiment Classification Judging Attractiveness of People through Textual Descriptions from Online Reviewers
Single Vehicle Job Scheduling Problem Using Learning Algorithm
Synthesizing Object-background Data for Large 3-D Datasets
Teleo-Reactive Planner On ROS
Textured Object Detection in Stereo Images using Visual Features
The Application of SVM to Algorithmic Trading
The Netflix Challenge
Time Series Prediction of US Swap Rates
Topological Classification of Data Sets without an Explicit Metric
Train your TV
Chinese (Restaurant) Menu Translation
Trying Out Machine Learning Tricks In A Tactical Game
Unsupervised Learning of Hierarchical Dependency Parsing
Using GPUs to Speedup Sparse Coding Algorithms Applied to Self-taught Learning Problems
Vertex Classification for Segmented Images
Video Montage
Video Montage-Video Abstraction
Vision-Controlled Autonomous Indoor Helicopter
Weblog Analysis and Classification using Machine Learning
A Framework for Stock Prediction
A Generalized Method to Solve Text-Based CAPTCHAs
A Machine Learning Approach to Stroke Risk Prediction
A Novel Authentication Mechanism Using Mobile Virtual Signatures
A SVM approach to stock trading
Adaptive Execution with Online Price Impact Learning
AI Mahjong
Algorithm Trading using Q-Learning and Recurrent Reinforcement Learning
An Adaptive Agent for No-Limit Texas Hold 'em Poker
An Empirical Study of Machine Learning Techniques used for Enhancer Classification
Applying Machine Learning in Game AI Design
Automatic Beat Alignment of Rap Lyrics
Automatic Fatigue Detection System
Automatic Graph Classification
Automatic identification of glomerulus in the antenna lobe of Drosophila
Automatic Ranking of Images on the Web
Automatic Recognition of Satire in Web Content
Automatic Segmentation of Clothing for the Identification of Fashion Trends Using K-Means Clustering
Automatic Segmentation using Learning Algorithms for High Resolution MRI of the Larynx
Automatic Transcription of Solo Piano Music
Bot Detection via Mouse Mapping
Bubble Clustering: Set Covering via Union of Ellipses
Chinese Sentence Tokenization Using a Word Classifier
Classification of Amazon Reviews
Classification of Genes Using Codon Usage
Classification of Hyperspectral Breast Images for Cancer Detection
Classification of Synapses Using Spatial Protein Data
Classifying Relationships Between Nouns
Click Prediction and Preference Ranking of RSS Feeds
Clustering Blogs Based on Stylistic Characteristics
Collaborative Filtering on Sparse Rating Data for Yelp.com
Controller Design For a Wall Landing Airplane
Convolutional Restricted Boltzmann Machine Features for TD Learning in Go
Deep Networks on the GPU
Detecting Chronic Pain with Structural MRI
Detection of faults in Antenna Array using SVM
Discovering Visual Hierarchy through Unsupervised Learning
Document Retrieval by Similarity
Does This Shirt Go With This Tie?
EigenHot or EigenNot
Enabling intelligent traffic flow management in Wireless LAN's using Markov Decision Process tools
Estimating Human Pose in Images
Estimating Missing Temporal Attributes In Genealogical Data
Face tracking in video
Favorites-Based Search Result Ordering
Feature Selection Methods for SVM Classification of Microarray Data
Finding a Basis for the Neural State
Finding Optimal Hardware Configurations For C Code
Finding the Augmented Neural Pathways to Math Processing
Force Feedback Learning Applied to Robot Object Handling
Formation Flight
Functional Connectivity and Distributed Classification of the Human Brain
Generalized Neutral Portfolio
Grant Prediction with Network Features
Hedging and Pricing Options using Machine Learning
Identification of Cancer-relevant Variations in a Novel Human Genome Sequence
Identification of nano-particle absoption by circulating macrophage
Identification of Neuroimaging Biomarkers
Identifying Hand Configurations with Low Resolution Depth Sensor Data
Inferring Passenger Boarding and Alighting Preferences for Marguerite
Integrated Analysis of Breast Cancer Gene Expression, Morphology, and Patient Survival
Intuition
Investigation of error tolerant nature of machine learning algorithms
Learning 3D Point Cloud Histograms
Learning and Visualizing Political Issues from Voting Records
Learning Stereo Features with Stacked Autoencoders
Learning the Statistics of Wireless Links
Learning to Grasp Objects: A Novel Approach for Localizing Objects Using Depth Based Segmentation
Learning to Splash
Lifetracker
Machine Learning for PreEmptive Identification of Unix Servers with Performance Problems
Machine Learning for Well Testing
Machine Learning In Statistical Arbitrage
Mapping geometry in heart rate data
Markov Decision Process Social Recommender
Mean Variance Optimization and Beyond
Mining Sentiment from Form 10K
Mood Detection: Implementing a facial expression recognition system
MRI Based Machine Learning For The Identification of Novel Subtypes in Autism.
Multi-touch Multi-robot Interface
Multiclass SVM's for Olfactory Classification
Musical Instrument Signal Separation from Popular Songs
N-gram-based Text Attribution
Online Learning for URL Classification
Online Parameter Estimation for the Adaptive Control of UAVs
Opponent Modelling in Heads-up NL Holdem
Person Following on STAIR
Playing Strong Poker
Portfolio Optimization Under Time-Varying Economic Regimes
Practical Option Pricing with Support Vector Regression and MART
Predicting Age Using Biomarkers and Physiological Measurements
Predictions and Rankings in College Football
Question Classification
Rapid Natural Scene Text Selection
Recognizing Informed Option Trading
Region of Interest Identification in Breast MRI ImageRegion of Interest Identification in Breast MRI Images
Relational RSS Clustering Techniques
RISK: A Case Study In Applying Learning Algorithms To Strategy Board Games
RoboChef: Automatic Recipe Generation
Sentiment Analysis of Microblogs
Server Load Prediction
Single Image Depth Estimation from Predicted Semantic Labels
SNPrints: Defining SDP signatures for prediction of onset in complex diseases
Spoken Language Identification With Hierarchical Temporal Memories
Starcraft Map Imbalance Prediction Based on Chosen Build Order
Static Positional Evaluation of Chess Positions
Stock Forecasting using hidden markov processes
Structural Motif detection in high-throughput structural probing of RNA
Supervised Entity and Relation Extraction
Supervised Learning in Genre Classification
Tag Recommendation for Photos
Toward a NIRS Brain Computer Interface
Transcription start site description
Unsupervised Clustering with Axis-aligned Rectangular Regions
Value Iteration and DDP for an Inverted Pendulum
Variants of Pegasos
Video Presentation Slide Alignment
Video Restoration using Multichannel-Morphological Component Analysis Inpainting
4-Way-Stop Wait-Time Prediction
A Better BCS
A Framework for Assessing the Feasibility of Learning Algorithms in Power-Constrained ASICs
A Framework for Recognizing Hand Gestures
A Machine Learning Approach for Future Career Planning
A Machine Learning Approach to Address the Issue of False Positives and False Negatives in Active Structural Health Monitoring (SHM)
A Machine Learning Framework for Biochemical Reaction Matching
A Novel Machine Learning Based Prediction Model for Energy Expenditure in relation to Varying Load, Incline, and Body Composition
A Reinforcement Learning Approach for Pricing Derivatives
A Spam Classifier For Biology: Removing Noise from Small RNA Datasets
A Step-by-Step Approach to Footstep Detection
A Survey of Document Clustering Techniques & Comparison of LDA and moVMF
Accent Classification
Action Recognition in Video
Across-Subject Classification of Single EEG Trials
Adult Website Classifier
An Unsupervised Approach to Email Label Suggestions
Applying Entropy Encoding to High Frequency Trading
Assessing the Value of eBay Listing Features
Audio Source Separation Using Probabilistic Latent Component Analysis
Autism
Automated Agent for the Game RoShamBoFu
Automated Classification of Galaxy Zoo Images
Automated Parameterization of the Joint Space Dynamics of a Robotic System
Automatic Virtual Camera View Generation for Lecture Videos
Autonomous Generation of Bounding Boxes for Image Sets of the Same Object
Battery Management in Datacenter Using Machine Learning
Beating Elo
Beating the NCAA Football Point Spread
Caloric and Nutritional Information Using Image Classification
Classification and Quantification of Matrix Micro-cracks in Composite Structures
Classification of Book Titles
Classification of Fast Magnetic Resonance Image Reconstruction Using Matching Pursuit Family Algorithm
Classification of handwritten digits by the set of partial linear and quadratic models
Classification of RNA splice junctions based on genomic signals
Classification of Road Images for Lane Detection
Classifying Parts Of Songs
Classifying Structural MRI Scans of Patients with Major Depressive Disorder
Comparison of Supervised & Unsupervised Learning in Estimation between Stocks and the S&P500
Diagnosis of Fragile X and Turner's Syndrome
Domain Adaptation for Relation Extraction
Emotion Recognition with Deep-Belief Networks
Enhancing Automated Question Classification
EPiC: Earthquake Prediction in California
Extracting Latent User Preferences Using "Sticky" Sliders
Fast Detection of Risk Signals in Post-marketing Drug Surveillance Using Costs in Claims Data: A Machine Learning Approach
Feature selection and dimensionality reduction of neural data to model adaptation in the retina
Forecasting Avalanches in the Pacific Northwest
Geometric Understanding of Indoor Scenes
Graduate School Application Evaluation Based on SVM
Handwritten Character Recognition
Hearst Challenge : A Framework to Learn Magazine Sales Volume
Hessian Free Deep Learning
Human Accuracy Analysis on the Amazon Mechanical Turk
Identifying Keywords in Random Texts
Identifying Looping Components of Audio Mixtures
Identifying Morphological Markers for Differential Diagnosis of Liver Lesion
Information Flows on Twitter
Innocent Until Proven Guilty: Linguistic Predictors of Court Verdicts
Janitor Bot - Detecting Light Switches
JIT Compilation of Common Kernels in Sequoia using Supervised Learning
Joint Supervised Learning of Ratings and Rankings
Learning the Genetic Causes for Schizophrenia through Copy-Number Variations
Learning the Structures and Predicting Behavoir of Potential Function Based Multi-Agent Formations
Local Image Histograms for Learning Exposure Fusion
Low-Cost Localization of Mobile Robots Through Probabilistic Sensor Fusion
Machine Learning Approaches to Automatic BI-RADS Classification of Mammography Reports
Machine Learning for Sentiment Analysis on the Experience Project
MAUL: Machine Agent User Learning
Measuring Occlusion Invariances in Deep Networks
Modeling Activity Patterns
Multiclass Clustering using a Semidefinite Relaxation
Multiple Experts with Binary Features
Musical Pitch Identification
Neuro-Fuzzy Inverse Forward Models
Neural Prediction Challenge: Primary Auditory Cortex
Object Detection with Partial Occlusion Based on a Deformable Parts-Based Model
Object Identification in Dynamic Environments
Online Dynamics Estimator for Adaptive UAV Control with Uncertain Model
Online learning of control policies for dynamical systems based on input/output data recorded on the fly
Optical Character Recognition for Handwritten Hindi
Optimizing Leakage Power using Machine Learning
OS fingerprint classification using a support vector machine
Parallel Unsupervised Feature Learning with Sparse AutoEncoder
Parallelizing Machine Learning Algorithms
Parallelizing the Sparse Autoencoder
Parking Spot Detection from Aerial Images
Particle classification
Predicting and Understanding Bronchopulmonary Dysplasia in Premature Infants
Predicting Magazine Sales Using Machine Learning
Predicting Market Fluctuations via Machine Learning
Predicting the Success of a Retirement Plan Based on Early Performance of Investments
Predicting Course Grades
Predicting Tags for URLs Based on Delicious Data
Predicting Wireless Channel Utilization at the PHY
Prediction of outcome for two team games
Rating Modules on cnx.org: Using Network Structure as a Feature in Regression
Automated Energy Distribution In Smart Grids
Recognizing facial expressions from videos using Deep Belief Networks
Recognizing Hand Gestures with a 3D Camera
Recommending Accounts to Twitter Users
Recycler Bot
Reinforcement Learning with Deep Architectures
Reinforcement Learning for Scheduling Threads on a Multi-Core Processor
Reservoir Uncertainty Assessment Using Machine Learning Techniques
RSS Feed Recommendation
Scene Text Understanding
Semi-Supervised Learning of Named Entity Substructure
Sentiment Analysis for Market Movements
Short-Term Electricity Demand Forecasting Using Independent Component Analysis
Short Term Load Forecasting With Dynamic Pricing
Signature Recognition on Multitouch Computers
Soft Co-clustering via Extension of PLSA
Storage Efficient NL-Means Burst Denoising for Programmable Cameras
Subspace Clustering with Applications to Dynamical Vision
Task Recommendation on Wikipedia
Textbaxed Soccer Simulator
Topic Modeling in Financial Documents
Toward Mechanized Music Pedagogy
Transferring Learning in Large Scale Datasets
Travel Time Estimation Using Floating Car Data
Twitter Hash Tag Prediction Algorithm
Twitter Relevance Filtering via Joint Bayes Classifiers from User Clustering
Twitter Spammer Profile Detection
Unsupervised Multi-factor Risk Models for US Equities
Unsupervised Learning of Multi-modal Features: Images and Text
Unsupervised learning technique for audience privacy protection in video lectures
Using AdaBoost for Real-Time Object Detection on Programmable Graphics Hardware
Using the Deformable Part Model with Autoencoded Feature Descriptors for Object Detection
Using Local Steering Kernels to Detect People in Videos
Using Machine Learning for Identification of Art Paintings
Using Social Networks to Improve Movie Ratings Predictions
Using Two Lenses for Depth Estimation and Simulation of Low Depth-of-Field Lenses
VC Robot
Vocal-based Musical Genre Classification
3D Kinect Object Recognition
A Hard Science Is Good to Find
A Learned Approach for Lump Identification in Soft Tissue via Palpation
A multi-task feature learning approach to human detection
A Stock-Purchasing Agent from Sentiment Analysis of Twitter
Accent Recognition
Acoustic Features for Multimedia Classification
Analysis of gene expression time series
Applying Machine Learning to Product Categorization
Attentional Based Multiple-Object Tracking
Audio Source Separation
Automated Market Sentiment Analysis of Twitter for Options Trading
Automated Patent Classification
Automatic genres classification of movies
Automatically Identifying Valid Web Form Inputs
Box Office Prediction for Upcoming Films
Breast Tumour Imaging and Drug Trials: Prediction of Response to Treatment
Building fast proxies for optimization of thermal reservoir simulation
Can a machine learn to teach?
Characterizing Densities from Semi-Analytical Models of Galaxy Formation
Classification of Malicious Network Activity
Classification of Video Game User Reviews
Classifying Galaxy Morphology using Machine Learning Techniques
Classifying Private Data
Complex Sentiment Analysis using Deep Learning
Creating a Better Above-the-Fold Experience: Predicting News Article Preferences
Creating a Guided Water Rocket
CRF Based Point Cloud Segmentation
Decoding Neural Stop State
Decoding visual stimuli from neural responses
Design Space Characterization in Micro-Architecture Design and Implementation
Detecting Audio Video Misalignment
Detecting Emotion in Human Speech
Detection of Whistler Waves
"Dinner table object segmentation
Directed Learning WiFi SLAM Applications
Early defect identification of semiconductor processes using machine learning
Electricity Demand Prediction in California
Empirically Verifying and Innovations on Several Machine Learning Theorems and Techniques
Estimating Road Friction for Autonomous Vehicles
Final Approach
Finding Answers to Non-factoid Questions Using a Recursive Neural Network
Finding the Best Photo
Flame War detector
Football Futures
Forecasting Stock Market Behavior based on Public Sentiment
Forecasting Video Analytics
Forecasting with Expert Opinions
Foreign Accent Classification
Groundwater level prediction with linear regression
Identifying leaders in group movement of cows using proximity information
Identifying Optical Trap
Identifying Transcription Factor Binding by the DNase Hypersensitivity Assay
Image Segmentation from Point Cloud Data using Fully Connected CRFs with Gaussian Kernel for Autonomous Driving
Improving Accuracy of Inertial Measurement Units using Supervised Machine Learning
Improving Grad Student Romantic Life
Improving Response Modeling with Facebook engagement data
Improving Tictoc With Machine Learning
Incorporating Gryroscope Information in 3D Gesture Recognition
Indoor scene recognition
Inference of Structured Cell Populations from CyTOF Data
Interpreter aided salt boundary segmentation using SVM regression shape deformation technique
Interpreting American Sign Language With Kinect
Kinect Object Recognition
KLearn: Simulated Robot Actions using Model-Based Reinforcement Learning
Learning Analytics in Education
Learning from High Dimensional Data
Learning Invariant Features for Action Recognition
Learning Market Performance Using Keyword Search Volume
Learning Unsupervised Features from Objects
Local Structure and Evolution for Cascade Prediction
Machine Learning for Baseball Statistics
Machine LearnNG Wikipedia: Recommending Interesting Articles
Measuring Student Confusion with Proof Helper
Modeling the Stock Market Using Twitter Sentiment Analysis
Modeling the Stock Market Using Twitter Sentiment Analysis
Multi-Level Automatic Music Classification
Multiple Feature Learning for Action Classification
Music Mood Classification
Musical Signal Separation
Neuron Detection In Fluorescence Microscopy
News Feed Prediction
News Recommendation
Node Classification in Multirelational Information Networks
Nonlinear Extensions of Reconstruction ICA
Object Classification Using SURF Descriptors
Occupation Classifier
OCR for Telugu Script
Optical Character Recogntion
Optimization Algorithms for Non-smooth ML Problems
People Detection with DSIFT and SVM Algorithms
Predicting Borrow's Chances of Defaulting on their Loans
Predicting Controversial Wikipedia Articles Using Edit History
Predicting Couchsurfing Experiences
Predicting differential drug response using clinical informatics
Predicting Disease States From Genetics
Predicting Gene Expression Using CAGE Data
Predicting glance appeal for web sites
Predicting Movie Rating based on Text Reviews
Predicting Movie Revenue
Predicting Movie Revenues using IMDb Data
Predicting Movie Success
Predicting News Preference
Predicting News Preferences
Predicting News Preferences
Predicting Outcomes of NFL Games
Predicting Preferences: Analyzing Reading Behavior and News Preferences
Predicting probability of Loan default
Predicting Rating Satisfaction based on Text Reviews with Sentiment Analysis
Predicting socio-economic factors with traffic data
Predicting the Dow Jones using Twitter
Predicting the immediate future with Recurrent Neural Networks
Predicting Tourism Trends with Google Insights
Prediction of Price Movement in the Foreign Exchange Market
Promoting Student Success in Online Courses
Pulse News Prediction
Pulse Project
Real-time object detection and recognition
Reddit Recommendation System
Reduced Rank Regression
Resampling Detection for Digital Image Forensics
Sentiment Analysis of Occupy Wall Street Tweets
Sentiment Analysis of Twitter Feeds for the Prediction of Stock Market Movement
Sentiment-based model for reputation systems in Amazon
Sign Language Gesture Recognition with Unsupervised Feature Learning
Stock Trend Classifier
Structured Completion Predictors Applied to Image Segmentation
Supervised Link Prediction through Social Group Attributes and Geographic Data
Supplementing Checkers AI Evolution with Game Classification
Support Vector Machine Classification of Snow Radar Interface Layers
Tactical and Strategic Game Play in Doppelkopf
Unsupervised Morphological Segmentation with Recursive Neural Network
Using NYC Big Data to Predict Housing Prices in NYC
Using spatiotemporally distributed patterns of intracranial encephalographic activity to classify previously encountered versus novel stimuli
Using Twitter to Estimate and Predict the Trends and Opinions
Using Twitter to Predict Stock Market Movement
Webcam Sign Language Recognition
Website Classifer
What It Took To Win: Predicting College Football Wins from the Box Score
What Makes for a Hit Pop Song?
Yelp - Star Ranking Prediction and Snippet Extraction using Sentiment Analysis
Yelp++: 10 Times More Information per View
A Facebook Profile-Based TV Recommender System
A Flexible System for Hand Gesture Recognition
A New Rival To Predator And ALIEN
A Risky Proposal: Designing a Risk Game Playing Agent
A Supervised Learning Method for Seismic Data Quality Control
A Wind Power Forecasting Problem
Acoustic Detection: Identifying Train Events
Action Recognition in Tennis
An application of machine learning to the board game pentago
Analysis for Association between Genomic Information and Survival Rate of Glioblastoma Multiforme
Analyzing and Predicting Tags to Build an Error-Resistant Music Recommendation System
Analyzing CS 229 Projects
Applying machine learning algorithms to oil reservoir production optimization
Applying Reinforcement Learning to Competitive Tetris
Assigning B cell Maturity in Leukemia
Association of enhancers and genes they regulate
Author Identification on Twitter
Authorship Identification of Movie Reviews
Automated analysis of calcium imaging data
Automated detection and repair of visual distortion in data graphics
Automated Essay Grading Using Machine Learning
Automated hand recognition as a human-computer interface
Automated Segmentation of Breast Density
Automated Stock Trading Using Machine Learning Algorithms
Automated Transcription of Guitar Music
Automatic detection and cropping of dipoles in large area SQUID magnetometry scans of individual nano magnets.
Automatic Detection of Dark Matter via Weak Gravitational Lensing
Automatic Tag Generation for Music Files
Beer recommendation engine
Bestbuy Recommendation System
Biomedical Research Topics Trends
Breast Cancer Prognosis
Broadcast news story boundary detection using visual, audio and text features
Cancerous Tissue Classication Using Microarray and RNASeq Gene Expression
Characterizing Dark Matter Concentrations Through Magnitude Distortions due to Gravitational Lensing
City Clustering from Craigslist Posts
Classification of Honest and Deceitful Memory Using fMRI Data
Classification of Induction Signals for the EXO-200 Double Beta Decay Experiment
Classifying applications based on API consumption
Classifying Chess Positions
Classifying the subjective: Can music genres be reliably determined from lyrics?
Clustering by topological methods
Composer Identification of Digital Audio Modeling Content Specific Features Through Markov Models.
Creating a Texas Hold'Em Bot
Predicting Wallpaper Preferences
Crystal Ball through the Lens of Facebook
Dark Matter Detection
Deep Learning for Wireless Interference Segmentation and Prediction
Deep Learning for Time Series Modelling
Time Series analysis: the effect of adding an unsupervised layer to NN time series prediction
Deep Understanding of Financial Knowledge through Unsupervised Learning
Detecting Absorption of Solar Radiation By Clouds with Satellite Imagery Processing
Detecting Bad Wikipedia Edits
Detecting Dark Matter Halos
Detecting Peer-to-Peer Insults
Detecting vandalisms in Wikipedia edits
Detecting Wikipedia Vandalism
Detection of Myers-Briggs Type Indicator via Text Based Computer-Mediated Communication
Determining Behavior of Bid-Ask Prices Following Liquidity Shocks
Developing Fingerprints to Computationally Define Functional Brain Networks and Noise
Dining Scene Recognition Using Related Object Detection
Discovering Elite Users In Question and Answering Communities
Distinguishing Opinion From News
E-Commerce Product Categorization
Earthquake Waveform Recognition
Electronic Devices Products Sales Prediction Using Social Media Sentiment Analysis
Smart and Fast Email Sorting
Content aware email multi-class classification - Categorize emails according to senders
Emote-Cat
Employer Health Insurance Premium Prediction
Estimating Convergence Probability for the Hartree-Fock Algorithm for Calculating Electronic Wavefunctions for Molecules
Stochastic Control of Electric Vehicle Charging
Evaluating Classified Ad Effectiveness
Evaluation of Credit Risk
Event Extraction Using Distant Supervision
Evolution of Movie Topics over Time
Expected wind turbine load estimation based on the wind field joint pdf constructed using the mixture Gaussian-EM algorithm
Extracting Vocal Sources From Master Audio Recordings
Family History Detection from Clinical Text
Fast and Low-power OCR for the Blind
Financial Market Time Series Prediction with Recurrent Neural Networks
Stock Option Price Prediction
Good Cell, Bad Cell: Classification of Segmented Images for Suitable Quantification and Analysis
Handwritten Character Recognition in Ancient Manuscripts
How a Bill Becomes a Law - Predicting Votes from Legislation Text
How We Build
How well do people learn?
Human Activity Recognition in Videos
iDec: Real-time eye state classification via web cam
Identification and Compensation for Corrupt Sensor Data in Robotic Grasping
Applying Feature Selection to Gene Expression Data
Identifying Dark Matter Halos
Identifying External Vulnerability
Identifying Important Communications
Identifying Low-Quality YouTube Comments
Signal denoising via non linear manifolds
Imaggle Project - 3D Human Modelling
Incorporating Global Information into Local Upscaling of Fluid Flow in Porous Media
Intelligent Technology for Innovation in Urban Disasters
Interpolating images using non-linear dimensionality reduction
Song genre classification via training on segment chromas and MFCCs
Improvement of an automatic speech recognition toolkit
Kicked Car Prediction
Kinect gesture recognition and classification
Kinect Gesture Recognition for Interactive System
Topic Modeling using LDA with Feedback Mechanism
Lasso in Categorical Data
Learning Analytics for Learning to Program
Learning and Modeling Singer Error for QbH
Learning Descriptors for Shape Mapping
Learning Stochastic Inverses
The Learning Keyboard
Learning Static Parameters in Stochastic Processes
Learning to Decode Cognitive States of Rat using Functional Magnetic Resonance Imaging Time Series
Learning to Detect Information Outbreaks in Social Networks
Learning to Play 2D Video Games
Learning to Predict Flight Delay
Learning to Recognize Objects in Images
Machine Learning an American Pastime
Machine Learning and Capri, a Commuter Incentive Program
Machine learning application on detecting nudity in images
Machine Learning Applied to Human Brain - Machine Interfaces
Jazz Melody Generation and Recognition
Magic: The Gathering Deck Performance Prediction
Malicious URL Detection
Maximizing Return on Direct Marketing Campaigns in Commercial Banking
Million Song Dataset Challenge
MindMouse
Movie rating estimation and recommendation
Movie Trailer Project
Multi Agent Learning in Simulated Bot-War
Music Preference Prediction
Music Recommender System
Music Classification by Composer
Negative News No More : Classifying News Article Headlines
Networks and Noise
Non-homogenous Swarms vs MDP's
Non-Stationary Covariance Models for Discontinuous Functions as Applied to Aircraft Design Problems
Observing Dark Worlds
Observing Dark Worlds
Observing Dark Worlds
Observing Dark Worlds
On and Off Pathways of Ganglion Cells in the Salamander Retina
Optimal Vehicle to Grid Regulation Service Scheduling
Optimal VTOL of SpaceX's Grasshopper
Forecasting trade direction and size of future contracts using deep belief network
Parallel learning of content recommendations using map-reduce
A Comparison of Keypoint Descriptors in the Context of Pedestrian Detection : FREAK vs SURF vs BRISK
Phishing Email Detection Using Neural Network
Predicting the 85th Academy Awards
Predicting Acceptance of Github Pull Requests
Predicting Airfare Prices
Identifying dementia in MRI scans using machine learning
Predicting Arm Movements in Virtual Environments
Predicting Bank Default from the Quarterly report
Predicting Congressional Bill Outcomes
Predicting Country of Origin from Genetic Data
Predicting Cycles in the Foreign Exchange Market
Predicting Epitopes for MHC Molecules
Predicting Fantasy Football Performance with Machine Learning Techniques
Predicting Fantasy Football Results
Predicting Flight Delays
Predicting Flight Delays
Predicting floods and droughts in India
Predicting Future Energy Consumption.
Predicting IMDB Movie Ratings Using Google Trends
Predicting Microfinance Participation in Indian Villages
Predicting Movie and TV Preferences from Facebook Profiles
Predicting NBA Player Performance
Predicting NSF Award Money from Abstracts
Predicting Patients with Diabetes Type II from EHR Data
Predicting Popular Xbox games based on Search Queries of Users
Predicting Reddit Post Popularity
Predicting retail website anomalies using Twitter data
Finding Meaning in New York City Public School Data
Predicting Career Paths of NBA Players
Predicting the Daily Liquidity of Corporate Bonds
Predicting the Odds of Getting Retweeted
Predicting the Outcome of Baseball Games
Predicting the Popularity of Social News Posts
Predicting the US Presidential Election using Twitter data
Predicting Transcription Factor Binding
Predicting U.S. president election result based on Google Insights
Predicting User Ratings Using Graphical Status Models on Amazon.com
Predicting Wine Prices from Wine Labels
Prediction of High-Cost Hospital Patients
Predictive Validity Of a Robotic-surgery Simulator
QWOP learning
Real-time reinforcement learning in traffic signal system
Recognizing Chatting Style
Recommendation of TV shows and Movies based on Facebook data
Recommendation System for HCD Connect
Recommendations for Reddit users
Recommending Movies and TV shows based on Facebook profile data
Reconstructing Broadcasts on Trees
Reinforcement Learning to Play Mario
Restaurant Recommendation for Facebook Users
Road Network Reconstruction Based on Taxi GPS Data
Road Sign Detection and Recognition
Sentiment Analysis of Users' Reviews and Comments
Separating Speech From Noise Challenge