Pretrained model files for AlphaGrammar
========================================

This directory should contain the following pretrained model files:

  vocab_epoch5.pkl
      A pickled RuleStats object containing the trained production rule vocabulary.
      Source: AlphaGrammar training output (rule_stats checkpoint after epoch 5).

  best_agent_epoch0_R0.0000.pkl
      A pickled PyTorch state dict for the trained Agent model (feat_dim=300, hidden_size=256).
      Source: AlphaGrammar training checkpoint directory (best_agent_*.pkl).

  supervised_contextpred.pth
      Pretrained GNN weights for molecular feature extraction.
      Source: https://snap.stanford.edu/gnn-pretrain/models/supervised_contextpred.pth
      or from the AlphaGrammar/GCN/ directory if already downloaded.

To install these files, copy or symlink them here:

  cp /path/to/AlphaGrammar/ckpts/vocab_epoch5.pkl .
  cp /path/to/AlphaGrammar/ckpts/best_agent_epoch0_R0.0000.pkl .
  cp /path/to/AlphaGrammar/GCN/supervised_contextpred.pth .

MANIFEST of expected files:
  - vocab_epoch5.pkl
  - best_agent_epoch0_R0.0000.pkl
  - supervised_contextpred.pth
