triggerflow 0.1.5__tar.gz → 0.1.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: triggerflow
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: Utilities for ML models targeting hardware triggers
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "triggerflow"
7
- version = "0.1.5"
7
+ version = "0.1.6"
8
8
  description = "Utilities for ML models targeting hardware triggers"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -5,7 +5,7 @@ import tempfile
5
5
  from pathlib import Path
6
6
  from typing import Dict, Any
7
7
  from mlflow.tracking import MlflowClient
8
- from core import TriggerModel
8
+ from .core import TriggerModel
9
9
 
10
10
 
11
11
  class MLflowWrapper(mlflow.pyfunc.PythonModel):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: triggerflow
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: Utilities for ML models targeting hardware triggers
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -1,5 +1,6 @@
1
1
  import pytest
2
2
  from triggerflow.core import TriggerModel
3
+ from triggerflow.mlflow_wrapper import log_model
3
4
  import numpy as np
4
5
  from qkeras.qlayers import QDense, QActivation
5
6
  from qkeras.quantizers import quantized_bits
File without changes
File without changes