Skip to main content

A python library for extracting molecular SMILES embeddings from language models pre-trained with various objectives and/or architectures.

Project description

SMILES Featurizers

Extract SMILES embeddings from language models pre-trained with various objectives architectures.

Getting Started

pip install smiles-featurizers

Model List

Our released models are listed as following. You can import these models by using the smiles-featurizers package or using HuggingFace's Transformers.

Model Type
shahrukhx01/smole-bert Bert
shahrukhx01/smole-bert-mtr Bert
shahrukhx01/smole-bart Bart
shahrukhx01/muv2x-simcse-smole-bart Simcse
shahrukhx01/siamese-smole-bert-muv-1x SentenceTransformer

Use SMILES Featurizers

Bert Featurizer

from smiles_featurizers import BertFeaturizer

featurizer = BertFeaturizer("shahrukhx01/smole-bert")
embeddings = featurizer.embed(["CCC(C)(C)Br"])

Bart (Encoder) Featurizer

from smiles_featurizers import BartFeaturizer

featurizer = BartFeaturizer("shahrukhx01/smole-bart")
embeddings = featurizer.embed(["CCC(C)(C)Br"], embedder="encoder")

Bart (Decoder) Featurizer

from smiles_featurizers import BartFeaturizer

featurizer = BartFeaturizer("shahrukhx01/smole-bart")
embeddings = featurizer.embed(["CCC(C)(C)Br"], embedder="decoder")

SimCSE Featurizer

from smiles_featurizers import SimcseFeaturizer

featurizer = SimcseFeaturizer("shahrukhx01/mv2x-simcse-smole-bart")
embeddings = featurizer.embed(["CCC(C)(C)Br"])

SentenceTransformer Featurizer

from smiles_featurizers import SentenceTransformersFeaturizer

featurizer = SentenceTransformersFeaturizer("shahrukhx01/siamese-smole-bert-muv-1x")
embeddings = featurizer.embed(["CCC(C)(C)Br"])

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

smiles-featurizers-1.0.0.tar.gz (7.1 kB view hashes)

Uploaded Source

Built Distribution

smiles_featurizers-1.0.0-py2.py3-none-any.whl (9.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page