Skip to content

Commit

Permalink
improving data preprocessing script
Browse files Browse the repository at this point in the history
  • Loading branch information
gushob21 committed Jan 24, 2025
1 parent a05979f commit f113362
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest
import pandas as pd
from datapreprocessing.datacleaner import DataPreprocessor
from ..src.datapreprocessing.datacleaner import DataPreprocessor

class TestDataCleaner(unittest.TestCase):

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
import pandas as pd
from unittest.mock import patch, Mock
from datapreprocessing.dataloader import DataLoader
from ..src.datapreprocessing.dataloader import DataLoader

class TestDataLoader(unittest.TestCase):

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest
import pandas as pd
from datapreprocessing.dataprep import DataPrep
from ..src.datapreprocessing.dataprep import DataPrep

class TestDataPrep(unittest.TestCase):

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
import pandas as pd
from unittest.mock import patch, Mock
from datapreprocessing.ray_utils import RayUtils
from ..src.datapreprocessing.ray_utils import RayUtils

class TestRayUtils(unittest.TestCase):

Expand Down

0 comments on commit f113362

Please sign in to comment.