Skip to content

Commit

Permalink
Format using black
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleshot committed Aug 20, 2024
1 parent 9c4c664 commit fddf9e0
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ def feature_scaling(data: np.ndarray) -> (np.ndarray, np.ndarray): # type: igno
]
c = 0
print(np.std(data[0]))
print(np.mean(data))
print(np.std(data))
for i in data:
std_dev = np.std(i)
mu = np.mean(i)
Expand Down

0 comments on commit fddf9e0

Please sign in to comment.