agentsclimarketplace

Deepchem

Skill Kdevos12/ALKYL/skills/deepchem

Claude Plugin for CompChem , Drug Discovery & Organic Chemistry reasoning

Install
npx -y skills add Kdevos12/ALKYL --skill deepchem

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when working with DeepChem for molecular machine learning, drug discovery, quantum chemistry, materials science, or bioinformatics. Handles molecular datasets, featurization strategies, model training/evaluation, and predictions on chemical data.

SKILL.md

2.6 KB, as published. Nobody here has run it

DeepChem

Deep learning for the life sciences: drug discovery, quantum chemistry, materials science, bioinformatics.

When to Use This Skill

  • Building ML models on molecular datasets (SMILES, graphs, fingerprints)
  • Working with MoleculeNet benchmark datasets
  • Predicting molecular properties (solubility, toxicity, binding affinity)
  • Protein-ligand interaction modeling
  • Quantum chemistry property prediction (QM9, GDB datasets)
  • Featurizing molecules for downstream ML tasks
  • Virtual screening and drug discovery pipelines

Quick Start — Standard Workflow

import deepchem as dc

# 1. Load dataset with featurizer
tasks, datasets, transformers = dc.molnet.load_delaney(featurizer='GraphConv')
train_dataset, valid_dataset, test_dataset = datasets

# 2. Create model
model = dc.models.GraphConvModel(n_tasks=1, mode='regression', dropout=0.2)

# 3. Train
model.fit(train_dataset, nb_epoch=100)

# 4. Evaluate
metric = dc.metrics.Metric(dc.metrics.pearson_r2_score)
train_score = model.evaluate(train_dataset, [metric], transformers)
test_score  = model.evaluate(test_dataset,  [metric], transformers)

# 5. Predict
predictions = model.predict_on_batch(test_dataset.X[:10])

Router — What to Read

TaskReference
Dataset creation, access, splittersreferences/core-concepts.md
Training workflow, metrics, hyperopt, multitaskreferences/model-training.md
Fingerprints, GCN, ChemBERTa, graph modelsreferences/mol-machine-learning.md
MoleculeNet, protein-ligand, virtual screeningreferences/drug-discovery.md
QM9, DeepQMC, materials sciencereferences/quantum-materials.md

Installation

pip install --pre deepchem          # with TensorFlow
pip install --pre deepchem[torch]   # with PyTorch
pip install --pre deepchem[jax]     # with JAX
import deepchem as dc
dc.__version__   # verify installation

Key Submodules

SubmoduleRole
dc.molnetMoleculeNet dataset loaders
dc.modelsAll model classes
dc.featFeaturizers
dc.metricsEvaluation metrics
dc.splitsDataset splitters
dc.dataDataset classes
dc.transTransformers (normalization, etc.)

Related Skills

  • rdkit-patterns - Molecular manipulation before DeepChem ingestion
  • cheminformatics - SMILES, molecular representations reference

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.