Skip to content
Merged
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
98719d7
Add numpy 2.0 support
Jun 10, 2025
da684b8
Merge branch 'aws:master' into numpy-upgrade
rsareddy0329 Jun 11, 2025
4cd6946
Add numpy 2.0 support
Jun 11, 2025
2a33762
Add numpy 2.0 support
Jun 12, 2025
c80ad4b
Merge branch 'aws:master' into numpy-upgrade
rsareddy0329 Jun 12, 2025
572c1aa
Add numpy 2.0 support
Jun 12, 2025
23258ba
Merge branch 'aws:master' into numpy-upgrade
rsareddy0329 Jun 12, 2025
fac5a6a
Add numpy 2.0 support
Jun 12, 2025
5120db0
Merge branch 'master' into numpy-upgrade
sage-maker Jun 18, 2025
8de6099
Merge branch 'master' into numpy-upgrade
nargokul Aug 1, 2025
88406c4
Merge branch 'aws:master' into numpy-upgrade
rsareddy0329 Sep 10, 2025
410e6a2
Fix incompatible_dependecies test
Sep 11, 2025
ebf56b9
Fix incompatible_dependecies test
Sep 11, 2025
a19f57e
Fix incompatible_dependecies test
Sep 12, 2025
82c687f
Fix incompatible_dependecies test
Sep 12, 2025
5d26314
Fix incompatible_dependecies test
Sep 12, 2025
2271ba4
Merge branch 'aws:master' into numpy-upgrade
rsareddy0329 Sep 23, 2025
9f79273
Merge branch 'aws:master' into numpy-upgrade
rsareddy0329 Sep 28, 2025
afbf206
update tensorflow artifacts
Sep 28, 2025
cf1db86
update tensorflow artifacts
Sep 28, 2025
f85147c
update tensorflow artifacts
Sep 28, 2025
5b3766b
Merge branch 'aws:master' into numpy-upgrade
rsareddy0329 Oct 5, 2025
e4b80c1
testfile codestyle fixes
Oct 7, 2025
9884e7b
testfile codestyle fixes
Oct 7, 2025
ae1a67c
update SKLearn image URI config
Oct 7, 2025
a41acbe
Merge branch 'aws:master' into numpy-upgrade
rsareddy0329 Oct 7, 2025
7acb57e
update SKLearn image URI config
Oct 7, 2025
42387eb
docstyle fixes
Oct 7, 2025
3f837f0
docstyle fixes
Oct 7, 2025
fc64ae6
numpy fixes
Oct 8, 2025
2e88cd0
numpy fixes
Oct 8, 2025
7900cb1
numpy fixes
Oct 8, 2025
0102bca
numpy fixes
Oct 8, 2025
330fdb1
numpy fixes
Oct 8, 2025
a04689f
numpy fixes
Oct 8, 2025
5dedf88
numpy fixes
Oct 8, 2025
293448a
numpy fixes
Oct 8, 2025
07b62ce
numpy fix for slow test
Oct 9, 2025
d8546bc
numpy fix for slow test
Oct 9, 2025
8d71074
Merge branch 'aws:master' into numpy-upgrade
rsareddy0329 Oct 9, 2025
2b2c190
numpy fix for slow test
Oct 10, 2025
7daa34f
numpy fix for slow test
Oct 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1108,15 +1108,15 @@ def get_expected_dataframe():
expected_dataframe = pd.read_csv(os.path.join(_FEATURE_PROCESSOR_DIR, "car-data.csv"))
expected_dataframe["Model"].replace("^\d\d\d\d\s", "", regex=True, inplace=True) # noqa: W605
expected_dataframe["Mileage"].replace("(,)|(mi\.)", "", regex=True, inplace=True) # noqa: W605
expected_dataframe["Mileage"].replace("Not available", np.NaN, inplace=True)
expected_dataframe["Mileage"].replace("Not available", np.nan, inplace=True)
expected_dataframe["Price"].replace("\$", "", regex=True, inplace=True) # noqa: W605
expected_dataframe["Price"].replace(",", "", regex=True, inplace=True)
expected_dataframe["MSRP"].replace(
"(^MSRP\s\\$)|(,)", "", regex=True, inplace=True # noqa: W605
)
expected_dataframe["MSRP"].replace("Not specified", np.NaN, inplace=True)
expected_dataframe["MSRP"].replace("Not specified", np.nan, inplace=True)
expected_dataframe["MSRP"].replace(
"\\$\d+[a-zA-Z\s]+", np.NaN, regex=True, inplace=True # noqa: W605
"\\$\d+[a-zA-Z\s]+", np.nan, regex=True, inplace=True # noqa: W605
)
expected_dataframe["Mileage"] = expected_dataframe["Mileage"].astype(float)
expected_dataframe["Price"] = expected_dataframe["Price"].astype(float)
Expand Down