Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ All of the ensuing steps should work out of the box after this point.

Assuming you have PyTorch installed, you can install AION trivially with:
```bash
pip install aion
pip install polymathic-aion
```

Then you can load the pretrained model and start analyzing astronomical data:
Expand Down
41 changes: 40 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,39 @@ build-backend = "setuptools.build_meta"
[project]
name = "polymathic-aion"
dynamic = ["version"]
description = "AstronomIcal Omnimodal Network"
description = "AstronomIcal Omnimodal Network - Polymathic's Large Omnimodal Model for Astronomy"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Polymathic AI", email = "[email protected]"},
]
maintainers = [
{name = "Polymathic AI", email = "[email protected]"},
]
keywords = [
"astronomy",
"astrophysics",
"machine learning",
"transformer",
"multimodal",
"deep learning",
"scientific computing",
"AI",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"einops>=0.7.0",
"huggingface_hub>=0.24.7",
Expand All @@ -16,6 +47,14 @@ dependencies = [
"tokenizers>=0.15.2",
]

[project.urls]
Homepage = "https://polymathic-ai.org/"
Documentation = "https://polymathic-ai.github.io/AION/"
Repository = "https://github.com/PolymathicAI/AION"
"Bug Tracker" = "https://github.com/PolymathicAI/AION/issues"
"Discussion" = "https://github.com/PolymathicAI/AION/discussions"
"Hugging Face" = "https://huggingface.co/polymathic-ai/aion-base"

[project.optional-dependencies]
torch = [
"torch>=2.4.0",
Expand Down
Loading