doberst commited on
Commit
5780c74
1 Parent(s): fdd5d1d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -13
README.md CHANGED
@@ -8,9 +8,9 @@ license: apache-2.0
8
 
9
  **slim-sentiment-tool** is part of the SLIM ("Structured Language Instruction Model") model series, providing a set of small, specialized decoder-based LLMs, fine-tuned for function-calling.
10
 
11
- slim-sentiment-tool is a 4_K_M quantized GGUF version of slim-sentiment, providing a fast, small inference implementation.
12
 
13
- Load in your favorite GGUF inference engine (see details below on how to set up the prompt template), or try with llmware as follows:
14
 
15
  from llmware.models import ModelCatalog
16
 
@@ -18,7 +18,7 @@ Load in your favorite GGUF inference engine (see details below on how to set up
18
  sentiment_tool = ModelCatalog().load_model("slim-sentiment-tool")
19
  response = sentiment_tool.function_call(text_sample)
20
 
21
- # this one line will download the model and run a series of tests automatically
22
  ModelCatalog().test_run("slim-sentiment-tool", verbose=True)
23
 
24
 
@@ -45,18 +45,10 @@ Slim models can also be loaded even more simply as part of a multi-model, multi-
45
 
46
  <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
 
48
- The intended use of SLIM models is to re-imagine traditional 'hard-coded' classifiers by combining:
49
 
50
- - LLM function calls
51
-
52
- - Agents created with multiple models
53
-
54
- - Small specialized models 'built for purpose'
55
-
56
- - Quantization
57
 
58
- Please check out the config.json file included in the repository which includes details on the GGUF model, as well as a set of a
59
- test samples.
60
 
61
  Example:
62
 
 
8
 
9
  **slim-sentiment-tool** is part of the SLIM ("Structured Language Instruction Model") model series, providing a set of small, specialized decoder-based LLMs, fine-tuned for function-calling.
10
 
11
+ slim-sentiment-tool is a 4_K_M quantized GGUF version of slim-sentiment, providing a small, fast inference implementation.
12
 
13
+ Load in your favorite GGUF inference engine (see details in config.json to set up the prompt template), or try with llmware as follows:
14
 
15
  from llmware.models import ModelCatalog
16
 
 
18
  sentiment_tool = ModelCatalog().load_model("slim-sentiment-tool")
19
  response = sentiment_tool.function_call(text_sample)
20
 
21
+ # this one line will download the model and run a series of tests
22
  ModelCatalog().test_run("slim-sentiment-tool", verbose=True)
23
 
24
 
 
45
 
46
  <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
 
48
+ SLIM models provide a fast, flexible, intuitive way to integrate classifiers and structured function calls into RAG and LLM application workflows.
49
 
50
+ Model instructions, details and test samples have been packaged into the config.json file in the repository, along with the GGUF file.
 
 
 
 
 
 
51
 
 
 
52
 
53
  Example:
54