Skip to content

Commit

Permalink
Merge pull request #5 from GreeleyGroup/enh/features
Browse files Browse the repository at this point in the history
ENH: Add featurizers
  • Loading branch information
deshmukg authored Sep 15, 2023
2 parents cb3ba9c + 119e5c7 commit 97bc2a8
Show file tree
Hide file tree
Showing 5 changed files with 631 additions and 43 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
*POSCAR*
*CONTCAR*
*.csv
!data/dband_centers.csv
__pycache__
23 changes: 23 additions & 0 deletions data/dband_centers.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
22, 1.50
23, 1.06
24, 0.16
25, 0.07
26, -0.92
27, -1.17
28, -1.29
29, -2.67
40, 1.95
41, 1.41
42, 0.35
43, -0.60
44, -1.41
45, -1.73
46, -1.83
47, -4.30
72, 2.47
73, 2.00
74, 0.77
75, -0.51
77, -2.11
78, -2.25
79, -3.56
7 changes: 7 additions & 0 deletions src/constants.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""Constants are defined here."""

import pathlib

REPO_PATH = pathlib.Path(__file__).parents[1]

DBAND_FILE_PATH = REPO_PATH / "data" / "dband_centers.csv"
Loading

0 comments on commit 97bc2a8

Please sign in to comment.