mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
14 lines
264 B
Ruby
14 lines
264 B
Ruby
class DocumentCategory < ApplicationRecord
|
|
belongs_to :document_analysis
|
|
|
|
scope :relevant, -> { where('score > 0.85') }
|
|
|
|
def parent_categories
|
|
self.label.split('/')[1..-2].join('/')
|
|
end
|
|
|
|
def terminal_category
|
|
self.label.split('/').last
|
|
end
|
|
end
|