-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
72 lines (67 loc) · 1.69 KB
/
pyproject.toml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "synthid-text"
version = "0.2.1"
authors = [
{ name="DeepMind Technologies Limited" },
]
description = "SynthID Text: Identifying AI-generated text content"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
dependencies = [
"flax",
"immutabledict==4.2.0",
"jax[cuda]",
"jaxtyping",
"numpy==1.26.0",
"optax",
"scikit-learn",
"torch==2.4.0",
"tqdm",
"transformers==4.43.3",
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"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.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
keywords = [
"artificial intelligence",
"language models",
"machine learning",
"text generation",
"watermarking",
]
[project.urls]
"Homepage" = "https://deepmind.google/technologies/synthid/"
"Repository" = "https://github.com/google-deepmind/synthid-text"
"Bug Tracker" = "https://github.com/google-deepmind/synthid-text/issues"
"Demo" = "https://colab.research.google.com/github/google-deepmind/synthid-text/blob/main/notebooks/synthid_text_huggingface_integration.ipynb"
[project.optional-dependencies]
notebook = [
"datasets",
"huggingface_hub",
"ipywidgets",
"pandas",
"tensorflow",
]
notebook-local = [
"synthid-text[notebook]",
"notebook",
]
test = [
"absl-py",
"mock",
"pytest",
]