Add complete atomization energy MLP pipeline from scratch - #1
Draft
jkimthe16th with Copilot wants to merge 2 commits into
Draft
Add complete atomization energy MLP pipeline from scratch#1jkimthe16th with Copilot wants to merge 2 commits into
jkimthe16th with Copilot wants to merge 2 commits into
Conversation
Agent-Logs-Url: https://github.com/jkimthe16th/Atomization_Energy_MLP/sessions/85dd9793-7c73-472b-9d96-e1d0b475cc5c Co-authored-by: jkimthe16th <190176555+jkimthe16th@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add repository structure for atomization energy MLP project
Add complete atomization energy MLP pipeline from scratch
Apr 25, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Repository was a bare stub (only
.gitignore+ a two-lineREADME.md). Implements the full project structure and end-to-end ML pipeline for predicting molecular atomization energies via Coulomb-matrix descriptors and an MLP ensemble.New files
requirements.txt— six dependencies:numpy,pandas,requests,matplotlib,scikit-learn,tensorflow>=2.0.0src/main.py— self-contained pipeline (download → parse → featurise → train → evaluate → plot)src/main.pypipeline stagesM_ii = 0.5·Z^2.4,M_ij = Z_i·Z_j / r_ijMAX_ATOMS=26), then z-score normalised1024→512→256→128→1, GELU + BatchNorm + Dropout (0.20/0.15), linear skip connection from raw input concatenated before output headparity_plot.png,residual_distribution.png,learning_curves.png.gitignoreAppended project-specific patterns:
/ani1e/,*.keras,*.h5,*.hdf5,*.png,*.pdf,macOS/README.mdReplaced stub with full documentation: theory (Schrödinger equation, Coulomb matrix formulas), feature engineering, model architecture, training config, and reported results (MAE 3.36 kcal/mol, R²=0.9996).
Original prompt