AlphaGrammar: Grammar-based molecular representation learning
Project description
AlphaGrammar
AlphaGrammar is a grammar-based molecular representation learning framework. It learns a hyperedge-replacement grammar (HRG) over molecular graphs via Monte Carlo Tree Search (MCMC) with a learned agent.
Installation
pip install -e /path/to/AlphaGrammar_pkg
Or from PyPI (once published):
pip install alphagrammar
Pretrained models
After installation, copy the pretrained model files to the package data directory:
DATA_DIR=$(python -c "import alphagrammar, os; print(os.path.join(os.path.dirname(alphagrammar.__file__), 'data'))")
cp /path/to/AlphaGrammar/ckpts/vocab_epoch5.pkl $DATA_DIR/
cp /path/to/AlphaGrammar/ckpts/best_agent_epoch0_R0.0000.pkl $DATA_DIR/
cp /path/to/AlphaGrammar/GCN/supervised_contextpred.pth $DATA_DIR/
Usage
Command-line interface
# Parse a single SMILES string (rollout mode)
alphagrammar parse "CCO"
# Parse from a file (one SMILES per line)
alphagrammar parse molecules.smi
# Parse with Bolinas parser (10-second timeout per molecule)
alphagrammar parse "CCO" --timeout 10
# Use only top-100 rules from vocab
alphagrammar parse "CCO" --vocab_size 100
Python API
from alphagrammar import MoleculeDataset, _collate_mol_batch, RuleStats
from alphagrammar.grammar_generation import MCMC_sampling
from alphagrammar.agent import Agent
import torch, pickle
# Load pretrained models
with open("data/vocab_epoch5.pkl", "rb") as f:
rule_stats = pickle.load(f)
agent = Agent(feat_dim=300, hidden_size=256)
agent.load_state_dict(torch.load("data/best_agent_epoch0_R0.0000.pkl"))
agent.eval()
# Build input dataset
dataset = MoleculeDataset(["CCO", "c1ccccc1"], GNN_model_path="data/supervised_contextpred.pth")
batch = [dataset[i] for i in range(len(dataset))]
input_graphs_dict = _collate_mol_batch(batch)
# Run MCMC sampling
results, rules_per_mol, sequential_steps = MCMC_sampling(
"output_dir", agent, input_graphs_dict, MCMC_size=1, debug=True
)
Package structure
src/alphagrammar/
├── __init__.py # Public API
├── cli.py # argparse CLI entry point
├── core.py # Core functions (bolinas_evaluate, MoleculeDataset, RuleStats, ...)
├── grammar_generation.py# MCMC sampling and grammar generation
├── agent.py # Neural agent (policy network)
├── hrg_td_parser_undirected.py # Bolinas HRG parser
├── private/ # Internal hypergraph / grammar data structures
├── fuseprop/ # Molecular fragmentation utilities
├── GCN/ # Graph neural network feature extraction
├── data/ # Pretrained model files (copy here after install)
└── commands/
└── parse.py # 'alphagrammar parse' subcommand
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file alphagrammar-0.1.1.tar.gz.
File metadata
- Download URL: alphagrammar-0.1.1.tar.gz
- Upload date:
- Size: 42.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
839547c053fefe2740a1b400deeac8748446b12f6c743c2f13d55ab8da02b9c1
|
|
| MD5 |
31b81cc41bfadc4e23a9c50a133ebf4d
|
|
| BLAKE2b-256 |
6e65f97674d62802465e2db6050b406dbdc5f6988670044fe2c3d8b92b742f0c
|
File details
Details for the file alphagrammar-0.1.1-py3-none-any.whl.
File metadata
- Download URL: alphagrammar-0.1.1-py3-none-any.whl
- Upload date:
- Size: 43.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
137a5de1703f674c04afddc77a4ae51a88cab70641f1b9766e46aca2113a502e
|
|
| MD5 |
14ebda5cf19ce6da4dbd3f1c17cca9ce
|
|
| BLAKE2b-256 |
e6f06d6610449860f118b051ee34be7d16cdc8202ef8a6a3e0eb4f9cb3957102
|