samurai9776 commited on
Commit
59e7419
·
verified ·
1 Parent(s): 53e60bd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +6 -3
README.md CHANGED
@@ -12,6 +12,7 @@ models:
12
  ---
13
 
14
  # Thought Completion Classifier Demo
 
15
 
16
  This demo showcases an advanced conversation classifier that determines if a customer's response represents a complete or incomplete thought.
17
 
@@ -26,7 +27,9 @@ This demo showcases an advanced conversation classifier that determines if a cus
26
  2. Enter a Customer utterance (how they responded)
27
  3. Click "Classify" to see if the thought is complete or incomplete
28
 
29
- The model uses linguistic rules for common patterns and falls back to a neural network for complex cases.
 
 
 
30
 
31
- ## Model
32
- This demo uses [samurai9776/thought-classifier](https://huggingface.co/samurai9776/thought-classifier) with a custom pipeline that includes linguistic rules.
 
12
  ---
13
 
14
  # Thought Completion Classifier Demo
15
+ Last updated: 2025-08-01 05:29:12
16
 
17
  This demo showcases an advanced conversation classifier that determines if a customer's response represents a complete or incomplete thought.
18
 
 
27
  2. Enter a Customer utterance (how they responded)
28
  3. Click "Classify" to see if the thought is complete or incomplete
29
 
30
+ ## Rule Logic
31
+ - **Complete**: Exact matches only (e.g., "yes", "no", "that's all")
32
+ - **Incomplete**: Ends with specific words (e.g., "a", "and", "to")
33
+ - **Otherwise**: Uses neural model
34
 
35
+ The model uses linguistic rules for common patterns and falls back to a neural network for complex cases.