mllm-shap 0.1.0__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.
mllm_shap-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: mllm-shap
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Shap implementation for Multi Modal Large Language Models with audio and text on input.
|
|
5
|
+
Author: Paweł Pozorski, Jakub Muszyński
|
|
6
|
+
Author-email: Paweł Pozorski <pozorski.paul@gmail.com>, Jakub Muszyński <muszynski.jakub@gmail.com>
|
|
7
|
+
License: MIT License
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Intended Audience :: Information Technology
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Requires-Python: >=3.12, <3.13
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
File without changes
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "mllm-shap"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Shap implementation for Multi Modal Large Language Models with audio and text on input."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.12,<3.13"
|
|
7
|
+
homepage = "https://github.com/Pawlo77/MLLM-Shap.git"
|
|
8
|
+
repository = "https://github.com/Pawlo77/MLLM-Shap.git"
|
|
9
|
+
documentation = "https://pawlo77.github.io/MLLM-Shap/"
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Programming Language :: Python :: 3",
|
|
12
|
+
"Operating System :: OS Independent",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Intended Audience :: Information Technology",
|
|
15
|
+
"Intended Audience :: Science/Research",
|
|
16
|
+
]
|
|
17
|
+
license = {text = "MIT License"}
|
|
18
|
+
authors = [
|
|
19
|
+
{ name = "Paweł Pozorski", email = "pozorski.paul@gmail.com" },
|
|
20
|
+
{ name = "Jakub Muszyński", email = "muszynski.jakub@gmail.com" },
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[build-system]
|
|
24
|
+
requires = ["uv_build>=0.9.2,<0.10.0"]
|
|
25
|
+
build-backend = "uv_build"
|
|
26
|
+
|
|
27
|
+
[dependency-groups]
|
|
28
|
+
dev = [
|
|
29
|
+
"pydata-sphinx-theme>=0.16.1",
|
|
30
|
+
"sphinx>=8.2.3",
|
|
31
|
+
]
|
|
File without changes
|