Views
No views yet
models/moses_pretrained.pt - Pre-trained model on MOSES dataset (417MB)initial_populations/moses_2000.csv - 2000 molecules for initialization (3.6MB)download_assets.py script from the main repository:1# Clone the main repo
2git clone https://github.com/your-org/rlmollm.git
3cd rlmollm
4
5# Install
6pip install -e .
7
8# Download assets (this repo)
9python download_assets.py --dataset moses1from huggingface_hub import hf_hub_download
2
3# Download model
4model_path = hf_hub_download(
5 repo_id="scofieldlinlin/rlmollm-assets",
6 filename="models/moses_pretrained.pt"
7)
8
9# Download initial population
10population_path = hf_hub_download(
11 repo_id="scofieldlinlin/rlmollm-assets",
12 filename="initial_populations/moses_2000.csv"
13)1@software{rlmollm2024,
2 title={RLMolLM: Reinforcement Learning-Enhanced Language Model for Molecular Design},
3 author={Your Name},
4 year={2024},
5 url={https://github.com/your-org/rlmollm}
6}