skit-lean 1.0.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.
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: skit-lean
3
+ Version: 1.0.0
4
+ Summary: A library to list and display DL experiments from DL_Experiments.ipynb
5
+ Author: Anonymous
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.6
11
+ Description-Content-Type: text/markdown
12
+
13
+ # skit-lean
14
+
15
+ A simple library to list and perform deep learning experiments extracted from `DL_Experiments.ipynb`.
16
+
17
+ ## Installation
18
+
19
+ ```bash
20
+ pip install skit-lean
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ ```python
26
+ from skit_lean import list, perform
27
+
28
+ # List all available experiments
29
+ list()
30
+
31
+ # View the code for a specific experiment (e.g., experiment 1)
32
+ perform(1)
33
+ ```
@@ -0,0 +1,21 @@
1
+ # skit-lean
2
+
3
+ A simple library to list and perform deep learning experiments extracted from `DL_Experiments.ipynb`.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install skit-lean
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ from skit_lean import list, perform
15
+
16
+ # List all available experiments
17
+ list()
18
+
19
+ # View the code for a specific experiment (e.g., experiment 1)
20
+ perform(1)
21
+ ```
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["setuptools>=64", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "skit-lean"
7
+ version = "1.0.0"
8
+ description = "A library to list and display DL experiments from DL_Experiments.ipynb"
9
+ readme = "README.md"
10
+ requires-python = ">=3.6"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "Anonymous"},
14
+ ]
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
+ ]
20
+
21
+ [tool.setuptools.package-data]
22
+ skit_lean = ["*.ipynb"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+