Batch Effect Removal Neural Networks for Tandem Mass Spectrometry
Project description
BERNN-MSMS
Minimal README for quick usage.
Longer historical content is kept in LEGACY_README.md.
Install
pip install bernn
Basic usage
from bernn import TrainAEClassifierHoldout
trainer_cls = TrainAEClassifierHoldout
trainer = trainer_cls(config=bernn_config, log_metrics=True, keep_models=False)
# Train and predict in one call
preds_encoded = trainer.fit_predict(
X_train,
y_train,
X_test=X_test,
y_test=y_test,
groups_train=batches_train,
groups_test=batches_test,
cross_validation=False,
cross_test=False,
)
# Decode predictions back to original labels
preds = trainer.predict(X_test)
Important runtime contract:
- groups_train is mandatory.
- If X_test is provided, groups_test is mandatory.
Important parameters
Focus on these first:
- optimize_hyperparams: enable/disable Ax optimization.
- n_trials: number of optimization trials.
- fixed_hyperparams: force values and remove them from search.
- n_repeats: number of holdout repeats.
- n_layers, layer1: classifier depth and width seed.
- dloss: domain loss mode.
- warmup, n_epochs: core training schedule.
- device: cpu/cuda target.
- scaler, bs: preprocessing and batch size.
Official documentation
- Full reference: OFFICIAL_DOCUMENTATION.md
- Full parameter catalog: TRAINING_PARAMETERS.md
- Minimal runnable examples notebook (4 variants): tutorials/minimal_examples.ipynb
- Optimized all-config notebook (TrainAEClassifierHoldout): tutorials/optimized_classifier_holdout_all_configs.ipynb
- Optimized all-config notebook (TrainAEThenClassifierHoldout): tutorials/optimized_ae_then_classifier_holdout_all_configs.ipynb
- Historical CLI-heavy guide: LEGACY_README.md
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
bernn-0.5.2.tar.gz
(268.4 kB
view details)
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
bernn-0.5.2-py3-none-any.whl
(285.3 kB
view details)
File details
Details for the file bernn-0.5.2.tar.gz.
File metadata
- Download URL: bernn-0.5.2.tar.gz
- Upload date:
- Size: 268.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72a475727031e0d251342a539b8e370062eea209a26a9c3a4bd37893f7211806
|
|
| MD5 |
e4734f1a9538f17b574ff70eab1196b1
|
|
| BLAKE2b-256 |
6aa628637e435ff2d0e70a53a5a0e42d8c849b53e2c744cd949bce25bea01105
|
File details
Details for the file bernn-0.5.2-py3-none-any.whl.
File metadata
- Download URL: bernn-0.5.2-py3-none-any.whl
- Upload date:
- Size: 285.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39126e6e5b40974f2a10396316d34d7df66828c02202b427004d42e5d9b7f218
|
|
| MD5 |
3a4235b1bc5bbb8b6f9385cd76994198
|
|
| BLAKE2b-256 |
ac5f95e5e052ef59ca669bcab55cd8c21ea71047492dffb01568eae4f85530e3
|