Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fast EM2D incorporated into ElM2D #5

Draft
wants to merge 34 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
45d627e
Create .gitignore
sgbaird Sep 8, 2021
1e773f2
Create dist_matrix.py
sgbaird Sep 8, 2021
6858748
Create helper.py
sgbaird Sep 8, 2021
03526fa
Create test_dist_matrix.py
sgbaird Sep 8, 2021
4126ac1
Create test_helper.py
sgbaird Sep 8, 2021
5f0857a
Create setup.cfg
sgbaird Sep 8, 2021
73ae107
Create ElM2D_UMAP.py
sgbaird Sep 8, 2021
c4ef537
Create test_ElM2D.py
sgbaird Sep 8, 2021
a5de1db
Create train-debug.csv
sgbaird Sep 8, 2021
ac87f3d
remove unnecessary dependencies
sgbaird Sep 8, 2021
e2ed14e
remove assignment but unused for fts
sgbaird Sep 8, 2021
0c1ed3f
blackify and address linting warnings
sgbaird Sep 8, 2021
66fb95a
define fast EM2D function and dist_matrix import
sgbaird Sep 8, 2021
d29643f
Update test_ElM2D.py
sgbaird Sep 8, 2021
2192b15
Update ElM2D.py
sgbaird Sep 8, 2021
6c50b1d
stable chemical formulas from materials project
sgbaird Sep 8, 2021
51b4083
Create njit_dist_matrix.py
sgbaird Sep 8, 2021
a0f5c1b
incorporating njit`d version
sgbaird Sep 8, 2021
fa4d6f8
Update cuda_dist_matrix.py
sgbaird Sep 8, 2021
96e1e9f
Update ElM2D.py
sgbaird Sep 8, 2021
b3d9606
dealing with target as arg
sgbaird Sep 8, 2021
5422d16
change Uw and Vw to U_weights and V_weights
sgbaird Sep 8, 2021
4aecffb
run cuda and cpu versions
sgbaird Sep 8, 2021
18a3a29
replace process_map with map for Windows compatibility
sgbaird Sep 8, 2021
ad181ca
Update test_ElM2D.py
sgbaird Sep 8, 2021
b0b4114
non-working version
sgbaird Sep 8, 2021
d1310b9
non-working version
sgbaird Sep 8, 2021
fa4668b
Delete ElM2D_UMAP.py
sgbaird Sep 10, 2021
68d56ca
check if gpu avail
sgbaird Sep 11, 2021
99451a6
Update test_dist_matrix.py
sgbaird Sep 11, 2021
0691bfe
Update test_ElM2D.py
sgbaird Sep 11, 2021
47716d3
Update cuda_dist_matrix.py
sgbaird Sep 11, 2021
70d3830
Create metrics.py
sgbaird Sep 11, 2021
d9ca9eb
Delete stable-mp.csv
sgbaird Oct 23, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build/**
__pycache__/**
ElM2D.egg-info/**
ElM2D/.ipynb_checkpoints/**
ElM2D/__pycache__/**
Loading