This commit is contained in:
2025-10-17 16:08:14 +08:00
parent e51f49e87a
commit f30f9ccd3d
4 changed files with 3751 additions and 0 deletions

2
.gitattributes vendored Normal file
View File

@@ -0,0 +1,2 @@
# SCM syntax highlighting & preventing 3-way merges
pixi.lock merge=binary linguist-language=YAML linguist-generated=true

3708
pixi.lock generated Normal file

File diff suppressed because it is too large Load Diff

29
pixi.toml Normal file
View File

@@ -0,0 +1,29 @@
[workspace]
authors = ["hotwa <pylyzeng@gmail.com>"]
channels = ["conda-forge", "pytorch", "nvidia"]
name = "SIME"
platforms = ["linux-64"]
version = "0.1.0"
[tasks]
[dependencies]
python = "3.12.*"
cuda-toolkit = { version = "12.8.*", channel = "nvidia" }
pandas = { version = ">=2.3.3,<3", channel = "conda-forge" }
xgboost = { version = ">=3.0.5,<4", channel = "conda-forge" }
pyyaml = { version = ">=6.0.3,<7", channel = "conda-forge" }
pip = { version = ">=25.2,<26", channel = "conda-forge" }
click = { version = ">=8.3.0,<9", channel = "conda-forge" }
openpyxl = { version = ">=3.1.5,<4", channel = "conda-forge" }
ipython = { version = ">=9.6.0,<10", channel = "conda-forge" }
[pypi-options]
extra-index-urls = ["https://download.pytorch.org/whl/cu128"]
[pypi-dependencies]
torch = "==2.8.0+cu128"
torchvision = "==0.23.0+cu128"
torchaudio = "==2.8.0+cu128"
torch-geometric = ">=2.5.0,<3"
rdkit = "*"

12
requirements-mole.txt Normal file
View File

@@ -0,0 +1,12 @@
torch>=1.9.0
torch-geometric>=2.0.0
pandas>=1.3.0
numpy>=1.20.0
scipy>=1.7.0
scikit-learn>=1.0.0
xgboost>=1.5.0
rdkit>=2022.03.1
openpyxl>=3.0.0
pyyaml>=5.4.0
click>=8.0.0