-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (46 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
48 lines (46 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "model-alignment"
version = "0.3"
authors = [
{ name="Google, LLC" }
]
description = "Model Alignment: Aligning prompts to human preferences through natural language feedback"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
dependencies = [
"google-genai",
"jinja2",
"keras>=3.0.0",
"keras-nlp",
"numpy",
"pandas",
"scikit-learn",
"tqdm"
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = [
"explainable",
"explainable artifical intelligence",
"XAI",
"natural language processing",
"artifical intelligence",
"machine learning",
"deep learning",
]
[project.urls]
"Homepage" = "https://github.com/pair-code/model-alignment"
"Repository" = "https://github.com/PAIR-code/model-alignment"
"Bug Tracker" = "https://github.com/PAIR-code/model-alignment/issues"