-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for backwards actions in MolBuildingEnvContext (#100)
This PR: - adds support for backward actions in `MolBuildingEnvContext`, - adds tests for `MolBuildingEnvContext` that check that backwards masks are correct, - adds a toy atom environment where the reward is simply the number of rings in a carbon-only molecule of up to 6 atoms. - fixes a bug in `GraphBuildingEnv.parent`, whereby 1-node graphs with attributes would have their parents misenumerated (which hadn't manifested itself because until now we didn't have contexts with more than 1 node attribute). * add backward mask support + small ring task * more comments and implementation notes
- Loading branch information
Showing
5 changed files
with
254 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
import os | ||
import socket | ||
from typing import Dict, List, Tuple, Union | ||
|
||
import numpy as np | ||
import torch | ||
from rdkit import Chem | ||
from rdkit.Chem.rdchem import Mol as RDMol | ||
from torch import Tensor | ||
|
||
from gflownet.config import Config | ||
from gflownet.envs.mol_building_env import MolBuildingEnvContext | ||
from gflownet.online_trainer import StandardOnlineTrainer | ||
from gflownet.trainer import FlatRewards, GFNTask, RewardScalar | ||
|
||
|
||
class MakeRingsTask(GFNTask): | ||
"""A toy task where the reward is the number of rings in the molecule.""" | ||
|
||
def __init__( | ||
self, | ||
rng: np.random.Generator, | ||
): | ||
self.rng = rng | ||
|
||
def flat_reward_transform(self, y: Union[float, Tensor]) -> FlatRewards: | ||
return FlatRewards(y) | ||
|
||
def sample_conditional_information(self, n: int, train_it: int) -> Dict[str, Tensor]: | ||
return {"beta": torch.ones(n), "encoding": torch.ones(n, 1)} | ||
|
||
def cond_info_to_logreward(self, cond_info: Dict[str, Tensor], flat_reward: FlatRewards) -> RewardScalar: | ||
scalar_logreward = torch.as_tensor(flat_reward).squeeze().clamp(min=1e-30).log() | ||
return RewardScalar(scalar_logreward.flatten()) | ||
|
||
def compute_flat_rewards(self, mols: List[RDMol]) -> Tuple[FlatRewards, Tensor]: | ||
rs = torch.tensor([m.GetRingInfo().NumRings() for m in mols]).float() | ||
return FlatRewards(rs.reshape((-1, 1))), torch.ones(len(mols)).bool() | ||
|
||
|
||
class MakeRingsTrainer(StandardOnlineTrainer): | ||
def set_default_hps(self, cfg: Config): | ||
cfg.hostname = socket.gethostname() | ||
cfg.num_workers = 8 | ||
cfg.algo.global_batch_size = 64 | ||
cfg.algo.offline_ratio = 0 | ||
cfg.model.num_emb = 128 | ||
cfg.model.num_layers = 4 | ||
|
||
cfg.algo.method = "TB" | ||
cfg.algo.max_nodes = 6 | ||
cfg.algo.sampling_tau = 0.9 | ||
cfg.algo.illegal_action_logreward = -75 | ||
cfg.algo.train_random_action_prob = 0.0 | ||
cfg.algo.valid_random_action_prob = 0.0 | ||
cfg.algo.tb.do_parameterize_p_b = True | ||
|
||
cfg.replay.use = False | ||
|
||
def setup_task(self): | ||
self.task = MakeRingsTask(rng=self.rng) | ||
|
||
def setup_env_context(self): | ||
self.ctx = MolBuildingEnvContext( | ||
["C"], | ||
charges=[0], # disable charge | ||
chiral_types=[Chem.rdchem.ChiralType.CHI_UNSPECIFIED], # disable chirality | ||
num_rw_feat=0, | ||
max_nodes=self.cfg.algo.max_nodes, | ||
num_cond_dim=1, | ||
) | ||
|
||
|
||
def main(): | ||
hps = { | ||
"log_dir": "./logs/debug_run_mr4", | ||
"device": "cuda", | ||
"num_training_steps": 10_000, | ||
"num_workers": 8, | ||
"algo": {"tb": {"do_parameterize_p_b": True}}, | ||
} | ||
os.makedirs(hps["log_dir"], exist_ok=True) | ||
|
||
trial = MakeRingsTrainer(hps) | ||
trial.print_every = 1 | ||
trial.run() | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
Oops, something went wrong.