Zach Nation
Zach Nation
The return value of `evaluate()` includes confusion matrix data as SFrame. However, there is currently no easy way to visualize this data as a confusion matrix. (The schema is somewhat...
It should be possible to publish a minimal Docker image, consisting of Turi Create + its dependencies, for users to be able to more easily try out Turi Create (without...
Attempting to sync from remote to local gives the error: ``` (venv) ➜ xet sync xet://XetHub/Falcon-RefinedWeb/main Falcon-RefinedWeb-download Checking sync Traceback (most recent call last): File "/usr/home/zach/venv/bin/xet", line 8, in sys.exit(cli())...
There are no releases [here](https://github.com/xetdata/pyxet/releases). Reasons to put them here in addition to publishing wheels to PyPI: * Easy to find release notes for each version * Automatically creates tags...
Repro steps: ```python import coremltools import numpy as np spec = coremltools.proto.Model_pb2.Model() spec.specificationVersion = 1 spec.identity.MergeFromString(b'') input = spec.description.input.add() input.type.multiArrayType.shape.append(3) input.type.multiArrayType.dataType = coremltools.proto.FeatureTypes_pb2.ArrayFeatureType.INT32 input.name = "input" output = spec.description.output.add() output.type.multiArrayType.shape.append(3)...