mlw 0.0.1__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.
- mlw-0.0.1/PKG-INFO +23 -0
- mlw-0.0.1/README.md +7 -0
- mlw-0.0.1/mlw/__init__.py +3 -0
- mlw-0.0.1/pyproject.toml +23 -0
mlw-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mlw
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A grammar of machine learning. Split, fit, evaluate, assess.
|
|
5
|
+
Project-URL: Repository, https://github.com/epagogy/ml
|
|
6
|
+
Project-URL: Homepage, https://epagogy.ai
|
|
7
|
+
Author-email: Simon Roth <simon@epagogy.ai>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Keywords: classification,machine-learning,ml,regression,scikit-learn
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# mlw
|
|
18
|
+
|
|
19
|
+
A grammar of machine learning. Split, fit, evaluate, assess.
|
|
20
|
+
|
|
21
|
+
Python, R, and Julia. Same Rust engine, same result.
|
|
22
|
+
|
|
23
|
+
https://epagogy.ai
|
mlw-0.0.1/README.md
ADDED
mlw-0.0.1/pyproject.toml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mlw"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "A grammar of machine learning. Split, fit, evaluate, assess."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [{name = "Simon Roth", email = "simon@epagogy.ai"}]
|
|
13
|
+
keywords = ["machine-learning", "ml", "scikit-learn", "classification", "regression"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Repository = "https://github.com/epagogy/ml"
|
|
23
|
+
Homepage = "https://epagogy.ai"
|