Skip to content

Commit

Permalink
model_selection: move model_selection module to experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
JochenSiegWork committed Oct 9, 2024
1 parent 7b4ee34 commit 8a8aafa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
6 changes: 6 additions & 0 deletions molpipeline/experimental/model_selection/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""Model selection module."""

from molpipeline.experimental.model_selection.splitter import GroupShuffleSplit


__all__ = ["GroupShuffleSplit"]
File renamed without changes.
6 changes: 0 additions & 6 deletions molpipeline/model_selection/__init__.py

This file was deleted.

Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
from numpy.testing import assert_array_equal
from sklearn.model_selection import GroupShuffleSplit

from molpipeline import Pipeline
from molpipeline.any2mol import AutoToMol
from molpipeline.model_selection.splitter import GroupShuffleSplit
from molpipeline.mol2any.mol2bool import MolToBool
from molpipeline.experimental.model_selection.splitter import GroupShuffleSplit


class TestSampleBasedGroupShuffleSplit(unittest.TestCase):
Expand Down

0 comments on commit 8a8aafa

Please sign in to comment.