분류 전체보기

문제 설명 정수 num과 n이 매개 변수로 주어질 때, num이 n의 배수이면 1을 return n의 배수가 아니라면 0을 return하도록 solution 함수를 완성해주세요. 제한사항2 ≤ num ≤ 1002 ≤ n ≤ 9입출력 예numn result 98213430 입출력 예 설명입출력 예 #198은 2의 배수이므로 1을 return합니다.입출력 예 #232는 3의 배수가 아니므로 0을 return합니다.코드#include #include using namespace std;int solution(int num, int n) { int answer = int(not(num % n)); if ((2
· AI-900
Microsift Cloud = AzureAzure : 추론하는Scalable. reliavle cloud platform Data storageComputeServices Azure Machine LearningA platform for training, deploying, and managing machine learning models(기계 학습 모델을 교육, 배포 및 관리하기 위한 플랫폼)Cognitive ServicesA suite of services with four main pillars: Vision, Speech, Language, Decision(비전, 언어, 의사결정의 4가지 주요 요소가 포함된 서비스 제품군)Azure Bot ServiceA cloud-based platform f..
· 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광학 문자..
· AI-900
AI의 역사1950년  : AI 만들어짐1980년 : 머신러닝 등장(스팸메일 처리 기술)2006년 :  초반 딥러닝 등장(이세돌 VS 알파고)머신러닝이란?과거의 데이터를 기반으로 미래를 예측하는 기술 과거의 데이터 = 통계미래를 예측 = 확률머신 러닝의 종류지도학습(Supervised Machine Learning) : Training data includes known labels 회기(Regression) : Label is a numeric value예시) 요일, 계절, 날씨를 기반으로 자전거 대여 수 예측분류(Classification) : :Label is a categorization (or class)예시) 임상 측정을 기반으로 환자가 당뇨병에 걸릴 위험이 있는지 예측비지도학습(Unsuper..
페프
'분류 전체보기' 카테고리의 글 목록