File size: 690 Bytes
df494bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Email Processing DIET Model

DIET (Dual Intent and Entity Transformer) model trained for email processing.

## Model Capabilities

This model can extract:
- Email addresses
- Subject lines

And classify intents such as:
- provide_email
- provide_subject
- greeting
- thank_you
- goodbye

## Usage with Rasa

```python
from rasa.core.agent import Agent

# Load the model
agent = Agent.load('path/to/model')

# Use the model
async def test():
    result = await agent.parse_message('Email is john.doe@example.com')
    print(result)
```

## Model Information

- Model source: nlu-20250424-041833-grave-grouse.tar.gz
- Published date: 2025-04-24
- Framework: Rasa NLU with DIET architecture