Skip to content

Commit

Permalink
Init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleshot committed Aug 20, 2024
1 parent f761e91 commit 1741ae9
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
import numpy as np

def feature_scaling(data: np.ndarray) -> (np.ndarray, np.ndarray):
# Your code here
return standardized_data, normalized_data

data = np.array([[1, 2], [3, 4], [5, 6]])
print(feature_scaling(data=data))

0 comments on commit 1741ae9

Please sign in to comment.