Пример #1
0
 def test_predict_single_model_with_preprocess(self):
     layer_model = Layer([LinearRegression()], [MinMaxScaler()])
     X = np.array([[1, 1], [1, 2], [2, 2], [2, 3]])
     y = np.dot(X, np.array([1, 2])) + 3
     layer_model.fit(X, y)
     result = layer_model.predict(np.array([[3, 5]]))
     assert result.shape == (1, 1)
     assert np.allclose(result, np.array([[16]]))
Пример #2
0
    def test_predict_single_model_with_2_class_proba(self):
        layer_model = Layer([LogisticRegression(solver='liblinear')],
                            proba=True)
        X = np.array([[1, 1], [1, 2], [2, 2], [2, 3]])
        y = np.array([1, 1, 0, 0])

        layer_model.fit(X, y)
        result = layer_model.predict(np.array([[3, 5]]))
        assert result.shape == (1, 2)
Пример #3
0
 def test_predict_single_model_with_multi_class_proba(self):
     layer_model = Layer(
         [LogisticRegression(solver='lbfgs', multi_class='multinomial')],
         proba=True)
     X = np.array([[1, 1], [1, 2], [2, 2], [2, 3]])
     y = np.array([1, 1, 0, 2])
     layer_model.fit(X, y)
     result = layer_model.predict(np.array([[3, 5]]))
     assert result.shape == (1, 3)
Пример #4
0
 def test_predict_multiple_model(self):
     layer_model = Layer([LinearRegression(), LinearRegression()],
                         [None, MinMaxScaler()])
     X = np.array([[1, 1], [1, 2], [2, 2], [2, 3]])
     y = np.dot(X, np.array([1, 2])) + 3
     layer_model.fit(X, y)
     result = layer_model.predict(np.array([[3, 5]]))
     assert result.shape == (1,2)
     assert np.allclose(result, np.array([[16, 16]]))
Пример #5
0
 def test_using_proba_without_predict_proba_method(self):
     with pytest.warns(Warning) as record:
         layer_model = Layer([LinearRegression()], proba=True)
         X = np.array([[1, 1], [1, 2], [2, 2], [2, 3]])
         y = np.dot(X, np.array([1, 2])) + 3
         layer_model.fit(X, y)
         result = layer_model.predict(np.array([[3, 5], [3, 5]]))
         assert result.shape == (2, 1)
         assert np.allclose(result, np.array([[16], [16]]))
         assert record
Пример #6
0
 def test_copy_function_only_model(self):
     curLayer = Layer([LinearRegression(), LogisticRegression()])
     X = np.array([[1, 1], [1, 2], [2, 2], [2, 3]])
     y = np.dot(X, np.array([1, 2])) + 3
     curLayer.fit(X, y)
     curLayer2 = curLayer.copy()
     gotError = False
     try:
         curLayer2.predict(np.array([[3, 5]]))
     except (NotFittedError):
         gotError = True
     assert gotError, "Model failed the copy Test: When copying, a deep copy was produced"
Пример #7
0
 def test_fir_single_model_with_preprocess(self):
     layer_model = Layer([LinearRegression()], [MinMaxScaler()])
     X = np.array([[1, 1], [1, 2], [2, 2], [2, 3]])
     y = np.dot(X, np.array([1, 2])) + 3
     # X and y are linearly related, predictions will be almost perfect
     result = layer_model.fit(X, y)
     assert result.shape == (4, 1)
     assert np.allclose(result.flatten(), y)
Пример #8
0
 def test_fit_multiple_model_with_2_class_proba(self):
     layer_model = Layer([LogisticRegression(solver='liblinear'),
                          LogisticRegression(solver='liblinear')],
                         proba=[True,False])
     X = np.array([[1, 1], [1, 2], [2, 2], [2, 3]])
     y = np.array([1, 1, 0, 0])
     result = layer_model.fit(X, y)
     assert result.shape == (4,3)
Пример #9
0
 def test_fit_multiple_models(self):
     layer_model = Layer([LinearRegression(), LinearRegression()],
                         [None, MinMaxScaler()])
     X = np.array([[1, 1], [1, 2], [2, 2], [2, 3]])
     y = np.dot(X, np.array([1, 2])) + 3
     # X and y are linearly related, predictions will be almost perfect
     result = layer_model.fit(X, y)
     assert result.shape == (4,2)
     assert np.allclose(result[:,0], y)
     assert np.allclose(result[:,1], y)