Skip to content

Commit

Permalink
Adds TermFingerprint to class diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-bernhardt committed Nov 13, 2024
1 parent e756e91 commit 41184d0
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions docs/reference/classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classDiagram
direction LR
Term --> SearchEvent : has many
TermFingerprint --> Term : has many
Term "1" --> "1..*" Detection
Term "1" --> "0..*" Categorization
Expand All @@ -41,8 +42,15 @@ classDiagram
class Term
Term: id
Term: +String phrase
Term: combinedScores()
Term: recordDetections()
Term: calculate_categorizations()
Term: calculate_confidence(values)
Term: cluster()
Term: fingerprint()
Term: record_detections()
class TermFingerprint
TermFingerprint: id
TermFingerprint: +String fingerprint
class SearchEvent
SearchEvent: +Integer id
Expand Down Expand Up @@ -111,6 +119,7 @@ classDiagram
namespace SearchActivity{
class Term
class TermFingerprint
class SearchEvent
}
Expand All @@ -136,6 +145,7 @@ classDiagram
style SearchEvent fill:#000,stroke:#66c2a5,color:#66c2a5,stroke-width:4px;
style Term fill:#000,stroke:#66c2a5,color:#66c2a5,stroke-width:4px;
style TermFingerprint fill:#000,stroke:#66c2a5,color:#66c2a5,stroke-width:4px;
style Category fill:#000,stroke:#fc8d62,color:#fc8d62
style DetectorCategory fill:#000,stroke:#fc8d62,color:#fc8d62
Expand Down

0 comments on commit 41184d0

Please sign in to comment.