simona-rc commited on
Commit
3e6e3a3
1 Parent(s): 952dbc1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +75 -4
README.md CHANGED
@@ -1,8 +1,79 @@
1
  ---
2
  tags:
3
- - model_hub_mixin
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  ---
5
 
6
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
7
- - Library: [More Information Needed]
8
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  tags:
3
+ - drug-discovery
4
+ - ibm
5
+ - mammal
6
+ - pytorch
7
+ - small molecules drugs
8
+ - smiles
9
+ - MoleculeNet
10
+ - toxicity
11
+ - safetensors
12
+ - biomed-multi-alignment
13
+ license: apache-2.0
14
+ library_name: biomed-multi-alignment
15
+ base_model:
16
+ - ibm/biomed.omics.bl.sm.ma-ted-458m
17
  ---
18
 
19
+ Drugs must satisfy stringent criteria for both efficacy and safety. This model predicts the likelihood of failure in clinical toxicity trials
20
+ for small-molecule drugs, represented using SMILES (Simplified Molecular Input Line Entry System) strings. It is a fine-tuned version of the
21
+ IBM biomedical foundation model, ibm/biomed.omics.bl.sm.ma-ted-458m [1], trained on over 2 billion biological samples spanning multiple modalities,
22
+ including proteins, small molecules, and single-cell gene expression data.
23
+
24
+ The fine-tuning was performed using the MoleculeNet Clintox dataset [2]. For benchmarking, we employed predefined training, validation, and testing splits
25
+ provided by MolFormer [3], sourced from the dataset referenced in [4].
26
+
27
+ - [1] https://huggingface.co/ibm/biomed.omics.bl.sm.ma-ted-458m
28
+ - [2] Zhenqin Wu et al. “MoleculeNet: a benchmark for molecular machine learning”.
29
+ In: Chemical science 9.2 (2018), pp. 513–530.
30
+ - [3] Jerret Ross et al. “Large-scale chemical language representations capture molecular
31
+ structure and properties”. In: Nature Machine Intelligence 4.12 (2022),
32
+ pp. 1256–1264.
33
+ - [4] https://github.com/IBM/molformer/tree/main/data that points to https://ibm.ent.box.com/v/MoLFormer-data (file: finetune datasets.zip).
34
+
35
+ ## Model Summary
36
+
37
+ - **Developers:** IBM Research
38
+ - **GitHub Repository:** https://github.com/BiomedSciAI/biomed-multi-alignment
39
+ - **Paper:** https://arxiv.org/abs/2410.22367
40
+ - **Release Date**: Dec 4th, 2024
41
+ - **License:** [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0).
42
+
43
+ ## Usage
44
+
45
+ Using `biomed.omics.bl.sm.ma-ted-458m.moleculenet_clintox_tox` requires installing https://github.com/BiomedSciAI/biomed-multi-alignment
46
+
47
+ ```
48
+ pip install git+https://github.com/BiomedSciAI/biomed-multi-alignment.git
49
+ ```
50
+
51
+ A simple example for using `ibm/omics.bl.sm.ma-ted-458m.moleculenet_clintox_tox`:
52
+
53
+ ```
54
+ from mammal.examples.molnet.molnet_infer import load_model, task_infer
55
+
56
+ smiles_seq = "C(Cl)Cl"
57
+
58
+ task_dict = load_model(task_name="TOXICITY", device="cpu")
59
+ result = task_infer(task_dict=task_dict, smiles_seq=smiles_seq)
60
+ print(f"The prediction for {smiles_seq=} is {result}")
61
+ ```
62
+
63
+ See our detailed example at: on `https://github.com/BiomedSciAI/biomed-multi-alignment`
64
+
65
+
66
+ ## Citation
67
+
68
+ If you found our work useful, please consider giving a star to the repo and cite our paper:
69
+ ```
70
+ @misc{shoshan2024mammalmolecularaligned,
71
+ title={MAMMAL -- Molecular Aligned Multi-Modal Architecture and Language},
72
+ author={Yoel Shoshan and Moshiko Raboh and Michal Ozery-Flato and Vadim Ratner and Alex Golts and Jeffrey K. Weber and Ella Barkan and Simona Rabinovici-Cohen and Sagi Polaczek and Ido Amos and Ben Shapira and Liam Hazan and Matan Ninio and Sivan Ravid and Michael M. Danziger and Joseph A. Morrone and Parthasarathy Suryanarayanan and Michal Rosen-Zvi and Efrat Hexter},
73
+ year={2024},
74
+ eprint={2410.22367},
75
+ archivePrefix={arXiv},
76
+ primaryClass={q-bio.QM},
77
+ url={https://arxiv.org/abs/2410.22367},
78
+ }
79
+ ```