> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Evaluation 재채점

> 기존 Evaluation run을 다른 Scorer로 다시 채점합니다.

제공된 Scorer를 source_evaluation_run_id의 예측에 적용하고
새 evaluation_run_id를 반환합니다. 원래 예측 Call ID는 유지됩니다.



## OpenAPI

````yaml /ko/weave/reference/service-api/openapi.json post /evaluations/rescore
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /evaluations/rescore:
    post:
      tags:
        - Evaluations
      summary: Evaluation 재채점
      description: |-
        기존 Evaluation run을 다른 Scorer로 다시 채점합니다.

        제공된 Scorer를 source_evaluation_run_id의 예측에 적용하고
        새 evaluation_run_id를 반환합니다. 원래 예측 Call ID는 유지됩니다.
      operationId: rescore_evaluation_evaluations_rescore_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RescoreReq'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RescoreRes'
          description: 성공 응답
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: 검증 오류
components:
  schemas:
    RescoreReq:
      description: 서버에서 설정한 필드를 포함한 전체 재채점 요청입니다.
      properties:
        project_id:
          title: Project Id
          type: string
        scorer_refs:
          description: 적용할 Scorer 레퍼런스(weave:// URI)이며, 비어 있으면 안 됩니다.
          items:
            type: string
          minItems: 1
          title: Scorer Refs
          type: array
        source_evaluation_run_id:
          description: 예측을 재채점할 evaluation run입니다.
          title: Source Evaluation Run Id
          type: string
        wb_user_id:
          anyOf:
            - type: string
            - type: 'null'
          description: 직접 설정하지 마세요. 서버가 이 필드를 자동으로 채웁니다.
          title: Wb User Id
      required:
        - source_evaluation_run_id
        - scorer_refs
        - project_id
      title: RescoreReq
      type: object
    RescoreRes:
      description: 재채점 요청에 대한 응답입니다.
      properties:
        call_id:
          description: /evaluations/status 폴링용 Call ID입니다.
          title: Call Id
          type: string
        evaluation_run_id:
          description: 새로 생성된 EvaluationRun ID입니다.
          title: Evaluation Run Id
          type: string
      required:
        - call_id
        - evaluation_run_id
      title: RescoreRes
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````