Loading...
Loading...
Interactive CLI for Uni-Mol molecular property prediction training and inference workflows.
npx skill4agent add hkuds/cli-anything cli-anything-unimol-toolscli-anything-unimol-toolspython3 -m cli_anything.unimol_tools--json# Create a new project
project create --name drug_discovery
# List all projects
project list
# Switch to a project
project switch --name drug_discovery# Train a classification model
train --data-path train.csv --target-col active --task-type classification --epochs 10
# Train a regression model
train --data-path train.csv --target-col affinity --task-type regression --epochs 10# List all trained models
models list
# Show model details and performance
models show --model-id <id>
# Rank models by performance
models rank# Analyze storage usage
storage analyze
# Automatic cleanup of poor performers
cleanup auto
# Manual cleanup with criteria
cleanup manual --max-models 10 --min-score 0.7# Make predictions with a trained model
predict --model-id <id> --data-path test.csvSMILES--target-colSMILES,target
CCO,1
CCCO,0
CC(C)O,1--jsonpython3 -m cli_anything.unimol_tools --json models list{
"status": "success",
"data": [...],
"message": "..."
}python3 -m cli_anything.unimol_toolscd unimol_tools/agent-harness
pip install -e .cd docs/test
bash run_tests.sh --unit -v # Unit tests (67 tests)
bash run_tests.sh --full -v # Full test suitestorage analyzemodels rankcleanup autocleanup auto