2015-03-14 4 views
0

Прошу прощения еще раз, чтобы задать еще один вопрос, но почему именно Weka выделяет некоторые классификаторы для данных, которые я делаю. И образец glipse файла данных прилагается следующим образом:Weka greyed out classifers

@relation whatever 

@attribute ClearanceFactor numeric 
@attribute CrestFactor numeric 
@attribute HistogramLB numeric 
@attribute HistogramUB numeric 
@attribute ImpulseFactor numeric 
@attribute KurtVal numeric 
@attribute PeakVal numeric 
@attribute RMSVal numeric 
@attribute Status { Normal } 


@data 
1 , 0.944758327 , 0.818823375 , 0.835884533 , 0.973802319 , 0.922274575 , 0.836712854 , 0.830582178 , Normal 
1 , 0.922118042 , 0.737125289 , 0.762040973 , 0.963101929 , 0.889826729 , 0.762426651 , 0.753675509 , Normal 
1 , 0.975667525 , 0.916722849 , 0.924607883 , 0.988490457 , 0.962805959 , 0.925217603 , 0.922378149 , Normal 

ответ

0

Я получил его, работая простым трюком. В последнем столбце я добавил все другие возможные наборы решений следующим образом, и это сработало! : D

@relation whatever 

@attribute ClearanceFactor numeric 
@attribute CrestFactor numeric 
@attribute HistogramLB numeric 
@attribute HistogramUB numeric 
@attribute ImpulseFactor numeric 
@attribute KurtVal numeric 
@attribute PeakVal numeric 
@attribute RMSVal numeric 
@attribute Status { Normal, faulty0, faulty1} 
Смежные вопросы