Spaces:
Sleeping
Sleeping
clone llama.cpp instead of submodule
Browse files- .gitmodules +0 -3
- description.md +1 -1
- install-llamacpp.sh +1 -0
- llama.cpp +0 -1
.gitmodules
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
[submodule "llama.cpp"]
|
2 |
-
path = llama.cpp
|
3 |
-
url = https://github.com/nopperl/llama.cpp
|
|
|
|
|
|
|
|
description.md
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
Upload (or link to an URL of) a sustainability report PDF and get the most recent scope 1, 2 and 3 greenhouse gas emissions reported in the document. Since this space does not use a GPU,
|
2 |
|
3 |
Notes about the output: the emission values are in metric tons of CO2eq. The `sources` field is a list of pages containing the emission values. The page numbers are 0-based, e.g. the number 12 will correspond to page number 13 in your PDF viewer.
|
|
|
1 |
+
Upload (or link to an URL of) a sustainability report PDF and get the most recent scope 1, 2 and 3 greenhouse gas emissions reported in the document. Since this space does not use a GPU, the process will take quite a while. The system was developed for English documents.
|
2 |
|
3 |
Notes about the output: the emission values are in metric tons of CO2eq. The `sources` field is a list of pages containing the emission values. The page numbers are 0-based, e.g. the number 12 will correspond to page number 13 in your PDF viewer.
|
install-llamacpp.sh
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
#!/bin/sh
|
|
|
2 |
if [ ! -f llama.cpp/build/bin/main ]; then
|
3 |
cd llama.cpp
|
4 |
mkdir build
|
|
|
1 |
#!/bin/sh
|
2 |
+
git clone https://github.com/nopperl/llama.cpp
|
3 |
if [ ! -f llama.cpp/build/bin/main ]; then
|
4 |
cd llama.cpp
|
5 |
mkdir build
|
llama.cpp
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
Subproject commit f172de03f11465dc6c5a0fc3a22f8ec254c6832c
|
|
|
|