ValueError: Unknown label type: while implementing MLPClassifier

后端 未结 4 2053
盖世英雄少女心
盖世英雄少女心 2021-02-14 08:38

I have dataframe with columns Year, month, day,hour, minute, second, Daily_KWH. I need to predict Daily KWH using neural netowrk. Please let me know how to go about it



        
4条回答
  •  梦谈多话
    2021-02-14 09:17

    First of all, this is a regression problem and not a classification problem, as the values in the Daily_KWH_System column do not form a set of labels. Instead, they seem to be (at least based on the provided example) real numbers.

    If you want to approach it as a classification problem regardless, then according to sklearn documentation:

    When doing classification in scikit-learn, y is a vector of integers or strings.

    In your case, y is a vector of floats, and therefore you get the error. Thus, instead of the line

    y = df['Daily_KWH_System']
    

    write the line

    y = np.asarray(df['Daily_KWH_System'], dtype="|S6")
    

    and this will resolve the issue. (You can read more about this approach here: Python RandomForest - Unknown label Error)

    Yet, as regression is more appropriate in this case, then instead of the above change, replace the lines

    from sklearn.neural_network import MLPClassifier
    mlp = MLPClassifier(hidden_layer_sizes=(30,30,30))
    

    with

    from sklearn.neural_network import MLPRegressor
    mlp = MLPRegressor(hidden_layer_sizes=(30,30,30))
    

    The code will run without throwing an error (but there certainly isn't enough data to check whether the model that we get performs well).

    With that being said, I don't think that this is the right approach for choosing features for this problem.

    In this problem we deal with a sequence of real numbers that form a time series. One reasonable feature that we could choose is the number of seconds (or minutes\hours\days etc) that passed since the starting point. Since this particular data contains only days, months and years (other values are always 0), we could choose as a feature the number of days that passed since the beginning. Then your data frame will look like:

          Daily_KWH_System  days_passed 
    0          4136.900384    0   
    1          3061.657187    1     
    2          4099.614033    2  
    3          3922.490275    3   
    4          3957.128982    4  
    

    You could take the values in the column days_passed as features and the values in Daily_KWH_System as targets. You may also add some indicator features. For example, if you think that the end of the year may affect the target, you can add an indicator feature that indicates whether the month is December or not.

    If the data is indeed daily (at least in this example you have one data point per day) and you want to tackle this problem with neural networks, then another reasonable approach would be to handle it as a time series and try to fit recurrent neural network. Here are couple of great blog posts that describe this approach:

    http://machinelearningmastery.com/time-series-prediction-lstm-recurrent-neural-networks-python-keras/

    http://machinelearningmastery.com/time-series-forecasting-long-short-term-memory-network-python/

提交回复
热议问题