-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 791 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 791 Bytes
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
[tool.poetry]
name = "sophia-optimizer"
version = "0.2.5"
description = "Sophia Optimizer ULTRA FAST"
authors = ["Kye Gomez <kye@apac.ai>"]
license = "APACHE"
readme = "README.md"
homepage = "https://github.com/kyegomez/Sophia"
keywords = ["artificial intelligence", "deep learning", "optimizers", "Prompt Engineering"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
]
packages = [{ include = "sophia" }]
[tool.poetry.dependencies]
python = "^3.6"
torch = "*"
datasets = "*"
transformers = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"