Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- .gitignore +3 -0
- artifacts/CrI3.tar.gz +3 -0
- artifacts/Si.tar.gz +3 -0
- artifacts/Si2.tar.gz +3 -0
- datasets/CrI3/cri3_bands.xml +0 -0
- datasets/Si/scf.in +33 -0
- datasets/Si/wfc1.dat +3 -0
- datasets/Si2/si2_bands.xml +0 -0
- docs/Project.toml +3 -0
- docs/make.jl +17 -0
- docs/src/index.md +14 -0
- make_artifacts.jl +28 -0
.gitattributes
CHANGED
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
57 |
# Video files - compressed
|
58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
57 |
# Video files - compressed
|
58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
60 |
+
datasets/Si/wfc1.dat filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
/Manifest.toml
|
2 |
+
/docs/Manifest.toml
|
3 |
+
/docs/build/
|
artifacts/CrI3.tar.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:308914f4fc3c68909945751c1e1064373fd06dc0fe719915af28d895c793a8c5
|
3 |
+
size 388324
|
artifacts/Si.tar.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c37f054d3f61e649402acf99d8e3e8a709cdbef33525bd96d63bf9c414bcdf66
|
3 |
+
size 123369
|
artifacts/Si2.tar.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:efa99c8181d47e184dd20b06dbeb21bea9e84e6c1a91fd7347a8749ec5c79340
|
3 |
+
size 114152
|
datasets/CrI3/cri3_bands.xml
ADDED
The diff for this file is too large to render.
See raw diff
|
|
datasets/Si/scf.in
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
&control
|
2 |
+
calculation = 'scf'
|
3 |
+
restart_mode = 'from_scratch'
|
4 |
+
prefix = 'silicon'
|
5 |
+
tstress = .true.
|
6 |
+
tprnfor = .true.
|
7 |
+
pseudo_dir = 'pseudo/'
|
8 |
+
outdir = './tmp/'
|
9 |
+
verbosity = 'high'
|
10 |
+
/
|
11 |
+
&system
|
12 |
+
ibrav = 0
|
13 |
+
nat = 2
|
14 |
+
ntyp = 1
|
15 |
+
ecutwfc = 100
|
16 |
+
/
|
17 |
+
&electrons
|
18 |
+
diagonalization = 'david'
|
19 |
+
mixing_mode = 'plain'
|
20 |
+
mixing_beta = 0.3
|
21 |
+
conv_thr = 1.0e-12
|
22 |
+
/
|
23 |
+
ATOMIC_SPECIES
|
24 |
+
Si 28.085 Si.upf
|
25 |
+
ATOMIC_POSITIONS crystal
|
26 |
+
Si 0.000000 0.000000 0.000000
|
27 |
+
Si 0.750000 0.750000 0.750000
|
28 |
+
K_POINTS {automatic}
|
29 |
+
8 8 8 0 0 0
|
30 |
+
CELL_PARAMETERS angstrom
|
31 |
+
-2.715260 0.000000 2.715260
|
32 |
+
0.000000 2.715260 2.715260
|
33 |
+
-2.715260 2.715260 0.000000
|
datasets/Si/wfc1.dat
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0e63ce59c19a5529d5f47cfb78e00c4a1926ae0e1ce5082e7cab52252a428ee7
|
3 |
+
size 160480
|
datasets/Si2/si2_bands.xml
ADDED
The diff for this file is too large to render.
See raw diff
|
|
docs/Project.toml
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
[deps]
|
2 |
+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
|
3 |
+
QuantumEspressoDatasets = "aaad41db-e042-4bbd-ad47-e353d5c615c8"
|
docs/make.jl
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
using QuantumEspressoDatasets
|
2 |
+
using Documenter
|
3 |
+
|
4 |
+
DocMeta.setdocmeta!(QuantumEspressoDatasets, :DocTestSetup, :(using QuantumEspressoDatasets); recursive=true)
|
5 |
+
|
6 |
+
makedocs(;
|
7 |
+
modules=[QuantumEspressoDatasets],
|
8 |
+
authors="Junfeng Qiao, Guoyuan Liu, Aleksandr Poliukhin",
|
9 |
+
sitename="QuantumEspressoDatasets.jl",
|
10 |
+
format=Documenter.HTML(;
|
11 |
+
edit_link="main",
|
12 |
+
assets=String[],
|
13 |
+
),
|
14 |
+
pages=[
|
15 |
+
"Home" => "index.md",
|
16 |
+
],
|
17 |
+
)
|
docs/src/index.md
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```@meta
|
2 |
+
CurrentModule = QuantumEspressoDatasets
|
3 |
+
```
|
4 |
+
|
5 |
+
# QuantumEspressoDatasets
|
6 |
+
|
7 |
+
Documentation for [QuantumEspressoDatasets](https://github.com/Koulb/QuantumEspressoDatasets.jl).
|
8 |
+
|
9 |
+
```@index
|
10 |
+
```
|
11 |
+
|
12 |
+
```@autodocs
|
13 |
+
Modules = [QuantumEspressoDatasets]
|
14 |
+
```
|
make_artifacts.jl
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
using Tar, Inflate, SHA, TOML
|
2 |
+
|
3 |
+
artifacts = Dict()
|
4 |
+
|
5 |
+
folders = ["CrI3", "Si", "Si2"]
|
6 |
+
|
7 |
+
for folder in folders
|
8 |
+
fullpath = joinpath("datasets", folder)
|
9 |
+
isdir(fullpath) || continue
|
10 |
+
outpath = joinpath(pwd(),"artifacts","$folder.tar.gz")
|
11 |
+
|
12 |
+
cd(fullpath) do
|
13 |
+
run(`tar -cvzf $outpath $(readdir())`)
|
14 |
+
end
|
15 |
+
|
16 |
+
artifact_name = folder
|
17 |
+
artifacts[folder] = Dict(
|
18 |
+
"git-tree-sha1" => Tar.tree_hash(IOBuffer(inflate_gzip(outpath))),
|
19 |
+
"lazy" => true,
|
20 |
+
"download" => [Dict(
|
21 |
+
"url" => "https://github.com/Koulb/QuantumEspressoDatasets/raw/main/artifacts/$(folder).tar.gz",
|
22 |
+
"sha256" => bytes2hex(open(sha256, outpath)))]
|
23 |
+
)
|
24 |
+
end
|
25 |
+
|
26 |
+
open("Artifacts.toml", "w") do io
|
27 |
+
TOML.print(io, artifacts)
|
28 |
+
end
|