Update README.md
Browse files
README.md
CHANGED
|
@@ -8,19 +8,23 @@ metrics:
|
|
| 8 |
model-index:
|
| 9 |
- name: MiniLMv2-L6-H384-distilled-from-RoBERTa-Large-agentflow-distil
|
| 10 |
results: []
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 14 |
should probably proofread and complete it, then remove this comment. -->
|
| 15 |
|
| 16 |
-
#
|
| 17 |
|
| 18 |
-
This model
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
The quantized version in ONNX format can be found [here](https://huggingface.co/minuva/MiniLMv2-agentflow-v2-onnx)
|
| 20 |
|
| 21 |
-
|
| 22 |
|
| 23 |
-
This model should be used only for agent dialogs.
|
| 24 |
# Load the Model
|
| 25 |
|
| 26 |
```py
|
|
@@ -64,4 +68,4 @@ pipe("thats my mistake")
|
|
| 64 |
|
| 65 |
# Deployment
|
| 66 |
|
| 67 |
-
Check
|
|
|
|
| 8 |
model-index:
|
| 9 |
- name: MiniLMv2-L6-H384-distilled-from-RoBERTa-Large-agentflow-distil
|
| 10 |
results: []
|
| 11 |
+
license: apache-2.0
|
| 12 |
---
|
| 13 |
|
| 14 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 15 |
should probably proofread and complete it, then remove this comment. -->
|
| 16 |
|
| 17 |
+
# LLM agent flow classification
|
| 18 |
|
| 19 |
+
This model identifies common events and patterns within the conversation flow.
|
| 20 |
+
Such events include an apology, where the LLM acknowledges a mistake.
|
| 21 |
+
The flow labels can serve as foundational elements for sophisticated LLM analytics.
|
| 22 |
+
|
| 23 |
+
It is a fined-tuned version of [MiniLMv2-L6-H384](https://huggingface.co/nreimers/MiniLMv2-L6-H384-distilled-from-RoBERTa-Large).
|
| 24 |
The quantized version in ONNX format can be found [here](https://huggingface.co/minuva/MiniLMv2-agentflow-v2-onnx)
|
| 25 |
|
| 26 |
+
This model is *only* for the LLM agent texts in the dialog. For the user texts [use this model](https://huggingface.co/minuva/MiniLMv2-userflow-v2).
|
| 27 |
|
|
|
|
| 28 |
# Load the Model
|
| 29 |
|
| 30 |
```py
|
|
|
|
| 68 |
|
| 69 |
# Deployment
|
| 70 |
|
| 71 |
+
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.
|