|
| 1 | +# Dynamic Ontology Launch Announcement |
| 2 | + |
| 3 | +## Twitter/X Thread |
| 4 | + |
| 5 | +**Tweet 1:** |
| 6 | +Just shipped Dynamic Ontology - a schema-first approach to knowledge graphs that actually works. |
| 7 | + |
| 8 | +No vector embeddings. No expensive ML. Just your documents + automata + coverage signals. |
| 9 | + |
| 10 | +Here's what makes it different... |
| 11 | + |
| 12 | +**Tweet 2:** |
| 13 | +The problem with knowledge graphs: you build one but have no idea if it's working. |
| 14 | + |
| 15 | +Dynamic Ontology solves this with Coverage Signals - continuous quality governance that tells you exactly how well your extraction is performing. |
| 16 | + |
| 17 | +**Tweet 3:** |
| 18 | +We tested on 1,013 documents: |
| 19 | +- 4,090 domain terms extracted |
| 20 | +- Real concepts identified (ontology, schema, inference, entity) |
| 21 | +- Quality measurable and actionable |
| 22 | + |
| 23 | +Coverage: 70%+ = proceed, <20% = rethink approach |
| 24 | + |
| 25 | +**Tweet 4:** |
| 26 | +Built with Rust feature gates so you only pay for what you need: |
| 27 | +- `ontology` - core generic types (default) |
| 28 | +- `medical` - medical entity types |
| 29 | +- `hgnc` - gene normalization (EGFR, TP53, KRAS...) |
| 30 | + |
| 31 | +```bash |
| 32 | +cargo run --example kg_normalization -p terraphim_types |
| 33 | +``` |
| 34 | + |
| 35 | +**Tweet 5:** |
| 36 | +The best part: no vector embeddings required. Uses existing Aho-Corasick + fuzzy matching. Fast, deterministic, explainable. |
| 37 | + |
| 38 | +Docs: https://github.com/terraphim/terraphim-ai/tree/main/docs/src/dynamic-ontology.md |
| 39 | + |
| 40 | +Star us to follow the journey. |
| 41 | + |
| 42 | +--- |
| 43 | + |
| 44 | +## LinkedIn Post |
| 45 | + |
| 46 | +Excited to announce Dynamic Ontology - a practical approach to knowledge graphs that makes extraction quality visible. |
| 47 | + |
| 48 | +After months of research and implementation, we've shipped a schema-first methodology that: |
| 49 | + |
| 50 | +1. Extracts entities from your existing documents |
| 51 | +2. Builds ontology automatically |
| 52 | +3. Measures coverage continuously |
| 53 | +4. Grounds entities to canonical URIs |
| 54 | + |
| 55 | +The key insight? You don't need vector embeddings. The existing automata (Aho-Corasick + fuzzy matching) combined with graph ranking does the job - faster, cheaper, and more explainable. |
| 56 | + |
| 57 | +We tested on 1,013 documents and extracted 4,090 domain-specific terms. The system correctly identifies concepts like "knowledge graphs", "ontology", "schema", and "inference" - and importantly, tells you when it's missing something. |
| 58 | + |
| 59 | +Coverage signals provide continuous governance: |
| 60 | +- 70%+ coverage = ready to use |
| 61 | +- 40-70% = minor review needed |
| 62 | +- <20% = different approach needed |
| 63 | + |
| 64 | +Built with Rust feature gates for flexibility - enable medical types or HGNC gene normalization when you need it. |
| 65 | + |
| 66 | +Check out the docs and example in our GitHub repo. |
| 67 | + |
| 68 | +#KnowledgeGraph #AI #DataScience #Rust |
| 69 | + |
| 70 | +--- |
| 71 | + |
| 72 | +## Hacker News Submission |
| 73 | + |
| 74 | +**Title:** Dynamic Ontology: Schema-first knowledge graphs without vector embeddings |
| 75 | + |
| 76 | +**Body:** |
| 77 | +We've been working on a practical approach to knowledge graphs that doesn't require expensive vector embeddings or perfect schema design upfront. |
| 78 | + |
| 79 | +Key features: |
| 80 | +- Extract entities from documents automatically |
| 81 | +- Build ontology from your corpus |
| 82 | +- Coverage signals measure extraction quality |
| 83 | +- No ML infrastructure needed |
| 84 | + |
| 85 | +The insight: existing Aho-Corasick automata + fuzzy matching handles normalization fine. What we needed was a feedback loop - coverage signals that tell you what you're missing so you can expand intelligently. |
| 86 | + |
| 87 | +Tested on 1,013 documents - 4,090 terms extracted, domain concepts identified correctly. |
| 88 | + |
| 89 | +https://github.com/terraphim/terraphim-ai/tree/main/docs/src/dynamic-ontology.md |
| 90 | + |
| 91 | +--- |
| 92 | + |
| 93 | +## GitHub Release Notes |
| 94 | + |
| 95 | +## Dynamic Ontology v1.4 |
| 96 | + |
| 97 | +We're excited to announce Dynamic Ontology - a schema-first approach to knowledge graph construction. |
| 98 | + |
| 99 | +### What's New |
| 100 | + |
| 101 | +- **GroundingMetadata** - Canonical URIs for normalized entities |
| 102 | +- **CoverageSignal** - Quality governance signals |
| 103 | +- **SchemaSignal** - Entity extraction with confidence scores |
| 104 | +- **HgncNormalizer** - Gene normalization (EGFR, TP53, KRAS, etc.) |
| 105 | + |
| 106 | +### Feature Gates |
| 107 | + |
| 108 | +| Feature | Description | |
| 109 | +|---------|-------------| |
| 110 | +| `ontology` | Core generic types (default) | |
| 111 | +| `medical` | Medical entity types | |
| 112 | +| `hgnc` | HGNC gene normalization | |
| 113 | + |
| 114 | +### Example |
| 115 | + |
| 116 | +```bash |
| 117 | +cargo run --example kg_normalization -p terraphim_types |
| 118 | +cargo run --example ontology_usage -p terraphim_types --features hgnc |
| 119 | +``` |
| 120 | + |
| 121 | +### Documentation |
| 122 | + |
| 123 | +See [docs/src/dynamic-ontology.md](./docs/src/dynamic-ontology.md) for full documentation. |
| 124 | + |
| 125 | +### Breaking Changes |
| 126 | + |
| 127 | +- `ExtractedEntity.entity_type` is now `String` (was enum) - enables cross-domain use |
| 128 | +- `ExtractedRelationship.relationship_type` is now `String` (was enum) |
| 129 | +- Medical types moved to feature-gated `EntityType`/`RelationshipType` enums |
| 130 | + |
| 131 | +--- |
| 132 | + |
| 133 | +*For additional announcement formats or localization, let me know.* |
0 commit comments