Skip to content

Commit 75679ab

Browse files
committed
Added a initial description of the P2B1 benchmark.
1 parent ca8b8bf commit 75679ab

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

P2B1/README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
## P2B1: Autoencoder Compressed Representation for Molecular Dynamics Simulation Data
2+
3+
**Overview**: Generate automatically extracted features representing molecular simulation data
4+
5+
**Relationship to core problem**: Establish framework for building future tools using learned features
6+
7+
**Expected outcome**: Improvement in the understanding of protein formation and easing of the handling large-scale molecular dynamics output
8+
9+
### Benchmark Specs Requirements
10+
11+
#### Description of the Data
12+
* Data source: MD Simulation output as PDB files (coarse-grained bead simulation)
13+
* Input dimensions: ~1.26e6 per time step (6000 lipids x 30 beads per lipid x (position + velocity + type))
14+
* Output dimensions: 500
15+
* Latent representation dimension:
16+
* Sample size: O(10^6) for simulation requiring O(10^8) time steps
17+
* Notes on data balance and other issues: unlabeled data with rare events
18+
19+
#### Expected Outcomes
20+
* Reconstructed MD simulation state
21+
* Output range: automatically learned features that discriminate the data set
22+
23+
#### Evaluation Metrics
24+
* Accuracy or loss function: L2 reconstruction error
25+
* Expected performance of a naive method: N/A
26+
27+
#### Description of the Network
28+
* Proposed network architecture: stacked fully-connected autoencoder
29+
* Number of layers: 5-8
30+
31+
### Running the baseline implementation
32+
33+
Using virtualenv
34+
35+
```
36+
cd P2B1
37+
workon keras
38+
python __main__.py --train --home-dir=${HOME}/.virtualenvs/keras/lib/python2.7/site-packages
39+
```

0 commit comments

Comments
 (0)