File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
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
+ ```
You can’t perform that action at this time.
0 commit comments