File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -309,13 +309,13 @@ zScore :: Expr Double -> Expr Double
309309zScore c = (c - mean c) / stddev c
310310
311311pow :: (Columnable a , Num a ) => Expr a -> Int -> Expr a
312- pow expr i = lift2Decorated (^) " max " (Just " ^" ) True 8 expr (Lit i)
312+ pow expr i = lift2Decorated (^) " pow " (Just " ^" ) True 8 expr (Lit i)
313313
314314relu :: (Columnable a , Num a , Ord a ) => Expr a -> Expr a
315315relu = liftDecorated (Prelude. max 0 ) " relu" Nothing
316316
317317min :: (Columnable a , Ord a ) => Expr a -> Expr a -> Expr a
318- min = lift2Decorated Prelude. min " max " Nothing True 1
318+ min = lift2Decorated Prelude. min " min " Nothing True 1
319319
320320max :: (Columnable a , Ord a ) => Expr a -> Expr a -> Expr a
321321max = lift2Decorated Prelude. max " max" Nothing True 1
You can’t perform that action at this time.
0 commit comments