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)...
The [file type list](https://github.com/xetdata/xet-core/blob/main/rust/libmagic/src/file_types.rs) introduced in #58 is incomplete and may be out of date. We should do some manual effort to update it based on the data in https://en.wikipedia.org/wiki/List_of_filename_extensions_(A–E)#A...
We no longer use libmagic as of #58. The existing directory/file/function structure referencing libmagic should be renamed to something generic like "file_type". Note that some things need to stay "libmagic"...