Commit dcaf52c
fix(example): remove dead NeuralTagger reference from aspect_tagging_demo
NeuralTagger was imported and instantiated at line 7 + 104 but has never
existed in src/rust/aspect.rs (verified: zero `pub struct NeuralTagger`
matches anywhere in the workspace). The import broke
cargo check --example aspect_tagging_demo with E0432.
Removed the import + the .add_tagger(Box::new(NeuralTagger::new()), 0.5)
call. CompositeTagger now ships with the single RuleBasedTagger which
is what actually drives the demo. Left an inline comment for the future
neural tagger integration (likely via Julia /predict or src/rust/neural.rs).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent bde23ab commit dcaf52c
1 file changed
Lines changed: 6 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
99 | 99 | | |
100 | 100 | | |
101 | 101 | | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
102 | 106 | | |
103 | | - | |
104 | | - | |
| 107 | + | |
105 | 108 | | |
106 | 109 | | |
107 | 110 | | |
| |||
0 commit comments