PySR / pysr /__init__.py
MilesCranmer's picture
Move all deprecated functions to deprecated.py
0b9e421
raw
history blame
575 Bytes
from . import sklearn_monkeypatch
from .deprecated import best, best_callable, best_row, best_tex, pysr
from .export_jax import sympy2jax
from .export_torch import sympy2torch
from .feynman_problems import FeynmanProblem, Problem
from .julia_helpers import install
from .sr import PySRRegressor
from .version import __version__
__all__ = [
"sklearn_monkeypatch",
"sympy2jax",
"sympy2torch",
"FeynmanProblem",
"Problem",
"install",
"PySRRegressor",
"best",
"best_callable",
"best_row",
"best_tex",
"pysr",
"__version__",
]