-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also fixes the build.
- Loading branch information
Showing
6 changed files
with
38 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import cheminfo from "eslint-config-cheminfo/base"; | ||
import globals from "globals"; | ||
|
||
export default [ | ||
...cheminfo, | ||
{ | ||
languageOptions: { | ||
globals: { ...globals.jest }, | ||
}, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
import PotentialRegression from "./regression/potential-regression"; | ||
import { PotentialRegression } from "./regression/potential-regression"; | ||
|
||
export { | ||
SimpleLinearRegression, | ||
SimpleLinearRegression as SLR, | ||
} from "ml-regression-simple-linear"; | ||
export { PolynomialRegression } from "ml-regression-polynomial"; | ||
export { default as ExponentialRegression } from "ml-regression-exponential"; | ||
export { default as PowerRegression } from "ml-regression-power"; | ||
export { ExponentialRegression } from "ml-regression-exponential"; | ||
export { PowerRegression } from "ml-regression-power"; | ||
export { default as MultivariateLinearRegression } from "ml-regression-multivariate-linear"; | ||
const NLR = { | ||
PotentialRegression, | ||
}; | ||
export { NLR, NLR as NonLinearRegression }; | ||
|
||
export { | ||
default as KernelRidgeRegression, | ||
default as KRR, | ||
KernelRidgeRegression, | ||
KernelRidgeRegression as KRR, | ||
} from "./regression/kernel-ridge-regression"; | ||
export { default as PolinomialFitting2D } from "./regression/poly-fit-regression2d"; | ||
export { PolynomialFitRegression2D as PolinomialFitting2D } from "./regression/poly-fit-regression2d"; | ||
|
||
// robust regressions | ||
export { default as TheilSenRegression } from "ml-regression-theil-sen"; | ||
export { TheilSenRegression } from "ml-regression-theil-sen"; | ||
export { RobustPolynomialRegression } from "ml-regression-robust-polynomial"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters