2017-11-01 39 views
0

scikit-learnを使ってPythonプログラムを実行しようとしています。 2つの配列に基づいたホッケーゲームの「喪失」:ホッケーゲームをしている各チームの1つの統計配列(currentInjuriesとGoals Againstなど)。私はJavaのデバッグに慣れていますが、Pythonではスタックトレースは私が慣れていたよりもずっと長くなっています。Python Scikit学習エラー:ValueError: 'サンプル数が一致しない入力変数が見つかりました:[4,10]'

スタックトレース全体、または最も関連性の高いエラーを見て、解決に焦点を当てるべきでしょうか?ある IE)の一番下にあるエラー、:非常に下部にエラーがエラーが何であるかを示すことができる

pydev debugger: process 1084 is connecting 

C:\Users\Thomas\Anaconda3\lib\site-packages\sklearn\cross_validation.py:44: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20. 
    "This module will be removed in 0.20.", DeprecationWarning) 
C:\Users\Thomas\Anaconda3\lib\site-packages\sklearn\lda.py:6: DeprecationWarning: lda.LDA has been moved to discriminant_analysis.LinearDiscriminantAnalysis in 0.17 and will be removed in 0.19 
    "in 0.17 and will be removed in 0.19", DeprecationWarning) 
canucks_stats: [3, 11, 2, 2] 
opposing_stats: [1, 4, 4, 15] 
Backend Qt5Agg is interactive backend. Turning interactive mode on. 
Traceback (most recent call last): 
    File "C:\Program Files (x86)\JetBrains\PyCharm Community Edition 2016.3.2\helpers\pydev\pydevd.py", line 1596, in <module> 
    globals = debugger.run(setup['file'], None, None, is_module) 
    File "C:\Program Files (x86)\JetBrains\PyCharm Community Edition 2016.3.2\helpers\pydev\pydevd.py", line 974, in run 
    pydev_imports.execfile(file, globals, locals) # execute the script 
    File "C:\Program Files (x86)\JetBrains\PyCharm Community Edition 2016.3.2\helpers\pydev\_pydev_imps\_pydev_execfile.py", line 18, in execfile 
    exec(compile(contents+"\n", file, 'exec'), glob, loc) 
    File "C:/Users/Thomas/Desktop/!UFV/CIS480/project/NHL-Predictor.py", line 196, in <module> 
    for name, (X, y) in [('moon', toms_make_moons(noise=0.3, random_state=0))#, 
    File "C:/Users/Thomas/Desktop/!UFV/CIS480/project/NHL-Predictor.py", line 113, in toms_make_moons 
    X, y = util_shuffle(X, y, random_state=generator) 
    File "C:\Users\Thomas\Anaconda3\lib\site-packages\sklearn\utils\__init__.py", line 285, in shuffle 
    return resample(*arrays, **options) 
    File "C:\Users\Thomas\Anaconda3\lib\site-packages\sklearn\utils\__init__.py", line 204, in resample 
    check_consistent_length(*arrays) 
    File "C:\Users\Thomas\Anaconda3\lib\site-packages\sklearn\utils\validation.py", line 181, in check_consistent_length 
    " samples: %r" % [int(l) for l in lengths]) 
ValueError: Found input variables with inconsistent numbers of samples: [4, 10] 

Process finished with exit code 1 
+2

一番下での誤差はお見せすることができますエラーは何ですか。そして、スタック全体のトレースは、エラーがどこにあるかを見つけるのに役立ちます。 – xiaoyi

答えて

-1

File "C:\Users\Thomas\Anaconda3\lib\site-packages\sklearn\utils\validation.py", line 181, in check_consistent_length 
    " samples: %r" % [int(l) for l in lengths]) 
ValueError: Found input variables with inconsistent numbers of samples: [4, 10] 

ここでは、全体のスタックトレースです。スタックトレース全体は、エラーの位置を特定するのに役立ちます。

質問を投稿するときには、常にスタックトレースを投稿してください(エラーが発生している行を知るため)。エラーValueError: Found input variables with inconsistent numbers of samples: [4, 10]についてhow to ask

を参照:

xサイズの2次元配列でなければならない[number_of_samples、number_of_features]。あなたがそれをチェックすることができます。

と、いくつかの参照があります。

REF1:ValueError: Found arrays with inconsistent numbers of samples [ 6 1786]

REF2:Loading jpg of different sizes into numpy.array - ValueError: Found input variables with inconsistent numbers of samples

REF3:Number of features of the model must match the input

REF4:Found input variables with inconsistent numbers of samples

関連する問題