Rico Rodriguez
Rico Rodriguez
Hey there, I'll take a look at serializer again later this week, but from my side it looks like query parameters aren't implemented. From the spec: > Implementation specific query...
in particular with the latest version of indentLine at 15aceda and vimwiki at vimwiki/vimwiki@64c9f3d (master). The only solution that works is referenced [here](https://github.com/plasticboy/vim-markdown/issues/395#issuecomment-436719952). Setting `_setConceal` and/or `_fileTypeExclude` in vim dotfiles...
[Kubernetes 1.17 is out](https://kubernetes.io/blog/2019/12/09/kubernetes-1-17-release-announcement/) - could we update this repo please? I'd love to use the jsonschema defs in my CI pipeline without having to generate them myself. Thanks so...
Hi all, Highcharts (and ember-highcharts) has some neato built-in drilldown functionality (http://www.highcharts.com/demo/column-drilldown) Any chance y'all are gonna add this sort of thing in the near future?
Hi, please see this issue on the [jsonapi_requests](https://github.com/socialwifi/jsonapi-requests/issues/16) library. IMO, GET requests to `http://localhost:5000/api/v1/products` **and** `http://localhost:5000/api/v1/products/` (note the ending slash) should yield a 200 response given appropriate resources in the...
Whenever I try to tab complete to bring up resources (as opposed to the predefined parts of the sdk), I run into this sort of message: ``` ricorodriguez ~/.c/fish...
First of all - this library is a dream come true for a grad student. I've been using [Taichi](https://github.com/taichi-dev/taichi) for doing things on the GPU up to this point (which...
Here is my script: ```python import torch import torch import transformers import coremltools as ct import numpy as np print( "Versions:\n" f"torch: {torch.__version__}\n" f"transformers: {transformers.__version__}\n" f"coremltools: {ct.__version__}\n" f"numpy: {np.__version__}" )...
Hi, Let's say I create a StructField like so: ```python import taichi as ti import torch ti.init(arch=ti.gpu) @ti.dataclass class Sphere: center: ti.math.vec3 radius: float sphere_field = Sphere.field(shape=(20, 20), name="") sphere_field.from_torch({"center":...
**Describe the bug** The smallest subnormal of the `numpy.float32` dtype is set to zero after `ti.init`, causing computations to fail completely. Oddly, the warning disappears and the correct subnormal of...