Carlos Martin

Results 43 comments of Carlos Martin

@kolayne @casperdcl Came across this from #1000. Any update on this?

Can the top-level README example be updated (or perhaps moved entirely to the coding directory, with a link to the file), since the `main.py` example in the `coding` directory lacks...

More concisely: Let `zero` be a value of float0 type and `any` be a value of any type. Then the following (and perhaps more) ought to hold: * `zero +...

@lanctot A tracer value is JAX's internal representation of intermediate values during transformations ([jit](https://jax.readthedocs.io/en/latest/_autosummary/jax.jit.html), [vmap](https://jax.readthedocs.io/en/latest/_autosummary/jax.vmap.html), etc.). It keeps track of all operations (additions, multiplications, maximums, etc.) that created it from...

Related example: ```python3 import dataclasses import typing class Class: def __init__(self, x): self.x = x @dataclasses.dataclass class Dataclass: x: ... # none of these work: object, ..., typing.Any, None, str...

@elenakrittik Thanks. That approach works for this example, but has a few drawbacks: - It still seems to subvert the philosophy that type annotations should never be necessary. - It...

@brianwa84 Uninstalling tensorflow indeed reduced the time. With tensorflow: ``` python3 -c "import tensorflow_probability.substrates.jax" 5.85s user 1.28s system 90% cpu 7.858 total python3 -c "import tensorflow_probability.substrates.numpy" 5.16s user 0.94s system...

@lazka I think the most common use of `arc` is drawing a circle. It can be helpful to have defaults that match the most common use case. An alternative would...