doberst commited on
Commit
71d3bdb
·
verified ·
1 Parent(s): ebb116e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -9,7 +9,8 @@ inference: false
9
 
10
  **slim-sa-ner** combines two of the most popular traditional classifier functions (**Sentiment Analysis** and **Named Entity Recognition**), and reimagines them as function calls on a specialized decoder-based LLM, generating output consisting of a python dictionary with keys corresponding to sentiment, and NER identifiers, such as people, organization, and place, e.g.:
11
 
12
-     `{'sentiment': ['positive'], people': ['..'], 'organization': ['..'],'place': ['..]}`
 
13
 
14
  This 'combo' model is designed to illustrate the potential power of using function calls on small, specialized models to enable a single model architecture to combine the capabilities of what were traditionally two separate model architectures on an encoder.
15
 
 
9
 
10
  **slim-sa-ner** combines two of the most popular traditional classifier functions (**Sentiment Analysis** and **Named Entity Recognition**), and reimagines them as function calls on a specialized decoder-based LLM, generating output consisting of a python dictionary with keys corresponding to sentiment, and NER identifiers, such as people, organization, and place, e.g.:
11
 
12
+     `{'sentiment': ['positive'], people': ['..'], 'organization': ['..'],
13
+      'place': ['..]}`
14
 
15
  This 'combo' model is designed to illustrate the potential power of using function calls on small, specialized models to enable a single model architecture to combine the capabilities of what were traditionally two separate model architectures on an encoder.
16