You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
training claims for videos that may not have been run through claim extraction
Here’s a proposed revised schema. This is WIP, and it may also be more complicated than we really need. But hopefully it should capture the things mentioned above. UPDATE: @dcorney, @ff-dh, @JamesMcMinn and @andylolz discussed and agreed the following:
erDiagram
youtube_videos ||--o{ claim_extraction_runs : runs
youtube_videos {
text id
text metadata
text transcript
}
claim_extraction_runs ||--o{ inferred_claims : claims
claim_extraction_runs {
integer id PK
text youtube_id FK
text model
text status
integer timestamp
}
inferred_claims {
integer id PK
integer run_id FK
text claim
text raw_sentence_text
text labels
real offset_start_s
real offset_end_s
}
training_claims {
integer id PK
text youtube_id
text claim
text labels
}
Loading
The text was updated successfully, but these errors were encountered:
The current database schema (#62 (comment)) has a few gaps. We’d like to store the following things:
Here’s a proposed revised schema.
This is WIP, and it may also be more complicated than we really need. But hopefully it should capture the things mentioned above.UPDATE: @dcorney, @ff-dh, @JamesMcMinn and @andylolz discussed and agreed the following:The text was updated successfully, but these errors were encountered: