pvl commited on
Commit
383abaa
1 Parent(s): 20d9437

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -6
README.md CHANGED
@@ -1,16 +1,21 @@
1
  ---
2
  language:
3
  - en
 
4
  ---
5
 
6
- # User Flow Text Classification
7
 
8
- This model is a fined-tuned version of [nreimers/MiniLMv2-L6-H384-distilled-from-RoBERTa-Large](https://huggingface.co/nreimers/MiniLMv2-L6-H384-distilled-from-RoBERTa-Large).
9
- The quantized version in ONNX format can be found [here](https://huggingface.co/minuva/MiniLMv2-userflow-v2-onnx)
 
10
 
11
- The model identifies common events and patterns within the conversation flow. Such events include an apology, where the agent acknowledges a mistake, and a complaint, when a user expresses dissatisfaction.
 
 
 
 
12
 
13
- This model should be used *only* for user dialogs.
14
 
15
  # Load the Model
16
 
@@ -79,4 +84,4 @@ pipe("This is wrong")
79
 
80
  # Deployment
81
 
82
- Check [our repository](https://github.com/minuva/flow-cloudrun) to see how to easily deploy this (quantized) model in a serverless environment with fast CPU inference and light resource utilization.
 
1
  ---
2
  language:
3
  - en
4
+ license: apache-2.0
5
  ---
6
 
7
+ # LLM user flow classification
8
 
9
+ This model identifies common events and patterns within the conversation flow.
10
+ Such events include, for example, complaint, when a user expresses dissatisfaction.
11
+ The flow labels can serve as foundational elements for sophisticated LLM analytics.
12
 
13
+ It is ONNX quantized and is a fined-tune of [MiniLMv2-L6-H384](https://huggingface.co/nreimers/MiniLMv2-L6-H384-distilled-from-RoBERTa-Large).
14
+ The base model can be found [here](https://huggingface.co/minuva/MiniLMv2-agentflow-v2)
15
+
16
+ This model is used *only* for the user texts.
17
+ For the LLM texts in the dialog use this [agent model](https://huggingface.co/minuva/MiniLMv2-agentflow-v2).
18
 
 
19
 
20
  # Load the Model
21
 
 
84
 
85
  # Deployment
86
 
87
+ Check our [llm-flow-classification repository](https://github.com/minuva/llm-flow-classification) for a FastAPI and ONNX based server to deploy this model on CPU devices.