Machine Learning Algorithm for Parallel Nodes
        Posted  
        
            by FreshCode
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by FreshCode
        
        
        
        Published on 2010-05-30T22:39:30Z
        Indexed on 
            2010/05/30
            22:42 UTC
        
        
        Read the original article
        Hit count: 442
        
I want to apply machine learning to a classification problem in a parallel environment. Several independent nodes, each with multiple on/off sensors, can communicate their sensor data with the goal of classifying an event defined by a heuristic, training data or both.
Each peer will be measuring the same data from their unique perspective and will attempt to classify the result while taking into account that any neighbouring node (or its sensors or just the connection to the node) could be faulty. Nodes should function as equal peers and determine the most likely classification by communicating their results.
Ultimately each node should make a decision based on their own sensor data and their peers' data. If it matters, false positives are OK (albeit undesirable) but false negatives are totally unacceptable.
Given that each final classification will receive good or bad feedback, what would be an appropriate machine learning algorithm to approach this problem with if the nodes could communicate with each other to determine the most likely classification?
© Stack Overflow or respective owner