Justin Le

Results 11 comments of Justin Le

I've made some stylistic adjustments re: imports, and added `bifunctor` for `FreeF`. I've held back from changing `Free f` to be `Mu (FreeF f a)`, since we can't actually implement...

No worries :) Don't mind a ping too much. I have been meaning to clean up my notifications these days, and I've lost a few of the ones I have...

Thanks! As of the recent version 0.2, it should be able to used with accelerate, provided the types all have a `Backprop` instance. I'm currently working on an adapter now...

One approach might be to give `Acc` a backprop instance, like ``` instance Backprop (Acc a) where zero :: Acc a -> Acc a one :: Acc a -> Acc...

@deepfire ah yeah, you don't really ever "modify" a `Config` explicitly; you can just add more and more files to its dependencies and potentially modify the contents of those files,...

Not sure if it is relevant, but in case it is helpful, just leaving as a note here my [backprop](http://hackage.haskell.org/package/backprop) library. It's a re-tooling of the *ad* API to allow...

Going off of @leonschoorl's suggestions, if you are using stack, you can add this to your stack.yaml for a temporary workaround: ``` build: haddock-arguments: haddock-args: - --optghc=-fdefer-type-errors ```

Ah i just noticed this is already addressed by #75!