peterspackman commited on
Commit
b2f9674
·
verified ·
1 Parent(s): dce0e32

Update GGUFs (8 models, 1111 MB)

Browse files
.gitattributes CHANGED
@@ -33,3 +33,11 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ pet-mad-s.gguf filter=lfs diff=lfs merge=lfs -text
37
+ pet-mad-xs.gguf filter=lfs diff=lfs merge=lfs -text
38
+ pet-oam-l.gguf filter=lfs diff=lfs merge=lfs -text
39
+ pet-omad-s.gguf filter=lfs diff=lfs merge=lfs -text
40
+ pet-omad-xs.gguf filter=lfs diff=lfs merge=lfs -text
41
+ pet-omat-s.gguf filter=lfs diff=lfs merge=lfs -text
42
+ pet-omat-xs.gguf filter=lfs diff=lfs merge=lfs -text
43
+ pet-spice-s.gguf filter=lfs diff=lfs merge=lfs -text
LICENSE ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2024, COSMO lab, EPFL.
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice,
10
+ this list of conditions and the following disclaimer.
11
+
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ 3. Neither the name of the copyright holder nor the names of its contributors
17
+ may be used to endorse or promote products derived from this software
18
+ without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30
+ POSSIBILITY OF SUCH DAMAGE.
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: bsd-3-clause
3
+ tags:
4
+ - mlip
5
+ - machine-learning-potentials
6
+ - ggml
7
+ - gguf
8
+ ---
9
+
10
+ # MLIP GGUFs
11
+
12
+ GGUF-format conversions of the uPET family of machine-learning interatomic
13
+ potentials, for use with [mlip.cpp](https://github.com/peterspackman/mlip.cpp)
14
+ and [mlip.js](https://github.com/peterspackman/mlip.cpp/tree/main/packages/mlip.js).
15
+
16
+ ## Source
17
+
18
+ Checkpoints converted from [`lab-cosmo/upet`](https://huggingface.co/lab-cosmo/upet)
19
+ (BSD-3-Clause). See the LICENSE file in this repo.
20
+
21
+ ## Usage
22
+
23
+ ```python
24
+ from huggingface_hub import hf_hub_download
25
+ path = hf_hub_download(repo_id="peterspackman/mlip-gguf", filename="pet-mad-s.gguf")
26
+ ```
27
+
28
+ Or in the browser via `mlip.js`:
29
+
30
+ ```js
31
+ const buf = await fetch(
32
+ "https://huggingface.co/peterspackman/mlip-gguf/resolve/main/pet-mad-s.gguf"
33
+ ).then(r => r.arrayBuffer())
34
+ const model = await Model.loadFromBuffer(buf)
35
+ ```
36
+
37
+ ## Files
38
+
39
+ - `pet-mad-s.gguf` (95.4 MB)
40
+ - `pet-mad-xs.gguf` (16.3 MB)
41
+ - `pet-oam-l.gguf` (721.9 MB)
42
+ - `pet-omad-s.gguf` (95.4 MB)
43
+ - `pet-omad-xs.gguf` (16.3 MB)
44
+ - `pet-omat-s.gguf` (95.4 MB)
45
+ - `pet-omat-xs.gguf` (16.3 MB)
46
+ - `pet-spice-s.gguf` (53.4 MB)
47
+
48
+ ## Conversion
49
+
50
+ These files are produced by `scripts/convert_models.py` in the mlip.cpp repo,
51
+ which wraps `scripts/export_pytorch/export_pet_gguf.py` (an exact torch.export
52
+ of the PyTorch forward + backward graph into GGUF tensors + a graph interpreter
53
+ preamble).
pet-mad-s.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05f25bf3106826779df962b5dc119e0cca455a067093b3604bcb5962a98c12e4
3
+ size 100079744
pet-mad-xs.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:661bb2f84db8889694017310fdcdee3722be21b1907cc6f71ed03f21216b459f
3
+ size 17078880
pet-oam-l.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9151d89913d97d39fba09d2b8a3c2ab98d7e0fd2c2ead48e7765194ba25f22a5
3
+ size 756966976
pet-omad-s.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cecdc8117554d1e7abad62288c316fe00b468a30ae004954b1eda4b1f4244c87
3
+ size 100079744
pet-omad-xs.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b48d080823b8e9b786e95644a9b4135e8a94b2c88697f0d18c7d2cbbe36fd332
3
+ size 17078880
pet-omat-s.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74c6a37d9aad56c08c55e0d00653faf35a379cca26c91b84edde2336fd462ddb
3
+ size 100079744
pet-omat-xs.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:187cc71a82df41d1382d25e685eaa4cfde6162fafed6112c64450db7c191de88
3
+ size 17078880
pet-spice-s.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2789c138991484e16e8bfe40c874483f38977b66766f74639606a35e11792756
3
+ size 56005632