반응형
학부공부/빅데이터기술2019. 3. 16. 17:22머신러닝 프로젝트 과정

머신러닝 프로젝트의 과정 1. 문제를 정의2. 머신러닝을 사용하지 않는 방법은 없는지 검토3. 시스템을 설계4. 사용할 알고리즘을 선택5. 특징과 정답 , 데이터 , 로그를 설계6. 데이터를 전처리7. 학습을 수행하고 파라미터를 튜닝8. 시스템에 통합 이 과정을 다음처럼 설명할 수 있다. 1. 해결하려는 문제를 머신러닝으로 풀 수 있는 문제로 바꾸기 2. 문제를 풀기 위한 도구 선택 및 전처리 3. 모델 구축하기 4. 기존 서비스에 통합하기 머신러닝으로 해결한 사례를 찾으면 다음 세 가지 사항을 중점적으로 살펴봐야 한다. 1. 어떤 알고리즘을 사용했는가??2. 어떤 데이터를 특징으로 사용했는가??3. 머신러닝 부분을 어떻게 통합했는가?? 위와 같은 방법으로 진행하다 보면 , 어떤 것이 가능하고 가능하지 ..

카테고리 없음2019. 3. 10. 23:11QUESTION NO: 34

QUESTION NO: 34 The data set RALESTATE has the variable LOCALFEE with a format or 9. and a variable COUNTRYFEE with a format or 7.;The following SAS program is submitted: data history; format local fee country fee percent6.; set realestate; local fee = local fee / 100; country fee = country fee / 100; run; What are the formats of the variables LOCALFEE and COUNTRYFEE in the output dataset? A. LO..

카테고리 없음2019. 3. 10. 23:00QUESTION NO: 33

QUESTION NO: 33 The following SAS program is submitted: data temp.x; set sasuser.y; run; What must be submitted prior to this SAS program for the program to execute successfully? A. A LIBNAME statement for thelibref TEMP only must be submitted. B. A LIBNAME statement for thelibref SASUSER only must be submitted. C. LIBNAME statements for thelibrefs TEMP and SASUSER must be submitted. D. No LIBNA..

카테고리 없음2019. 3. 10. 22:54QUESTION NO: 32

QUESTION NO: 32 Given the raw data file EMPLOYEE: ----I----1 0---I----20---I----30 Ruth 39 11 Jose 32 22 Sue 30 33 John 40 44 The following SAS program is submitted: data test; infile'employee'; input employee_name $ 1-4; if employee_name = 'Ruth' then input idnum 10-11; else input age 7-8; run; What value does the variable IDNUM contain when the name of the employee is "Ruth"? A. 11 B. 22 C. 33..

카테고리 없음2019. 3. 10. 22:18QUESTION NO: 31

QUESTION NO: 31 Given the AIRPLANES data set AlRPLANES TYPE MPG F-18 105 C-130 25 Harrier 75 A-6 110 The following SAS program is submitted: data gt100; set airplanes(keep = type mpg load); load = mpg * 150; run; The program fails to execute due to syntax errors. What is the cause of the syntax error? A. MPG is not a numeric variable. B. LOAD is not a variable in the data set GT100. C. LOAD is n..

카테고리 없음2019. 3. 10. 22:11QUESTION NO: 30

QUESTION NO: 30 The following SAS program is submitted: data test; set chemists; if jobcode= 'Chem2' then description = 'Senior Chemist'; else description = 'Unknown'; run; The value for the variable JOBCODE is: JOBCODE chem2 What is the value of the variable DESCRIPTION? A. chem2 B. Unknown C. Senior Chemist D. ' ' (missing character value) Answer: B Solution : chem2를 직접 대입해 보면 처음에 if문과 비교하게 된다..

반응형
image