2025-10-01 07:18:18 -07:00
|
|
|
[project]
|
|
|
|
|
name = "dreamer4"
|
2025-12-03 06:40:19 -08:00
|
|
|
version = "0.1.21"
|
2025-10-01 07:18:18 -07:00
|
|
|
description = "Dreamer 4"
|
|
|
|
|
authors = [
|
|
|
|
|
{ name = "Phil Wang", email = "lucidrains@gmail.com" }
|
|
|
|
|
]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">= 3.9"
|
|
|
|
|
license = { file = "LICENSE" }
|
|
|
|
|
keywords = [
|
|
|
|
|
'artificial intelligence',
|
|
|
|
|
'deep learning',
|
|
|
|
|
'transformer',
|
|
|
|
|
'attention mechanism',
|
|
|
|
|
'model-based reinforcement learning',
|
|
|
|
|
'world models'
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
classifiers=[
|
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
|
'Programming Language :: Python :: 3.9',
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
dependencies = [
|
2025-10-01 10:25:56 -07:00
|
|
|
"accelerate",
|
2025-10-12 09:35:06 -07:00
|
|
|
"adam-atan2-pytorch>=0.2.2",
|
2025-10-03 10:08:05 -07:00
|
|
|
"assoc-scan",
|
2025-10-01 09:40:24 -07:00
|
|
|
"einx>=0.3.0",
|
2025-10-01 07:18:18 -07:00
|
|
|
"einops>=0.8.1",
|
2025-10-21 09:03:20 -07:00
|
|
|
"ema-pytorch",
|
2025-10-03 08:07:57 -07:00
|
|
|
"hl-gauss-pytorch",
|
2025-10-11 06:52:57 -07:00
|
|
|
"hyper-connections>=0.2.1",
|
2025-10-02 07:39:34 -07:00
|
|
|
"torch>=2.4",
|
2025-10-04 07:47:23 -07:00
|
|
|
"torchvision",
|
2025-11-09 09:47:33 -08:00
|
|
|
"x-mlps-pytorch>=0.0.29",
|
2025-11-09 10:11:56 -08:00
|
|
|
"vit-pytorch>=1.15.3"
|
2025-10-01 07:18:18 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "https://pypi.org/project/dreamer4/"
|
|
|
|
|
Repository = "https://github.com/lucidrains/dreamer4"
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
examples = []
|
|
|
|
|
test = [
|
2025-10-08 06:56:03 -07:00
|
|
|
"pytest",
|
|
|
|
|
"pytest-shard"
|
2025-10-01 07:18:18 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
pythonpath = [
|
|
|
|
|
"."
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.rye]
|
|
|
|
|
managed = true
|
|
|
|
|
dev-dependencies = []
|
|
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["dreamer4"]
|