diffai-python 0.4.1__cp311-cp311-win_amd64.whl
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.
|
Binary file
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: diffai-python
|
|
3
|
+
Version: 0.4.1
|
|
4
|
+
Classifier: Development Status :: 4 - Beta
|
|
5
|
+
Classifier: Intended Audience :: Developers
|
|
6
|
+
Classifier: Intended Audience :: Science/Research
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Programming Language :: Rust
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
|
+
Classifier: Topic :: Utilities
|
|
19
|
+
Requires-Dist: pytest>=6.0 ; extra == 'dev'
|
|
20
|
+
Requires-Dist: pytest-cov ; extra == 'dev'
|
|
21
|
+
Requires-Dist: black ; extra == 'dev'
|
|
22
|
+
Requires-Dist: isort ; extra == 'dev'
|
|
23
|
+
Requires-Dist: mypy ; extra == 'dev'
|
|
24
|
+
Requires-Dist: ruff ; extra == 'dev'
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Summary: Python bindings for diffai - AI/ML model diff tool for PyTorch, Safetensors, NumPy, MATLAB tensor comparison. Powered by Rust for blazing fast performance.
|
|
27
|
+
Keywords: diff,ai,ml,pytorch,safetensors,numpy,matlab,tensor,machine-learning,deep-learning,model-comparison,pyo3,rust
|
|
28
|
+
Author: kako-jun
|
|
29
|
+
License-Expression: MIT
|
|
30
|
+
Requires-Python: >=3.8
|
|
31
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
32
|
+
Project-URL: Homepage, https://github.com/kako-jun/diffai-python
|
|
33
|
+
Project-URL: Repository, https://github.com/kako-jun/diffai-python
|
|
34
|
+
Project-URL: Issues, https://github.com/kako-jun/diffai-python/issues
|
|
35
|
+
Project-URL: Documentation, https://github.com/kako-jun/diffai-python#readme
|
|
36
|
+
|
|
37
|
+
# diffai-python
|
|
38
|
+
|
|
39
|
+
Python bindings for diffai - AI/ML model diff tool for PyTorch, Safetensors, NumPy, and MATLAB tensor comparison.
|
|
40
|
+
|
|
41
|
+
## Installation
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
pip install diffai-python
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Usage
|
|
48
|
+
|
|
49
|
+
```python
|
|
50
|
+
import diffai_python
|
|
51
|
+
|
|
52
|
+
# Compare two model configurations
|
|
53
|
+
old = {"layers": [{"weight": [1.0, 2.0, 3.0]}]}
|
|
54
|
+
new = {"layers": [{"weight": [1.0, 2.0, 4.0]}]}
|
|
55
|
+
results = diffai_python.diff(old, new)
|
|
56
|
+
|
|
57
|
+
# Compare files
|
|
58
|
+
results = diffai_python.diff_paths("model_v1.pt", "model_v2.pt")
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## License
|
|
62
|
+
|
|
63
|
+
MIT
|
|
64
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
diffai_python-0.4.1.dist-info/METADATA,sha256=IXwTpe-mkhG7ZBZNG8pvevd_Ur--eXD2LhyJx2cstH8,2297
|
|
2
|
+
diffai_python-0.4.1.dist-info/WHEEL,sha256=_VPPvUclC3MhfkWOFBHNyWiipF8PVIsIyXlb9TrMHeA,97
|
|
3
|
+
diffai_python/__init__.py,sha256=wU6exiIp5froVl6RRO4me-UYxn20JRGEKgVHQe3kgag,135
|
|
4
|
+
diffai_python/diffai_python.cp311-win_amd64.pyd,sha256=-3S3yxiGj8P9susg7SRJpI1HJ3R8IEulenrmNpkRuTQ,2924032
|
|
5
|
+
diffai_python-0.4.1.dist-info/RECORD,,
|