--- language: - en tags: - biology - chemistry - peptide-generation - protein-design - synthetic-data pretty_name: PepEVOLVE RBP Benchmark Dataset size_categories: - 100K Score: {total_score:.3f}") # Filter high-scoring peptides high_score = df[df["total_score"] >= 0.9] print(f"Number of peptides with score >= 0.9: {len(high_score)}") # Compare models import glob all_files = glob.glob("pepevolve_*.csv") + glob.glob("pepinvent_*.csv") combined = pd.concat([pd.read_csv(f) for f in all_files]) print(combined.groupby("model")["total_score"].describe()) ``` - **Data Format:** Each CSV file contains the following columns: - `SMILES`: SMILES string of the generated peptide - `CHUCKLES`: CHUCKLES representation of the generated peptide - `total_score`: Aggregated multi-objective score (geometric mean) - `predictive_model`: Permeability component score - `lipophilicity`: Lipophilicity component score - `maximum_ring_size`: Maximum ring size component score - `custom_alerts`: Structural alerts (SMARTS) component score - `step`: Optimization step number - **GitHub Links (Optional):** [https://github.com/MSDLLCpapers/PepEvolve/](https://github.com/MSDLLCpapers/PepEvolve/) ## 7. Citation - **BibTeX:** ```bibtex @article{nguyen2025pepevolve, title={PepEVOLVE: Position-Aware Dynamic Peptide Optimization via Group-Relative Advantage}, author={Nguyen, Trieu and Zhang, Peter Zhiping and Boyer, Nicolas and Fang, Cheng and Zhang, Liying and Schneider, Sebastian and Pang, Hao-Wei and Feng, Shasha}, journal={arXiv preprint arXiv:2511.16912}, year={2025}, doi={10.48550/arXiv.2511.16912} } ``` - **DOI:** [https://doi.org/10.48550/arXiv.2511.16912](https://doi.org/10.48550/arXiv.2511.16912) ## 8. Contributors - **Names and Roles:** N/A — see Developed by in Section 1. ## 9. Contact Information - **Support Channels:** For questions or feedback, please open an issue on the HuggingFace dataset repository or contact the corresponding authors (Hao-Wei Pang, Shasha Feng) at Merck & Co., Inc. ## 10. Acknowledgements This work was conducted at Merck & Co., Inc., Boston, MA, USA, with a contribution from the University of South Florida, FL, USA. ## 11. Disclaimer - **Legal Disclaimer (Mandatory):** This dataset is provided "as is" without warranty of any kind. The generated peptide sequences and associated scores are computational predictions and have not been experimentally validated. Users should independently verify any findings before making experimental or clinical decisions. Merck & Co., Inc. makes no representations regarding the suitability of this data for any particular purpose. Use of this dataset is subject to the CC-BY-4.0 license terms.