doberst commited on
Commit
a912c1e
1 Parent(s): 844cbd3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -9
README.md CHANGED
@@ -1,25 +1,26 @@
1
  ---
2
- license: cc-by-sa-4.0
 
3
  ---
4
 
5
- # SLIM-SUMMARY-TOOL
6
 
7
  <!-- Provide a quick summary of what the model is/does. -->
8
 
9
 
10
- **slim-summary-tool** is a 4_K_M quantized GGUF version of slim-summary, providing a small, fast inference implementation, to provide high-quality summarizations of complex business documents, on a small, specialized locally-deployable model with summary output structured as a python list of key points.
11
 
12
- The size of the self-contained GGUF model binary is 1.71 GB, which is small enough to run locally on a CPU with reasonable inference speed, and has been designed to balance high-quality with the ability to deploy on a local machine.
13
 
14
  The model takes as input a text passage, an optional parameter with a focusing phrase or query, and an experimental optional (N) parameter, which is used to guide the model to a specific number of items return in a summary list.
15
 
16
- Please see the usage notes at: [**slim-summary**](https://huggingface.co/llmware/slim-summary)
17
 
18
 
19
  To pull the model via API:
20
 
21
  from huggingface_hub import snapshot_download
22
- snapshot_download("llmware/slim-summary-tool", local_dir="/path/on/your/machine/", local_dir_use_symlinks=False)
23
 
24
 
25
  Load in your favorite GGUF inference engine, or try with llmware as follows:
@@ -27,14 +28,14 @@ Load in your favorite GGUF inference engine, or try with llmware as follows:
27
  from llmware.models import ModelCatalog
28
 
29
  # to load the model and make a basic inference
30
- model = ModelCatalog().load_model("slim-summary-tool")
31
  response = model.function_call(text_sample)
32
 
33
  # this one line will download the model and run a series of tests
34
- ModelCatalog().tool_test_run("slim-summary-tool", verbose=True)
35
 
36
 
37
- Note: please review [**config.json**](https://huggingface.co/llmware/slim-summary-tool/blob/main/config.json) in the repository for prompt wrapping information, details on the model, and full test set.
38
 
39
 
40
  ## Model Card Contact
 
1
  ---
2
+ license: apache-2.0
3
+ inference: false
4
  ---
5
 
6
+ # SLIM-SUMMARY-TINY-TOOL
7
 
8
  <!-- Provide a quick summary of what the model is/does. -->
9
 
10
 
11
+ **slim-summary-tiny-tool** is a 4_K_M quantized GGUF version of slim-summary-tiny, providing a small, fast inference implementation, to provide high-quality summarizations of complex business documents, on a small, specialized locally-deployable model with summary output structured as a python list of key points.
12
 
13
+ The size of the self-contained GGUF model binary is ~700 MB, which is small enough to run locally on a CPU with reasonable inference speed, and has been designed to balance high-quality with the ability to deploy on a local machine.
14
 
15
  The model takes as input a text passage, an optional parameter with a focusing phrase or query, and an experimental optional (N) parameter, which is used to guide the model to a specific number of items return in a summary list.
16
 
17
+ Please see the usage notes at: [**slim-summary-tiny**](https://huggingface.co/llmware/slim-summary-tiny)
18
 
19
 
20
  To pull the model via API:
21
 
22
  from huggingface_hub import snapshot_download
23
+ snapshot_download("llmware/slim-summary-tiny-tool", local_dir="/path/on/your/machine/", local_dir_use_symlinks=False)
24
 
25
 
26
  Load in your favorite GGUF inference engine, or try with llmware as follows:
 
28
  from llmware.models import ModelCatalog
29
 
30
  # to load the model and make a basic inference
31
+ model = ModelCatalog().load_model("slim-summary-tiny-tool")
32
  response = model.function_call(text_sample)
33
 
34
  # this one line will download the model and run a series of tests
35
+ ModelCatalog().tool_test_run("slim-summary-tiny-tool", verbose=True)
36
 
37
 
38
+ Note: please review [**config.json**](https://huggingface.co/llmware/slim-summary-tiny-tool/blob/main/config.json) in the repository for prompt wrapping information, details on the model, and full test set.
39
 
40
 
41
  ## Model Card Contact