Skip to content

Commit c03e20f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent aa09345 commit c03e20f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

fossil/DA_methods.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Adapted form PyDA project: https://github.com/Shady-Ahmed/PyDA
33
Reference: https://www.mdpi.com/2311-5521/5/4/225
44
"""
5+
56
import numpy as np
67
from numba import jit
78

notebooks/DA_methods.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Partly adapted form PyDA project: https://github.com/Shady-Ahmed/PyDA
33
Reference: https://www.mdpi.com/2311-5521/5/4/225
44
"""
5+
56
import numpy as np
67
from numba import njit
78

notebooks/rvm.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
calculation is conducted iteratively.
2727
2828
"""
29+
2930
import numpy as np
3031

3132
from scipy.optimize import minimize
@@ -36,7 +37,6 @@
3637

3738

3839
class BaseRVM(BaseEstimator):
39-
4040
"""Base Relevance Vector Machine class.
4141
4242
Implementation of Mike Tipping's Relevance Vector Machine using the
@@ -236,7 +236,6 @@ def fit(self, X, y, X_labels, standardise=False):
236236

237237

238238
class RVR(BaseRVM, RegressorMixin):
239-
240239
"""Relevance Vector Machine Regression.
241240
242241
Implementation of Mike Tipping's Relevance Vector Machine for regression

0 commit comments

Comments
 (0)