반응형

CognitiveService 3

Form Recognizer의 학습된 Custom model을 기준으로 Azure Blob Storage의 pdf 파일 Python으로 분석하기

Form Recognizer를 사용해 custom model 활용해보기 Azure Cognitive Service의 Form Recognizer 사용해 보기 Azure Cognitive Service인 Form Recognizer 사용해본다. 구버전 tool Form OCR Testing Tool fott.azurewebsites.net 신버전 tool Form Recognizer Studio - Microsoft Azure formrecognizer.appliedai.azure.com 여기서는 새로운 버전을 사용해본 whiseung.tistory.com Form Recognizer를 사용해 Azure Blob Storage의 pdf 파일 분석해보기 Form Recognizer로 Azure Blob St..

Azure 2023.06.30

Form Recognizer의 Custom model을 python을 이용해 가져오기

구 버전(2022-08-31 이)에서 model 가져오기 from azure.core.credentials import AzureKeyCredential from azure.ai.formrecognizer import FormTrainingClient # 구독 키와 엔드포인트 설정 endpoint = "FORM_RECOGNIZER_ENDPOINT" key = "FORM_RECOGNIZER_KEY" # AzureKeyCredential 생성 credential = AzureKeyCredential(subscription_key) # FormTrainingClient 인스턴스 생성 training_client = FormTrainingClient(endpoint, credential) # 계정의 모델에 대한..

Azure 2023.06.29

Azure Cognitive Service의 Form Recognizer 사용해 보기

Azure Cognitive Service인 Form Recognizer 사용해본다. 구버전 tool Form OCR Testing Tool fott.azurewebsites.net 신버전 tool Form Recognizer Studio - Microsoft Azure formrecognizer.appliedai.azure.com 여기서는 새로운 버전을 사용해본다. 이유는 제일 아래... 1. 프로젝트 생성 Form Recognizer Studio 아래쪽으로 이동하면 [Custmo models] - [Create new] 버튼으로 프로젝트 생성화면으로 이한다. [Create a project] 버튼으로 새로운 프로젝트를 생성한다. 프로젝트 정보들을 입력해준다. 리소스를 입력해준다. 한국리전에서 생성한 ..

Azure 2023.06.23
반응형