FAI_EVALUATION_RUNS
This table stores information about evaluation runs.
Details
-
Schema: FUSION
-
Object owner: FAI
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
FAI_EVALUATION_RUNS_PK |
EVAL_RUN_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| EVAL_RUN_ID | NUMBER | 18 | Yes | Autogenerated number and primary key for this table. | |
| EVAL_ID | NUMBER | 18 | Yes | Foreign key to the FAI_EVALUATIONS table. | |
| TARGET_OBJ_STATE | VARCHAR2 | 20 | Yes | The state of the Workflow or Prompt used in the evaluation run. | |
| SESSION_ID | VARCHAR2 | 800 | Session ID related to the evaluation run. | ||
| START_TIME | TIMESTAMP | Yes | Start time of the evaluation run. | ||
| END_TIME | TIMESTAMP | End time of the evaluation run. | |||
| STATUS | VARCHAR2 | 64 | Yes | The status of the evaluation run. | |
| EVAL_SPEC | CLOB | A snaphot of evaluation configurations in JSON format used for the evaluation run. | |||
| MEDIAN_CORRECTNESS | NUMBER | 18 | Median correctness of the evaluation run. | ||
| MEDIAN_LATENCY | NUMBER | 18 | Median latency of the evaluation run. | ||
| ERROR_COUNT | NUMBER | 18 | Error count of the evaluation run. | ||
| INPUT_TOKENS_COUNT | NUMBER | 18 | The number of input tokens in the evaluation run. | ||
| OUTPUT_TOKENS_COUNT | NUMBER | 18 | The number of output tokens in the evaluation run. | ||
| JOBS_COUNT | NUMBER | 18 | The number of jobs for the evaluation run. | ||
| GROUNDEDNESS | NUMBER | 18 | Correctness of the evaluation run | ||
| ANSWER_RELEVANCE | NUMBER | 18 | Answer relevance of the evaluation run | ||
| CONTEXT_RELEVANCE | NUMBER | 18 | Context relevance of the evaluation run | ||
| COVERAGE | NUMBER | 18 | Stores the coverage metrics of the evaluation run | ||
| OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. | |
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
| LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
| LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| FAI_EVALUATION_RUNS_N1 | Non Unique | Default | EVAL_ID |
| FAI_EVALUATION_RUNS_N2 | Non Unique | Default | STATUS |
| FAI_EVALUATION_RUNS_U1 | Unique | Default | EVAL_RUN_ID |