We are excited to announce our upcoming hackathon!
Date: September 25th
Time: 12:00 PM – 5:00 PM Central Time
718 049 0853
To help participants around the world, here are some common conversions:
The challenge for this hackathon is:
Mass spectrum signal processing for noise reduction.
Participants will work on designing and implementing approaches to clean noisy spectra, improving the accuracy and interpretability of downstream analyses.
We provide three CSV files containing mass spectra with noise and true signal.
The CSV files are in the following format:
spec_no
: A non-unique index respresenting the spectrum. For example, each row with spec_no = 1 will correspond to all the peaks to that spectrum.mz
: The m/z value for a signalintensity
: The intensity value for a signalsignal
: A binary label representing if the peak is true signal (signal = 1) or noise (signal = 0)The train set contains 600 labeled spectra and the validation set contains 100 labeled spectra.
The test set does not contain labels. We will use this set to evalauate your solution.
You may use any computational resources available to you (local machines, HPC systems, cloud platforms, etc.).
However, your final solution must be runnable on a modern high-end personal computer. Avoid approaches that demand excessive memory or compute.
For example, it is acceptable to train a model on a GPU cluster, but the resulting model should still be able to run inference efficiently on a personal computer.