· AI-900
NLP 구성 5가지텍스트 분석 및 엔티티 인식(Text analysis and entity recognition)감정 분석(Sentiment analysis)음성 인식 및 합성(Speech recognition and sysnthesis)기계 번역(Machine translation)의미 체계적 언어 모델링(Semantic language modeling)Microsoft에서의 NLP 서비스 4가지Language Language detectionKey phrase extractionEntity detectionSentiment AnalysisQuestion answeringConversational language understandingSpeechText to speechSpeech to textSpe..
· AI-900
컴퓨터 비전이란?이미지 분류(Image Classification) 객체 감지(Object Detection)의미 체계 구분(Semantic Segmentation)이미지 분석(Image Analysis : Caption or Description)얼굴 인식(Face Detection & Recognition)광학 문자 인식 (OCR : Optical Character Recognition)Microsoft에서의 Computer Vision 서비스 4가지Computer Vision이미지 분석(Image analysis - automated captioning and tagging)객체 감지(Common object detection)얼굴 인식(Face detection)Smart cropping광학 문자..
· Basics
C#을 활용하여 BMI 계산기를 만들어 보았다. 우선 BMI는 체중(kg)/키(m)으로 계산된다. 난 아직 C++밖에 배우지 않았기에 C++과 C#의 입출력의 차이점을 알아야 한다. C++은 cin, cout으로 입출력을 하는 반면 C#은 Console.ReadLine(), Console.WriteLine()으로 입출력이 한다. int age를 입력하려면 C++ 에선 cin >>age; 란 식을 사용했다. C#에선 string s= Console.ReadLine() int age = int.Parse(s);란 식을 사용하는데 이때 int.Parse(s)는 변수 s를 정수로 번역해라 라는 말이다. 이렇게 하는 이유는 C#에선 모든 입력값을 string으로 받는다. 그렇기 때문에 입력값을 숫자로 변환시키기 ..
페프
FFeFF SPACE