12 lines
329 B
Go
12 lines
329 B
Go
package models
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type TrainingData struct {
|
|
gorm.Model
|
|
Features string `gorm:"type:JSONB; not null" json:"features"`
|
|
Label string `gorm:"type:varchar(255)" json:"label"`
|
|
Probability float64 `gorm:"type:decimal(5,4)" json:"probability"`
|
|
SessionID string `gorm:"index" json:"session_id"`
|
|
}
|