소스 검색

fix silly bug

Ali Bellamine 2 년 전
부모
커밋
43eaebefd3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      bop_scripts/nn_models.py

+ 1 - 1
bop_scripts/nn_models.py

@@ -214,7 +214,7 @@ class torchMLPClassifier_sklearn (BaseEstimator):
         y_hat_proba_torch = np.concatenate([
             1-y_hat_proba_torch,
             y_hat_proba_torch
-        ], axis=0)
+        ], axis=1)
         y_hat_proba = y_hat_proba_torch
 
         return y_hat_proba