반응형

Azure 13

로컬 VSCode로 Azure Blob Storage Trigger Function개발하기

Azure Blob Storage Trigger의 Azure Function을 개발하고 싶다. 디버깅을 위해서 Local 의 VSCode 에서 실행해 로그를 찍어보고 싶다. 0. Azure Functions Core Tools 설치 Work with Azure Functions Core Tools Learn how to code and test Azure Functions from the command prompt or terminal on your local computer before you run them on Azure Functions. learn.microsoft.com Local 환경에서 Azure functions 개발을 하기 위해서는 Azure Functions Core Tools 설치가..

Azure 2023.07.06

Form Recognizer의 Custom Neural Model을 이용해 문서의 Key-Value 추출하기

💡 Form Recognizer의 Custom Neural Model을 이용해 동적인 문서의 Key-Value 추출 해본다. Form Recognizer 에서 생성한 Template 기반의 Custom Model은, 특정 템플릿에 대한 Key-Value 를 추출하는 기능이었다. 하지만 템플릿의 순서가 변경되거나, 값이 추가되어 양식이 변경되게 되면 템플릿 기반에서는 데이터를 정상적으로 추출 해 올 수 없다. 그래서 Neural 모델로 Custom model을 생성하여 템플릿의 변형이 있을 경우에도 정확한 데이터를 추출할 수 있다. 사용자 지정 신경망 문서 모델 - Form Recognizer - Azure Applied AI Services 사용자 지정 신경망 문서 모델을 사용하여 구조적, 반구조적 및 ..

Azure 2023.07.04

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

Form Recognizer로 Azure Blob Storage의 파일을 읽어 텍스트 추출해보기

from azure.core.credentials import AzureKeyCredential from azure.ai.formrecognizer import DocumentAnalysisClient from azure.storage.blob import ContainerClient endpoint = "FORM_RECOGNIZER_END_POINT" key = "FORM_RECOGNIZER_KEY" def get_blob_url(): STORAGE_CONSTR = "BLOB_STORAGE_CONNECTION_STRING" SOURCE_NAME = "BLOB_STORAGE_CONTAINER_NAME" FILE_NAME = "sample.pdf" container = ContainerClient.from..

Azure 2023.06.28

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

Power Apps와 Power Automate를 이용해 Azure Blob Storage의 PDF파일 Viewer로 보여주기

Power Apps에서 기본제공하는 PDF Viewer 컴포넌트를 사용해, 등록한 PDF 파일을 보여주려고한다. Azure Blob Storage에서 파일의 URL을 찾아, 해당 컴포넌트에서 불려오려고 하니 정상적으로 가져오지를 못했다. 그래서 아래와 같이 Power Automate를 이용해 가져와야 했다. Reference Real World PowerApps - How to view SharePoint PDF's in PowerApps (with some help from Flow) Real World PowerApps - How to view SharePoint PDF's in PowerApps (with some help from Flow) In this video Daniela (citizen ..

Azure 2022.09.29

Power Apps를 이용해 Upload Template 설정하기

Power Apps를 이용해 Azure Blob Storage를 연결했다. 이제 Power Apps 에서 파일 업로드를 해본다. 근데 컴포넌트에서 아무리 찾아도 file upload 를 못찾겟다.... 그래서 아래와 같은 방법으로 진행했다. Reference Power Apps File Upload Power Apps File Upload Das ist die englische Version des Artikels. Die deutsche Version findet ihr hier: In this article I summarize my experiences and network research on the subject of file uploads in Power Apps Canvas… stefanri..

Azure 2022.09.29

Power Apps를 이용해 Azure Blob Storage 에 연결하기

1. Add Azure Blob Storage connection 사용할 Azure Blob Storage 를 연결하는 작업 [데이터] → [검색] → [Azure Blob Storage] 2. Azure Blob Storage 리스트 가져오기 2.1. 세로 갤러리 생성 (예시) 2.2. Blob Storage 연결 [속성] → [데이터 원본] 2.3. Container 연결 2.4. 레이아웃 설정 보여줄 레이아웃을 선택 Container 가져오기 datasheet.ListRootFolderV2().value Container 하위 Directory 가져오기 datasheet.ListFolderV2(container_name.Selected.Id).value Directory 하위 파일 가져오기 data..

Azure 2022.09.29

Azure Oracle Database(19c) 생성 후 Azure Data Factory(ADF) 연결

0. Oracle Database VM 설치 참고 url : Create an Oracle database in an Azure VM - Azure Virtual Machines Create an Oracle database in an Azure VM - Azure Virtual Machines Quickly get an Oracle Database 12c database up and running in your Azure environment. docs.microsoft.com 1. 기본환경구성 1.1 VM Disk attach az vm disk attach --name oradata01 --new --resource-group oracle-19-test-rg --size-gb 64 --sku Sta..

Azure 2022.09.14
반응형