modelkit icon indicating copy to clipboard operation
modelkit copied to clipboard

Toolkit for developing and maintaining ML models

Results 14 modelkit issues
Sort by recently updated
recently updated
newest added

The current code suffers from a method resolution order (MRO) issue. In the `Asset` class, the `__init__` method does not call `super().__init__()`, resulting in an incorrect MRO. This omission prevents...

discussion

After diving into the code, modelkit lists the following regex for asset names: ```python3 GENERIC_ASSET_NAME_RE = ( r"(([A-Z]:\\)|/)?[a-zA-Z0-9]([a-zA-Z0-9\-\_\.\/\\]*[a-zA-Z0-9])?" ) ``` However: 1. uploaded assets and sub-files are not checked against...

It would help reducing the number of dependencies

enhancement

Sometimes it makes sense to group helper utilities together in in the library search path. However, we don't always want these files to be loaded if for example the model...