outlines 0.1.dev0__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.
- outlines-0.1.dev0/PKG-INFO +14 -0
- outlines-0.1.dev0/outlines/__init__.py +0 -0
- outlines-0.1.dev0/outlines/_version.py +4 -0
- outlines-0.1.dev0/outlines.egg-info/PKG-INFO +14 -0
- outlines-0.1.dev0/outlines.egg-info/SOURCES.txt +7 -0
- outlines-0.1.dev0/outlines.egg-info/dependency_links.txt +1 -0
- outlines-0.1.dev0/outlines.egg-info/top_level.txt +1 -0
- outlines-0.1.dev0/pyproject.toml +31 -0
- outlines-0.1.dev0/setup.cfg +4 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: outlines
|
|
3
|
+
Version: 0.1.dev0
|
|
4
|
+
Summary: Probabilistic Generative Model Programming
|
|
5
|
+
Author-email: Normal Computing <support@normalcomputing.com>
|
|
6
|
+
Keywords: normal computing,machine learning,deep learning,language models,diffusion models
|
|
7
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Intended Audience :: Information Technology
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
14
|
+
Requires-Python: >=3.7
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: outlines
|
|
3
|
+
Version: 0.1.dev0
|
|
4
|
+
Summary: Probabilistic Generative Model Programming
|
|
5
|
+
Author-email: Normal Computing <support@normalcomputing.com>
|
|
6
|
+
Keywords: normal computing,machine learning,deep learning,language models,diffusion models
|
|
7
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Intended Audience :: Information Technology
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
14
|
+
Requires-Python: >=3.7
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
outlines
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "outlines"
|
|
7
|
+
authors= [{name = "Normal Computing", email = "support@normalcomputing.com"}]
|
|
8
|
+
description = "Probabilistic Generative Model Programming"
|
|
9
|
+
requires-python = ">=3.7"
|
|
10
|
+
keywords=[
|
|
11
|
+
"normal computing",
|
|
12
|
+
"machine learning",
|
|
13
|
+
"deep learning",
|
|
14
|
+
"language models",
|
|
15
|
+
"diffusion models",
|
|
16
|
+
]
|
|
17
|
+
classifiers = [
|
|
18
|
+
"Development Status :: 5 - Production/Stable",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"Intended Audience :: Information Technology",
|
|
21
|
+
"Intended Audience :: Science/Research",
|
|
22
|
+
"Operating System :: OS Independent",
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
25
|
+
]
|
|
26
|
+
dependencies = [
|
|
27
|
+
]
|
|
28
|
+
dynamic = ["version"]
|
|
29
|
+
|
|
30
|
+
[tool.setuptools_scm]
|
|
31
|
+
write_to = "outlines/_version.py"
|