Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
658265c
[ADD] masked learning algorithms
jcapels Jan 21, 2025
2892313
[FIX] saving transformer models and ATMOL with lightning
jcapels Feb 6, 2025
3774880
[FIX] layers and metrics pass
jcapels Feb 6, 2025
8d37fe6
[FIX] requirements and way of loading and exporting models
jcapels Feb 7, 2025
43ea837
[FIX] transformer_models
jcapels Feb 7, 2025
ecce436
[FIX] transformer models
jcapels Mar 6, 2025
4d8bc3b
[FIX] rdkit 3d structure generation + [FIX] transformer models
jcapels Apr 29, 2025
6bd141d
Merge remote-tracking branch 'origin' into masked_learning
jcapels May 14, 2025
4864ece
[ADD] np bert tokenizer + [FIX] llm as featurizer
jcapels May 22, 2025
5cf4ab5
[FIX] requirements list
jcapels May 22, 2025
eb0fbc6
[SKIP] test for llms
jcapels May 22, 2025
14c9c86
Merge remote-tracking branch 'origin' into masked_learning
jcapels May 22, 2025
1d1853f
[FIX] requirements to include new version of torch
jcapels May 23, 2025
fb12002
[FIX] LLMs feature names
jcapels May 23, 2025
33718b1
[FIX] neural npfp import and dependencies + [BUMP] new version
jcapels Jun 11, 2025
9363de1
[BUMP] version
jcapels Jun 11, 2025
21ca69d
[FIX] catch all errors on 3d generation
jcapels Jun 18, 2025
45dc771
[FIX] 3d generation + vocab
jcapels Jul 2, 2025
309c74d
Merge remote-tracking branch 'origin' into masked_learning
jcapels Jul 2, 2025
4b4ac79
Merge remote-tracking branch 'origin/masked_learning' into masked_lea…
jcapels Jul 2, 2025
33e613b
spaces in utils
jcapels Jul 4, 2025
f45f447
Merge remote-tracking branch 'origin' into masked_learning
jcapels Sep 1, 2025
50dd7af
Merge remote-tracking branch 'origin/masked_learning' into masked_lea…
jcapels Sep 1, 2025
0fde5a2
[FIX] multi label binarize
jcapels Sep 1, 2025
27bf90b
[FIX] notebooks
jcapels Sep 8, 2025
47c2a35
Merge remote-tracking branch 'origin' into masked_learning
jcapels Oct 9, 2025
bbdbe98
[FIX] deepchem models multitask predictions for 1 molecule
jcapels Oct 10, 2025
2aa380a
[FIX] mol2vec dependency
jcapels Mar 20, 2026
b38f667
[FIX] graph part + requirements
jcapels Mar 20, 2026
9d9d503
[SKIP] dependencies
jcapels Mar 20, 2026
86de65c
[FIX] github action
jcapels Mar 20, 2026
758218d
[FIX] masked learning test
jcapels Mar 20, 2026
f5f66b7
[FIX] mixed featurizer tests
jcapels Mar 20, 2026
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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- ubuntu-latest
- windows-latest
python-version:
- 3.9
- '3.10'

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ __pycache__/

examples/data/

lightning_logs/
checkpoints/

# C extensions
*.so

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ More detailed and comprehensive documentation in [DeepMol readthedocs](https://d
- [Regression](https://colab.research.google.com/drive/1vE-Q01orImdD4qFTo20MAT4E4kP2hsYF?usp=sharing)
- [Multi-task/multi-label](https://colab.research.google.com/drive/18z2vN6zLNSVJ3qgskKZTYxA_t9UNS1b8?usp=sharing)

### DeepMol models

All deployed DeepMol models are available in [here](https://github.com/BioSystemsUM/deepmol_case_studies). An example to obtain predictions with deployed models is available in [here](https://colab.research.google.com/drive/1_I-f7jQPx2AR76h431x4AdV5Peybs5LO?usp=sharing). Installation of the models' API can be done via pip as in [here](https://pypi.org/project/deepmol-models/).

### Table of contents:

- [Installation](#installation)
Expand Down
4 changes: 2 additions & 2 deletions examples/notebooks/featurization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2344,7 +2344,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"display_name": "deepmol",
"language": "python",
"name": "python3"
},
Expand All @@ -2358,7 +2358,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.14"
"version": "3.11.13"
}
},
"nbformat": 4,
Expand Down
1,245 changes: 1,245 additions & 0 deletions examples/notebooks/molecular_standardizers copy.ipynb

Large diffs are not rendered by default.

2,566 changes: 2,469 additions & 97 deletions examples/notebooks/molecular_standardizers.ipynb

Large diffs are not rendered by default.

Loading
Loading