

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 대량 분석 출력 매니페스트
<a name="bulk-analysis-output-manifests"></a>

대량 분석 작업은 작업 결과를 포함하는 출력 매니페스트 파일과 더불어 입력 매니페스트 항목을 처리할 때 발생한 오류에 대한 통계 및 세부 정보가 포함된 매니페스트 요약을 생성합니다.

입력 매니페스트에 중복된 항목이 포함된 경우 작업은 고유한 입력을 필터링하지 않고 대신 제공된 모든 항목을 처리합니다.

출력 매니페스트 파일의 형식은 다음과 같습니다.

```
// Output manifest for content moderation
{"source-ref":"s3://foo/bar/1.jpg", "detect-moderation-labels": {"ModerationLabels":[],"ModerationModelVersion":"7.0","ContentTypes":[{"Confidence":72.7257,"Name":"Animated"}]}}
```

출력 매니페스트 요약의 형식은 다음과 같습니다.

```
{
    "version": "1.0",                # Schema version, 1.0 for GA.
    "statistics": {
        "total-json-lines": Number,  # Total number json lines (images) in the input manifest.
        "valid-json-lines": Number,  # Total number of JSON Lines (images) that contain references to valid images.
        "invalid-json-lines": Number # Total number of invalid JSON Lines. These lines were not handled.
    },
    "errors": [
        {
            "line-numer": Number,   # The number of the line in the manifest where the error occured.
            "source-ref": "String", # Optional. Name of the file if was parsed.
            "code": "String",       # Error code.
            "message": "String"     # Description of the error.
        }
     ]
}
```