| # Paper Draft | |
| This folder contains a first LaTeX draft using the WAICA template in | |
| `LaTeX_Templates/`. | |
| Main file: | |
| ```bash | |
| paper_draft/main.tex | |
| ``` | |
| Core paper idea: | |
| > Enhancer generation should be framed as controlled mutation rather than only | |
| > de novo autoregressive synthesis. A masked discrete diffusion model exposes | |
| > the mask ratio as an interpretable mutation budget: low mask ratios perform | |
| > local edits, while high mask ratios approach de novo generation. | |
| The draft intentionally contains placeholders: | |
| - `TODO-RESULT`: experiment numbers to fill after running `scripts/`. | |
| - `TODO-FIGURE`: figures to generate and insert. | |
| - `TODO-CITE`: references to refine if needed. | |
| Compile: | |
| ```bash | |
| cd /Users/ouzhang/Desktop/genRL/project/paper_draft | |
| pdflatex main.tex | |
| bibtex main | |
| pdflatex main.tex | |
| pdflatex main.tex | |
| ``` | |
| If WAICA bibliography style has issues, replace: | |
| ```tex | |
| \bibliographystyle{waica} | |
| ``` | |
| with: | |
| ```tex | |
| \bibliographystyle{splncs04} | |
| ``` | |
| and copy/provide `splncs04.bst`. | |