PowerPoint Presentation

Size: px
Start display at page:

Download "PowerPoint Presentation"

Transcription

1 마음과목소리를이해하는인공지능보이스봇만들어보기 안태규차장이지은과장 Client Solutions Professional Data Science & AI, IBM Korea

2 Agenda How to Start VoiceBot Speech to Text Text to Speech Watson Assistant SIP Service Watson Voice Agent Lessons Learned

3 VoiceBot 을만들어봅시다

4 IBM ID 및인공지능서비스 API 만들기

5 IBM ID 및인공지능서비스 API 만들기

6 IBM ID 및인공지능서비스 API 만들기

7 IBM ID 및인공지능서비스 API 만들기

8 IBM ID 및인공지능서비스 API 만들기

9 IBM ID 및인공지능서비스 API 만들기

10 IBM ID 및인공지능서비스 API 만들기

11 IBM ID 및인공지능서비스 API 만들기

12 IBM ID 및인공지능서비스 API 만들기

13 IBM ID 및인공지능서비스 API 만들기

14 IBM ID 및인공지능서비스 API 만들기

15 IBM ID 및인공지능서비스 API 만들기

16 IBM ID 및인공지능서비스 API 만들기

17 IBM ID 및인공지능서비스 API 만들기

18 IBM ID 및인공지능서비스 API 만들기

19 IBM ID 및인공지능서비스 API 만들기

20 IBM ID 및인공지능서비스 API 만들기

21 IBM ID 및인공지능서비스 API 만들기

22 IBM ID 및인공지능서비스 API 만들기

23 IBM ID 및인공지능서비스 API 만들기

24 IBM ID 및인공지능서비스 API 만들기

25 IBM ID 및인공지능서비스 API 만들기

26 IBM ID 및인공지능서비스 API 만들기

27 IBM ID 및인공지능서비스 API 만들기

28 IBM ID 및인공지능서비스 API 만들기

29 IBM ID 및인공지능서비스 API 만들기

30 IBM ID 및인공지능서비스 API 만들기

31 IBM ID 및인공지능서비스 API 만들기

32 Watson Speech to Text 왓슨의한국어음성인식 API

33 Speech To Text Watson STT Speech To Text 약 4.3 초 차가퍼져서갓길로견인이필요해 Input Streaming 차가퍼져서갓길로견인이필요해 실시간 고객발화인식시간단축 Speech To Text Request By File (MP3 / Wav) 차가퍼져서갓길로견인이필요해음성파일스캔및분석시간 준실시간 차가퍼져서갓길로견인이필요해

34 Speech To Text - Demo Narrowband (8kHz) 전화상에서의대화를뜻하며, 콜센터프로젝트등이사용되는주파수. Broadband (16kHz) 발화나일반적인대화를뜻하며인공지능스피커등에사용.

35 일반적인 Speech To Text 트레이닝데이터생성과정 (1/2) 학습데이터는 수집된음성파일에대한스크립트작성또는, 존재하는대화록에대한녹음수행 텍스트데이터 - LM (Language Model) 오디오데이터 - AM (Acoustic Model) Data and AI Forum 2019

36 일반적인 Speech To Text 트레이닝데이터생성과정 (2/2) 사람이직접음성파일의타임프레임을지정하지않아도, Light Supervised Learning 을통해미리입력된텍스트로음성파일을학습함 학습데이터를생성하는데걸리는시간단축 Data and AI Forum 2019

37 STT 인증정보확인 (IBM Cloud) API Key, URL 복사해놓기 ( 뒤에 API 호출시필요 )

38 STT Acoustic Model Customization 1. 커스텀음성모델만들기 (Acoustic Model) curl -X POST -u "apikey:{apikey}" --header "Content-Type: application/json" --data "{\"name\": \"Example acoustic model\", \"base_model_name\": \ ko-kr_broadbandmodel\", \"description\": \"Example custom acoustic model\"}" " curl 실행예시 새로만든커스텀 AM 에대한 customization ID 가리턴됨

39 STT Acoustic Model Customization 2. 커스텀음성모델에오디오파일추가 (1) 오디오파일하나만추가하는경우 curl -X POST -u "apikey:{apikey}" --header "Content-Type: audio/wav" text/api/v1/acoustic_customizations/{customization_id}/audio/audio1 (2) 오디오파일여러개를 zip 파일로추가하는경우 curl -X POST -u "apikey:{apikey}"--header "Content-Type: application/zip --header "Contained-Content-Type: audio/l16;rate=16000 " 띄어쓰기주의 ( 에러발생 )

40 STT Acoustic Model Customization 3. 커스텀음성모델에추가된오디오파일리스트확인 curl -X GET -u "apikey:{apikey} " curl 실행예시 * 주의사항 curl 커맨드사용시, 음성파일이름이한글인경우 invalid 오류발생하므로, 영문으로할것 1) 프로세스진행중 ( 오디오분석중 ) 2) 분석완료

41 STT Acoustic Model Customization 4. 커스텀음성모델트레이닝 curl -X POST -u "apikey:{apikey}" " curl 실행예시 * 주의사항오디오총시간이 10 분이하이거나, 분초과하는경우에러발생

42 STT Language Model Customization 1. 커스텀언어모델만들기 (Language Model) curl -X POST -u "apikey:{apikey}" --header "Content-Type: application/json" --data "{\"name\": \"Example model\", \"base_model_name\": \ ko-kr_broadbandmodel\", \"description\": \"Example custom language model\"}" " curl 실행예시 새로만든커스텀 LM 에대한 customization ID 가리턴됨

43 STT Language Model Customization 2. 커스텀언어모델에 Corpus ( 말뭉치 ) 추가 curl -X POST -u "apikey:{apikey}" " curl 실행예시 * 주의사항텍스트파일인코딩 UTF-8 인지확인할것

44 STT Language Model Customization 3. 커스텀언어모델에단어추가 curl -X POST -u "apikey:{apikey}" --header "Content-Type: application/json" --data "{\"words\": [ {\"word\": \"HHonors\", \"sounds_like\": [\" 힐튼아너스 \", \"H. honors\"], \"display_as\": \"HHonors\"}, {\"word\": \"IEEE\", \"sounds_like\": [\" 아이트리플이 \"]}]}" HHonors 라는단어가나오면 힐튼아너스 로발음되도록함 H.honors 라는단어가나오면 HHonors 로스펠링수정 IEEE 라는단어가나오면 아이트리플이 로발음되도록함 * Json 파일을사용하여단어추가할수도있음 * curl 명령어 (Json 사용하는경우 ) {"words": [ {"word": "HHonors", "sounds_like": ["hilton honors", "H. honors"], "display_as": "HHonors"}, {"word": "IEEE", "sounds_like": ["I. triple E."]} ] } curl -X POST -u "apikey:{apikey}" --header "Content-Type: application/json" "

45 STT Language Model Customization 4. 커스텀언어모델에추가된오디오파일리스트확인 curl -X GET -u "apikey:{apikey}" " curl 실행예시 OOV(Out Of Vocabulary) 단어 : 뭉치파일의컨텐츠를구문분석하고기본어휘에없는단어를추출

46 STT Language Model Customization 5. 커스텀언어모델트레이닝 curl -X POST -u "apikey:{apikey}" "

47 Public APIs for STT customization Data and AI Forum 2019

48 Watson Text to Speech 왓슨의한국어음성합성 API

49 Text To Speech - Demo TTS 한국어버전의경우, IBM Korea 에직접문의하면사용할수있으며, Aibril 을통해서도사용해볼수있음

50 TTS 인증정보확인 (Aibril) URL, username, password 값복사해놓기 ( 뒤에 API 호출시필요 )

51 TTS Voice Synthesize 1. 한국어음성합성 : voice= youngmi, yuna curl -X POST -u "{username}" --header "Content-Type: application/json" --header "Accept: audio/wav" --data "{\"text\":\"hello world\"}" --output hello_world.wav " curl 실행예시 패스워드입력 Response

52 TTS 커스텀모델만들기 2. 한국어커스텀모델만들기 curl -X POST -u {username}" --header "Content-Type: application/json" --data "{\"name\":\"first Model\", \"language\":\ ko-kr\", \"description\":\"first custom voice model\"}" " curl 실행예시 커스텀모델에대한 customization ID 리턴됨

53 TTS 커스텀모델만들기 3. 한국어커스텀모델호출 curl -X GET -u {username}:{password} " curl 실행예시 커스텀모델생성정보리턴

54 TTS - Speech Synthesis Markup Language (SSML) 발음, 볼륨, 음역, 속도및기타속성을지정하여음성합성을제어할수있는마크업언어 SSML 을활용하면음의높낮이 Pitch, 특정발음을교정해주는 sub alias 등을활용할수있음 /v1/synthesize Using SSML curl -X POST -u "{username}:{password}" --header "Content-Type: application/json" --data "{\"text\":\"ibm 에서신규법인폰을개통하기위해서는 <sub alias=' 유심 '>USIM</sub> 구매가필요합니다.\"}" --output hello_world3.ogg " <sub> 태그는 alias 속성에지정된텍스트가음성이합성될때태그내에포함된텍스트를대체한다는것을나타냅니다. alias 속성은이태그가갖는유일한속성이며필수속성입니다. 정의되지않은경우오류가발생합니다.

55 Watson Assistant 왓슨의한국어대화형서비스 Intent Entity Dialog

56 ChatBot? VoiceBot? 챗봇은다양한 UI 및 UX 를지원합니다. 하지만음성봇은어떨까요? 대화에사용되어지는 텍스트 O N L Y!!

57 Watson Assistant Configuration

58 Watson Assistant Configuration

59 Watson Assistant

60 Watson Assistant

61 Watson Assistant

62 Watson Assistant

63 Intent Training

64 Intent Training

65 Intent Training

66 Entity Training

67 Entity Training

68 Entity Training

69 Entity Training

70 Dialog Configuration

71 Dialog Configuration

72 Dialog Configuration

73 Dialog Configuration

74 Dialog Configuration

75 Dialog Configuration

76 Watson Assistant

77 Watson Assistant

78 Watson Assistant

79 Watson Assistant

80 Watson Assistant

81 Watson Assistant

82 Watson Assistant

83 Watson Assistant

84 Watson Assistant

85 SIP Service: Twillo Inbound Call

86 SIP(Session Initiation Protocol) Service : Twillo Twillo 와같은무료 Trial 계정을통해테스트를진행해볼수있음

87 SIP(Session Initiation Protocol) Service : Twillo SIP Trunking 을통해전화를받는서비스 (Inbound Call) 를구현할수있음.

88 SIP(Session Initiation Protocol) Service : Twillo Voice Agent Endpoint 를 SIP 서비스에설정, 필요시 DR Endpoint 를추가할수있음. [Elastic SIP Trunking dashboard] - [Create SIP Trunk] - [Origination] - [SIP URI] 항목에서 Voice Agent 의 SIP 주소를등록

89 SIP(Session Initiation Protocol) Service : Twillo [Numbers] 탭에서 [Get Started with Phone Numbers] 로무료미국번호를얻거나 [Buy a Number] 를통해한국전화번호를구입할수있음 [Elastic SIP Trunking]-[Numbers] 에서새로발급받은번호를할당 Assign 해주어야함. Elastic SIP 를통해 Call log 와과금등을확인할수있음.

90 Watson Voice Agent

91 Watson Voice Agent 란?

92 Watson Voice Agent 설정 SIP Service 에서발급받은전화번호를입력

93 Watson Voice Agent 설정 대화 Watson Assistant 인스턴스선택및인증정보를입력

94 Watson Voice Agent 설정 Speech To Text STT 인스턴스선택및인증정보를입력

95 Watson Voice Agent 설정 Text To Speech TTS 인스턴스선택및인증정보를입력

96 Watson Voice Agent 설정 이벤트전달 Cloudant 인스턴스가없는경우 새서비스인스턴스작성 을선택

97 Watson Voice Agent 설정 음성에이전트설정완료

98 Voice Agent > Event Forwarding 총 3 가지이벤트 Forwarding 지원 - Call Detail Record(CDR), Transcription Events, Watson Assistant turns Events * NoSQL DB 나 IBM CloudantDB 로이벤트를저장할수도있습니다. 1) Call detail record (CDR) 이벤트시작및종료시간, 종료이유및대화트랜잭션에대한세부정보와같이단일호출 Single Call 에대한요약정보가들어있습니다. 2) IBM Watson Assistant Turn 이벤트 Voice Gateway 가 Watson Assistant 에대한각요청 Each request 후에수신한즉각적인 JSON 응답이포함되는이벤트정보가들어있습니다. 3) Transcription 이벤트발화Utterance가감지될때마다발행되며발화텍스트Utterance text, 신뢰점수 Confidence score 및세션정보를포함합니다. 버전 이상에서지원됩니다.

99 이제전화를걸어봅시다!

100 Thank You

101 Notices and disclaimers Copyright 2019 by International Business Machines Corporation (IBM). No part of this document may be reproduced or transmitted in any form without written permission from IBM. U.S. Government Users Restricted Rights use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM. Information in these presentations (including information relating to products that have not yet been announced by IBM) has been reviewed for accuracy as of the date of initial publication and could include unintentional technical or typographical errors. IBM shall have no responsibility to update this information. This document is distributed as is without any warranty, either express or implied. In no event shall IBM be liable for any damage arising from the use of this information, including but not limited to, loss of data, business interruption, loss of profit or loss of opportunity. IBM products and services are warranted according to the terms and conditions of the agreements under which they are provided. IBM products are manufactured from new parts or new and used parts. In some cases, a product may not be new and may have been previously installed. Regardless, our warranty terms apply. Any statements regarding IBM's future direction, intent or product plans are subject to change or withdrawal without notice. or other results in other operating environments may vary. References in this document to IBM products, programs, or services does not imply that IBM intends to make such products, programs or services available in all countries in which IBM operates or does business. Workshops, sessions and associated materials may have been prepared by independent session speakers, and do not necessarily reflect the views of IBM. All materials and discussions are provided for informational purposes only, and are neither intended to, nor shall constitute legal or other guidance or advice to any individual participant or their specific situation. It is the customer s responsibility to insure its own compliance with legal requirements and to obtain advice of competent legal counsel as to the identification and interpretation of any relevant laws and regulatory requirements that may affect the customer s business and any actions the customer may need to take to comply with such laws. IBM does not provide legal advice or represent or warrant that its services or products will ensure that the customer is in compliance with any law. Performance data contained herein was generally obtained in a controlled, isolated environments. Customer examples are presented as illustrations of how those customers have used IBM products and the results they may have achieved. Actual performance, cost, savings

102 Notices and disclaimers continued Information concerning non-ibm products was obtained from the suppliers of those products, their published announcements or other publicly available sources. IBM has not tested those products in connection with this publication and cannot confirm the accuracy of performance, compatibility or any other claims related to non-ibm products. Questions on the capabilities of non-ibm products should be addressed to the suppliers of those products. IBM does not warrant the quality of any third-party products, or the ability of any such third-party products to interoperate with IBM s products. IBM expressly disclaims all warranties, expressed or implied, including but not limited to, the implied warranties of merchantability and fitness for a particular, purpose. The provision of the information contained herein is not intended to, and does not, grant any right or license under any IBM patents, copyrights, trademarks or other intellectual property right. Management System, FASP, FileNet, Global Business Services, Global Technology Services, IBM ExperienceOne, IBM SmartCloud, IBM Social Business, Information on Demand, ILOG, Maximo, MQIntegrator, MQSeries, Netcool, OMEGAMON, OpenPower, PureAnalytics, PureApplication, purecluster, PureCoverage, PureData, PureExperience, PureFlex, purequery, purescale, PureSystems, QRadar, Rational, Rhapsody, Smarter Commerce, SoDA, SPSS, Sterling Commerce, StoredIQ, Tealeaf, Tivoli Trusteer, Unica, urban{code}, Watson, WebSphere, Worklight, X- Force and System z Z/OS, are trademarks of International Business Machines Corporation, registered in many jurisdictions worldwide. Other product and service names might be trademarks of IBM or other companies. A current list of IBM trademarks is available on the Web at "Copyright and trademark information" at: IBM, the IBM logo, ibm.com, Aspera, Bluemix, Blueworks Live, CICS, Clearcase, Cognos, DOORS, Emptoris, Enterprise Document

Copyrights and Trademarks Autodesk SketchBook Mobile (2.0.2) 2013 Autodesk, Inc. All Rights Reserved. Except as otherwise permitted by Autodesk, Inc.,

Copyrights and Trademarks Autodesk SketchBook Mobile (2.0.2) 2013 Autodesk, Inc. All Rights Reserved. Except as otherwise permitted by Autodesk, Inc., Autodesk SketchBook Mobile Copyrights and Trademarks Autodesk SketchBook Mobile (2.0.2) 2013 Autodesk, Inc. All Rights Reserved. Except as otherwise permitted by Autodesk, Inc., this publication, or parts

More information

Product A4

Product A4 2 APTIV Film Versatility and Performance APTIV Film Versatility and Performance 3 4 APTIV Film Versatility and Performance APTIV Film Versatility and Performance 5 PI Increasing Performance PES PPSU PSU

More information

IBM Presentations: Blue Pearl DeLuxe template

IBM Presentations:  Blue Pearl DeLuxe template IT IBM i5 IT IBM eserver i5 Enterprise 64-way 8-way Large 16-way 595 Midrange 1-way Largest Enterprises Solution Edition Domino Edition 4-way 570 Entry/Small 1-way 2-way 1-way 550 Fast growing, Large Clients

More information

슬라이드 1

슬라이드 1 CJ 2007 CONTENTS 2006 CJ IR Presentation Overview 4 Non-performing Asset Company Profile Vision & Mission 4 4 - & 4-4 - & 4 - - - - ROE / EPS - - DreamWorks Animation Net Asset Value (NAV) Disclaimer IR

More information

사용시 기본적인 주의사항 경고 : 전기 기구를 사용할 때는 다음의 기본적인 주의 사항을 반드시 유의하여야 합니다..제품을 사용하기 전에 반드시 사용법을 정독하십시오. 2.물과 가까운 곳, 욕실이나 부엌 그리고 수영장 같은 곳에서 제품을 사용하지 마십시오. 3.이 제품은

사용시 기본적인 주의사항 경고 : 전기 기구를 사용할 때는 다음의 기본적인 주의 사항을 반드시 유의하여야 합니다..제품을 사용하기 전에 반드시 사용법을 정독하십시오. 2.물과 가까운 곳, 욕실이나 부엌 그리고 수영장 같은 곳에서 제품을 사용하지 마십시오. 3.이 제품은 OPERATING INSTRUCTIONS OPERATING INSTRUCTIONS 사용자설명서 TourBus 0 & TourBus 5 사용시 기본적인 주의사항 경고 : 전기 기구를 사용할 때는 다음의 기본적인 주의 사항을 반드시 유의하여야 합니다..제품을 사용하기 전에 반드시 사용법을 정독하십시오. 2.물과 가까운 곳, 욕실이나 부엌 그리고 수영장 같은 곳에서

More information

PI ZH-CN

PI ZH-CN www.philips.com/welcome PI5000316 1 5 5 5 2 8 8 8 8 3 9 9 4 10 10 10 USB 10 11 11 11 12 12 Safe Sound 12 13 14 14 / 14 15 15 5 16 Wi-Fi 16 16 17 17 18 Micro SD 18 6 19 19 19 19 QQ 19 19 19 20 20 20 7

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Autodesk Software 개인용 ( 학생, 교사 ) 다운로드가이드 진동환 (donghwan.jin@autodesk.com) Manager Autodesk Education Program - Korea Autodesk Education Expert 프로그램 www.autodesk.com/educationexperts 교육전문가프로그램 글로벌한네트워크 /

More information

IBM Director Multiplatform Manages Your iSeries

IBM Director Multiplatform  Manages Your iSeries Notes to Presenters This presentation contains links to several demos that you may use to demonstrate the power of POWER5 and IBM Virtualization Engine. You will be able to launch these demos by clicking

More information

Microsoft PowerPoint - SVPSVI for LGNSYS_20120320.ppt

Microsoft PowerPoint - SVPSVI for LGNSYS_20120320.ppt IBM Partner Program March, 2012 Jaemin, Lee SWG Channels, IBM Korea SWG Channels 2012 IBM Corporation Agenda IBM Korea SWG Channels Software Value Plus Software Value Incentive Revalidation 2 IBM Software

More information

step 1-1

step 1-1 Written by Dr. In Ku Kim-Marshall STEP BY STEP Korean 1 through 15 Action Verbs Table of Contents Unit 1 The Korean Alphabet, hangeul Unit 2 Korean Sentences with 15 Action Verbs Introduction Review Exercises

More information

- 2 -

- 2 - - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - - 20 - - 21 - - 22 - - 23 - - 24 - - 25 - - 26 - - 27 - - 28 - - 29 - - 30 -

More information

DIY 챗봇 - LangCon

DIY 챗봇 - LangCon without Chatbot Builder & Deep Learning bage79@gmail.com Chatbot Builder (=Dialogue Manager),. We need different chatbot builders for various chatbot services. Chatbot builders can t call some external

More information

공급 에는 3권역 내에 준공된 프라임 오피스가 없었다. 4분기에는 3개동의 프라임 오피스가 신규로 준공 될 예정이다.(사옥1개동, 임대용 오피스 2개동) 수요와 공실률 2014년 10월 한국은행이 발표한 자료에 따르면 한국의 2014년 경제성장률 예측치는 3.5%로 지

공급 에는 3권역 내에 준공된 프라임 오피스가 없었다. 4분기에는 3개동의 프라임 오피스가 신규로 준공 될 예정이다.(사옥1개동, 임대용 오피스 2개동) 수요와 공실률 2014년 10월 한국은행이 발표한 자료에 따르면 한국의 2014년 경제성장률 예측치는 3.5%로 지 Savills World Research 브리핑 서울 프라임 오피스 사진 : Yeouido, Seoul 개요 삼성SDS가 지난 2분기 준공한 잠실 사옥 주변으로의 이전을 지속하고 증권업계의 임차면적 감소가 계속되어 GBD와 YBD 의 수요는 감소하였고 에서는 소폭의 수요 증가가 나타났다. 의 수요 회복에도 불구하고 GBD, YBD의 수요 감소로 서울프라임오피스의

More information

0125_ 워크샵 발표자료_완성.key

0125_ 워크샵 발표자료_완성.key WordPress is a free and open-source content management system (CMS) based on PHP and MySQL. WordPress is installed on a web server, which either is part of an Internet hosting service or is a network host

More information

AD K

AD K FUJITSU Semiconductor FRAM FUJITSU FRAM FUJITSU SEMICONDUCTOR LIMITED FRAM 1969 47. FRAM FRAM Ferroelectric Random Access Memory. FRAM 1995, 18. 45, 200. FRAM IC,,, RFID.,., FRAM.,,. Ferroelectric Random

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper Windows Netra Blade X3-2B( Sun Netra X6270 M3 Blade) : E37790 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs,

More information

vm-웨어-앞부속

vm-웨어-앞부속 VMware vsphere 4 This document was created using the official VMware icon and diagram library. Copyright 2009 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright

More information

B _02-M_Korean.indd

B _02-M_Korean.indd DNX740BT DNX740BTM DDX704BT DDX704BTM DDX604 DDX604M B64-476-0/0 (MW) DNX740BT/DNX740BTM/DDX704BT/DDX704BTM/DDX604/DDX604M [FM] [AM] [], [] [CRSC] FM FM [SEEK] 4 DNX740BT/DNX740BTM/DDX704BT/DDX704BTM/DDX604/DDX604M

More information

¹Ìµå¹Ì3Â÷Àμâ

¹Ìµå¹Ì3Â÷Àμâ MIDME LOGISTICS Trusted Solutions for 02 CEO MESSAGE MIDME LOGISTICS CO., LTD. 01 Ceo Message We, MIDME LOGISTICS CO., LTD. has established to create aduance logistics service. Try to give confidence to

More information

공급 에는 권역에 두개의 프라임 오피스가 준공 되었다. 청진구역 2,3지구에는 광화문 D타워가 준공되어 대림에서 약 50%를 사용하며 나머지 50%는 임대마케팅을 진행 중이다. 메트로타워는 GS건설의 사옥에서 매각 이후 2013년 4분기에 리모델링을 시작하여, 에 완공

공급 에는 권역에 두개의 프라임 오피스가 준공 되었다. 청진구역 2,3지구에는 광화문 D타워가 준공되어 대림에서 약 50%를 사용하며 나머지 50%는 임대마케팅을 진행 중이다. 메트로타워는 GS건설의 사옥에서 매각 이후 2013년 4분기에 리모델링을 시작하여, 에 완공 Savills World Research 브리핑 서울 프라임 오피스 사진 :, Seoul 개요 여의도와 도심의 높은 공실률에도 불구하고 향후 공실 감소 기대와 낮은 이자율, 우량물건이 뒷받침되어 서울 오피스 시장은 국내외 투자자들의 지속적인 관심을 받고 있다. 신규공급으로 의 공실률은 증가하였고 GBD와 YBD의 공실률은 감소하였다. 공실률이 증가한 에서 임차인

More information

API 매뉴얼

API 매뉴얼 PCI-DIO12 API Programming (Rev 1.0) Windows, Windows2000, Windows NT and Windows XP are trademarks of Microsoft. We acknowledge that the trademarks or service names of all other organizations mentioned

More information

Oracle® DIVAnet - 보안 설명서

Oracle® DIVAnet - 보안 설명서 Oracle DIVAnet 보안 설명서 릴리스 2.0 E74317-01 2016년 3월 Oracle DIVAnet 보안 설명서 E74317-01 Copyright 2016, Oracle and/or its affiliates. All rights reserved. 본 소프트웨어와 관련 문서는 사용 제한 및 기밀 유지 규정을 포함하는 라이센스 합의서에 의거해

More information

API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Docum

API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Docum API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 2012.11.23 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Document Distribution Copy Number Name(Role, Title) Date

More information

<30353132BFCFB7E15FC7D1B1B9C1A4BAB8B9FDC7D0C8B85F31352D31BCF6C1A4C8AEC0CE2E687770>

<30353132BFCFB7E15FC7D1B1B9C1A4BAB8B9FDC7D0C8B85F31352D31BCF6C1A4C8AEC0CE2E687770> 지상파 방송의 원격송신과 공중송신권 침해여부에 관한 사례연구 Case Study on Copyright Infringement of Remote Transmission of Television Program 최정열(Choe, Jeong-Yeol) * 목 차 Ⅰ. 서론 Ⅱ. 사실 관계 및 재판의 경과 1. 원격시청기기 및 그 사용방법 등 2. 피고의 서비스 3.

More information

중국 상장회사의 경영지배구조에 관한 연구

중국 상장회사의 경영지배구조에 관한 연구 仁 荷 大 學 校 法 學 硏 究 第 18 輯 第 3 號 2015년 09월 30일, 261~295쪽 Inha Law Review The Institute of Legal Studies Inha University Vol.18, No.3, September, 2015 표현의 자유와 명예훼손 - 인터넷에서의 명예훼손을 중심으로 - * 박 윤 경 숙명여자대학교 법학박사

More information

BSC Discussion 1

BSC Discussion 1 Copyright 2006 by Human Consulting Group INC. All Rights Reserved. No Part of This Publication May Be Reproduced, Stored in a Retrieval System, or Transmitted in Any Form or by Any Means Electronic, Mechanical,

More information

Hardware Manual TSP100

Hardware Manual TSP100 Trademark acknowledgments TSP: Star Micronics., Ltd. Notice All rights reserved. Reproduction of any part of this manual in any form whatsoever, without STAR s express permission is forbidden. The contents

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA The e-business Studies Volume 17, Number 6, December, 30, 2016:237~251 Received: 2016/11/20, Accepted: 2016/12/24 Revised: 2016/12/21, Published: 2016/12/30 [ABSTRACT] Recently, there is an increasing

More information

10송동수.hwp

10송동수.hwp 종량제봉투의 불법유통 방지를 위한 폐기물관리법과 조례의 개선방안* 1) 송 동 수** 차 례 Ⅰ. 머리말 Ⅱ. 종량제봉투의 개요 Ⅲ. 종량제봉투의 불법유통사례 및 방지대책 Ⅳ. 폐기물관리법의 개선방안 Ⅴ. 지방자치단체 조례의 개선방안 Ⅵ. 결론 국문초록 1995년부터 쓰레기 종량제가 시행되면서 각 지방자치단체별로 쓰레기 종량제 봉투가 제작, 판매되기 시작하였는데,

More information

11¹Ú´ö±Ô

11¹Ú´ö±Ô A Review on Promotion of Storytelling Local Cultures - 265 - 2-266 - 3-267 - 4-268 - 5-269 - 6 7-270 - 7-271 - 8-272 - 9-273 - 10-274 - 11-275 - 12-276 - 13-277 - 14-278 - 15-279 - 16 7-280 - 17-281 -

More information

06_ÀÌÀçÈÆ¿Ü0926

06_ÀÌÀçÈÆ¿Ü0926 182 183 184 / 1) IT 2) 3) IT Video Cassette Recorder VCR Personal Video Recorder PVR VCR 4) 185 5) 6) 7) Cloud Computing 8) 186 VCR P P Torrent 9) avi wmv 10) VCR 187 VCR 11) 12) VCR 13) 14) 188 VTR %

More information

APOGEE Insight_KR_Base_3P11

APOGEE Insight_KR_Base_3P11 Technical Specification Sheet Document No. 149-332P25 September, 2010 Insight 3.11 Base Workstation 그림 1. Insight Base 메인메뉴 Insight Base Insight Insight Base, Insight Base Insight Base Insight Windows

More information

<30362E20C6EDC1FD2DB0EDBFB5B4EBB4D420BCF6C1A42E687770>

<30362E20C6EDC1FD2DB0EDBFB5B4EBB4D420BCF6C1A42E687770> 327 Journal of The Korea Institute of Information Security & Cryptology ISSN 1598-3986(Print) VOL.24, NO.2, Apr. 2014 ISSN 2288-2715(Online) http://dx.doi.org/10.13089/jkiisc.2014.24.2.327 개인정보 DB 암호화

More information

SIDEX Today 2015.pdf

SIDEX Today 2015.pdf SIDEXKorea8~10 May, 2015 Official news for visitors and exhibitors page 1 page 2 page 3 PRINT DIGITAL EDUCATION EVENTS The DTI publishing group is composed of the world s leading dental trade publishers

More information

한아IT 브로셔-팜플렛최종

한아IT 브로셔-팜플렛최종 N e t w o r k A n a l y z e r / P r o t o c o l A n a l y z e r / V o I P M o n i t o r i n g / P e r f o r m a n c e What s in your Network? 목 차 와일드패킷 솔루션 WatchPoint 와일드패킷 분산 네트워크 분석 OmniPeek 4 6 7 8

More information

마리오와 소닉 리우 올림픽™

마리오와 소닉 리우 올림픽™ 마리오와 소닉 리우 올림픽 1 사용하기 전에 준비하기 2 유저 콘텐츠에 대하여 3 인터넷으로 이용 가능한 기능 4 보호자 여러분께 5 amiibo란 시작하기 전에 6 게임 소개 7 게임 시작 방법 8 조작 방법 9 데이터 저장과 삭제 통신으로 더욱 즐기기 10 대전 모드 11 포켓 마라톤 12 기록 기타 13 사용 곡명과 작곡자 소개 14 플레이 정보 송신

More information

SNS 명예훼손의 형사책임

SNS 명예훼손의 형사책임 SNS 명예훼손의 형사책임 Criminal Liability for Defamation on the SNS 지 영 환 * (Ji, Young-Hwan) < 차 례 > Ⅰ. 서론 Ⅱ. SNS상 명예훼손 Ⅲ. SNS 명예훼손의 형사책임 Ⅳ. SNS 명예훼손행위의 정책적 예방과 입법적 검토 Ⅴ. 결론 주제어: 인터넷, SNS, 명예훼손, 형법, 정보통신망 이용촉진

More information

Something that can be seen, touched or otherwise sensed

Something that can be seen, touched or otherwise sensed Something that can be seen, touched or otherwise sensed Things about an object Weight Height Material Things an object does Pen writes Book stores words Water have Fresh water Rivers Oceans have

More information

강의지침서 작성 양식

강의지침서 작성 양식 정보화사회와 법 강의지침서 1. 교과목 정보 교과목명 학점 이론 시간 실습 학점(등급제, P/NP) 비고 (예:팀티칭) 국문 정보화사회와 법 영문 Information Society and Law 3 3 등급제 구분 대학 및 기관 학부(과) 전공 성명 작성 책임교수 법학전문대학원 법학과 최우용 2. 교과목 개요 구분 교과목 개요 국문 - 정보의 디지털화와 PC,

More information

<4D F736F F F696E74202D20315FB9DAC7FCB1D920BACEC0E55FC0CEBCE2BFEB2E707074>

<4D F736F F F696E74202D20315FB9DAC7FCB1D920BACEC0E55FC0CEBCE2BFEB2E707074> 2014 년 5 월 20 일 2014 년최신보안동향분석및보안인텔리전스대응방안 박형근전문위원, 보안사업부, SWG 2014 IBM Corporation IBM 보안역량 Security Operations Centers Security Research and Development Labs v13-01 Institute for Advanced Security Branches

More information

<BCADBFEFC1F6B9E6BAAFC8A3BBE7C8B85FBAAFC8A3BBE7203437C1FD2831B1C7292E687770>

<BCADBFEFC1F6B9E6BAAFC8A3BBE7C8B85FBAAFC8A3BBE7203437C1FD2831B1C7292E687770> 기업의 영업비밀 보호정책의 한계 The Limitation of Internal Corporate Polices 辯 護 士 Bae Su Young 논문요약 영업비밀 이란 공공연히 알려져 있지 아니하고 독립된 경제적 가치를 가지는 것으로서, 상당한 노력에 의하여 비밀로 유지된 생산방법, 판매방법, 그 밖에 영업활동에 유용한 기술상 또는 경영상의 정보를 말한다.

More information

Voice Portal using Oracle 9i AS Wireless

Voice Portal using Oracle 9i AS Wireless Voice Portal Platform using Oracle9iAS Wireless 20020829 Oracle Technology Day 1 Contents Introduction Voice Portal Voice Web Voice XML Voice Portal Platform using Oracle9iAS Wireless Voice Portal Video

More information

歯1.PDF

歯1.PDF 200176 .,.,.,. 5... 1/2. /. / 2. . 293.33 (54.32%), 65.54(12.13%), / 53.80(9.96%), 25.60(4.74%), 5.22(0.97%). / 3 S (1997)14.59% (1971) 10%, (1977).5%~11.5%, (1986)

More information

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration

More information

Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp DOI: : Researc

Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp DOI:   : Researc Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp.251-273 DOI: http://dx.doi.org/10.21024/pnuedi.27.2.201706.251 : 1997 2005 Research Trend Analysis on the Korean Alternative Education

More information

` Companies need to play various roles as the network of supply chain gradually expands. Companies are required to form a supply chain with outsourcing or partnerships since a company can not

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 1......... 2 3..\ 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 " RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

Microsoft Word - 국제중재

Microsoft Word - 국제중재 기업인과 변호사를 위한 국제 중재(International Arbitration)의 이해와 활용 법무법인 이산( 移 山 ) 서울시 서초구 서초4동 1698-2 형남빌딩 5층 전화: (02) 3477-0150 팩스: 3477-0160 http://www.esanlaw.com 들어가는 말 국제거래에서 발생할 수 있는 분쟁을

More information

<313233305FC1A4BAB8B9FDC7D02031372D332E687770>

<313233305FC1A4BAB8B9FDC7D02031372D332E687770> 122) 우리나라에서 퍼블리시티권(the right of publicity)보호에 관한 소견 * The Legal Protection of the Right of Publicity in Korea 계승균(KYE, Seungkyoon)**123) 목 차 Ⅰ. 서언 Ⅱ. 의의 Ⅲ. 법적성격 1. 인격권설 2. 재산권설 3. 혼합권설 Ⅳ. 각국의 사례 1. 일본

More information

Journal of Educational Innovation Research 2018, Vol. 28, No. 1, pp DOI: * A Analysis of

Journal of Educational Innovation Research 2018, Vol. 28, No. 1, pp DOI: * A Analysis of Journal of Educational Innovation Research 2018, Vol. 28, No. 1, pp.99-117 DOI: http://dx.doi.org/10.21024/pnuedi.28.1.201803.99 2015 * A Analysis of the Characters and Issues about the 2015 Revised Social

More information

歯3이화진

歯3이화진 http://www.kbc.go.kr/ Abstract Terrestrial Broadcasters Strategies in the Age of Digital Broadcasting Wha-Jin Lee The purpose of this research is firstly to investigate the

More information

이 설명서의 올바른 참고문헌 인용은 다음과 같습니다. SAS Institute Inc. 2015. SAS University Edition: Amazon Web Services 용 설치 가이드 Cary, NC: SAS Institute Inc. SAS Universit

이 설명서의 올바른 참고문헌 인용은 다음과 같습니다. SAS Institute Inc. 2015. SAS University Edition: Amazon Web Services 용 설치 가이드 Cary, NC: SAS Institute Inc. SAS Universit SAS University Edition: Amazon Web Services 용 설치 가이드 i 2014 년 6 월 17 일 이 설명서의 올바른 참고문헌 인용은 다음과 같습니다. SAS Institute Inc. 2015. SAS University Edition: Amazon Web Services 용 설치 가이드 Cary, NC: SAS Institute

More information

04 형사판례연구 19-3-1.hwp

04 형사판례연구 19-3-1.hwp 2010년도 형법판례 회고 645 2010년도 형법판례 회고 2)오 영 근* Ⅰ. 서설 2010. 1. 1.에서 2010. 12. 31.까지 대법원 법률종합정보 사이트 1) 에 게재된 형법 및 형사소송법 판례는 모두 286건이다. 이 중에는 2건의 전원합의체 판결 및 2건의 전원합의체 결정이 있다. 2건의 전원합의체 결정은 형사소송법에 관한 것이고, 2건의

More information

레이아웃 1

레이아웃 1 i g d e d mod, t d e d e d mod, t e,0 e, n s,0 e,n e,0 Division of Workers' Compensation (2009). Iowa workers' compensation manual. Gamber, E. N. & Sorensen, R. L. (1994). Are net discount rates stationary?:

More information

API 매뉴얼

API 매뉴얼 PCI-TC03 API Programming (Rev 1.0) Windows, Windows2000, Windows NT, Windows XP and Windows 7 are trademarks of Microsoft. We acknowledge that the trademarks or service names of all other organizations

More information

3. 클라우드 컴퓨팅 상호 운용성 기반의 서비스 평가 방법론 개발.hwp

3. 클라우드 컴퓨팅 상호 운용성 기반의 서비스 평가 방법론 개발.hwp 보안공학연구논문지 Journal of Security Engineering Vol.11, No.4 (2014), pp.299-312 http://dx.doi.org/10.14257/jse.2014.08.03 클라우드 컴퓨팅 상호 운용성 기반의 서비스 평가 방법론 개발 이강찬 1), 이승윤 2), 양희동 3), 박철우 4) Development of Service

More information

인디쓔피-IOM핸돜벁닄큐1014pdf, page 59 @ Preflight ( IOM핸돜벁닄큐__1014 )

인디쓔피-IOM핸돜벁닄큐1014pdf, page 59 @ Preflight ( IOM핸돜벁닄큐__1014 ) Publisher: International Organization for Migration 17, route des Morillons 1211 Geneva 19 Switzerland Tel: +41.22.717 91 11 Fax: +41.22.798 61 50 E-mail: hq@iom.int Internet: http://www.iom.int ISBN 978

More information

04-다시_고속철도61~80p

04-다시_고속철도61~80p Approach for Value Improvement to Increase High-speed Railway Speed An effective way to develop a highly competitive system is to create a new market place that can create new values. Creating tools and

More information

05_±è½Ã¿Ł¿Ü_1130

05_±è½Ã¿Ł¿Ü_1130 132 133 1) 2) 3) 4) 5) 134 135 6) 7) 8) 136 9) 10) 11) 12) 137 13) 14) 15) 16) 17) 18) 138 19) 20) 21) 139 22) 23) 140 24) 141 25) 142 26) 27) 28) 29) 30) 31) 32) 143 33) 34) 35) 36) 37) 38) 39) 40) 144

More information

2017.09 Vol.255 C O N T E N T S 02 06 26 58 63 78 99 104 116 120 122 M O N T H L Y P U B L I C F I N A N C E F O R U M 2 2017.9 3 4 2017.9 6 2017.9 7 8 2017.9 13 0 13 1,007 3 1,004 (100.0) (0.0) (100.0)

More information

소개 이 모바일 앱으로 SAP의 중소기업용 ERP 애플리케이션인 SAP Business One을 언제 어디서나 사용할 수 있습니다. 관리자, 임원, 영업사원 및 서비스 엔지니어가 실시간 비즈니스 정보와 리포트를 확인하고 연락처를 관리하며 판매/서비스 액티비티를 관리할

소개 이 모바일 앱으로 SAP의 중소기업용 ERP 애플리케이션인 SAP Business One을 언제 어디서나 사용할 수 있습니다. 관리자, 임원, 영업사원 및 서비스 엔지니어가 실시간 비즈니스 정보와 리포트를 확인하고 연락처를 관리하며 판매/서비스 액티비티를 관리할 Mobile app for ios 버전 1.11.x, 2015년 2월 소개 이 모바일 앱으로 SAP의 중소기업용 ERP 애플리케이션인 SAP Business One을 언제 어디서나 사용할 수 있습니다. 관리자, 임원, 영업사원 및 서비스 엔지니어가 실시간 비즈니스 정보와 리포트를 확인하고 연락처를 관리하며 판매/서비스 액티비티를 관리할 수 있습니다. 완전한:

More information

Chapter 1

Chapter 1 3 Oracle 설치 Objectives Download Oracle 11g Release 2 Install Oracle 11g Release 2 Download Oracle SQL Developer 4.0.3 Install Oracle SQL Developer 4.0.3 Create a database connection 2 Download Oracle 11g

More information

<BFA9BAD02DB0A1BBF3B1A4B0ED28C0CCBCF6B9FC2920B3BBC1F62E706466>

<BFA9BAD02DB0A1BBF3B1A4B0ED28C0CCBCF6B9FC2920B3BBC1F62E706466> 001 002 003 004 005 006 008 009 010 011 2010 013 I II III 014 IV V 2010 015 016 017 018 I. 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 III. 041 042 III. 043

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including any operat

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including any operat Sun Server X3-2( Sun Fire X4170 M3) Oracle Solaris : E35482 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including

More information

[발표자료]기업용모바일 활성화를 위한 제언(박종봉)

[발표자료]기업용모바일 활성화를 위한 제언(박종봉) 2003. 2 ATLAS Research Group 2002 Atlas Research Group, Inc. All rights reserved. Reproduction or redistribution in any form without the prior written permission of Atlas Research Group is expressly prohibited.

More information

SK IoT IoT SK IoT onem2m OIC IoT onem2m LG IoT SK IoT KAIST NCSoft Yo Studio tidev kr 5 SK IoT DMB SK IoT A M LG SDS 6 OS API 7 ios API API BaaS Backend as a Service IoT IoT ThingPlug SK IoT SK M2M M2M

More information

Output file

Output file 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 An Application for Calculation and Visualization of Narrative Relevance of Films Using Keyword Tags Choi Jin-Won (KAIST) Film making

More information

VOL.76.2008/2 Technical SmartPlant Materials - Document Management SmartPlant Materials에서 기본적인 Document를 관리하고자 할 때 필요한 세팅, 파일 업로드 방법 그리고 Path Type인 Ph

VOL.76.2008/2 Technical SmartPlant Materials - Document Management SmartPlant Materials에서 기본적인 Document를 관리하고자 할 때 필요한 세팅, 파일 업로드 방법 그리고 Path Type인 Ph 인터그래프코리아(주)뉴스레터 통권 제76회 비매품 News Letters Information Systems for the plant Lifecycle Proccess Power & Marine Intergraph 2008 Contents Intergraph 2008 SmartPlant Materials Customer Status 인터그래프(주) 파트너사

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA The e-business Studies Volume 17, Number 6, December, 30, 2016:275~289 Received: 2016/12/02, Accepted: 2016/12/22 Revised: 2016/12/20, Published: 2016/12/30 [ABSTRACT] SNS is used in various fields. Although

More information

<303833315FC1A4BAB8B9FDC7D02031362D325FC3D6C1BEBABB2E687770>

<303833315FC1A4BAB8B9FDC7D02031362D325FC3D6C1BEBABB2E687770> 개인정보보호법의 보호원칙에 대한 벌칙조항 연구 A Legal Study of Punishments in Terms of Principles of Private Informaion Protection Law 전동진(Jeon, Dong-Jin)*19) 정진홍(Jeong, Jin-Hong)**20) 목 차 Ⅰ. 들어가는 말 Ⅱ. OECD 개인정보 보호원칙과의 비교

More information

Copyright 0, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT RIGHTS Programs, software, databases, and related

Copyright 0, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT RIGHTS Programs, software, databases, and related Virtual Machine Sun Fire X4800 M : E4570 0 8 Copyright 0, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation

More information

歯★지주회사PT

歯★지주회사PT LG LGEI & LG : 2001. 11. 15 As a note, this presentation was released as the dates shown and reflected management views as of these dates. While reviewing this information, the data and information contain

More information

A B C D E F 1 4 2 3 6 5 11 10 7 8 9 2 4 6 5 3 7 8 9 1 8 7 6 2 3 9 1 4 5 1 6 3 4 5 2 RRC350 RRC350 1 2 3 4 5 6 7 12 11 5 7 9 3 1 10 4 6 8 13 2 Roteo 35

A B C D E F 1 4 2 3 6 5 11 10 7 8 9 2 4 6 5 3 7 8 9 1 8 7 6 2 3 9 1 4 5 1 6 3 4 5 2 RRC350 RRC350 1 2 3 4 5 6 7 12 11 5 7 9 3 1 10 4 6 8 13 2 Roteo 35 Roteo 20HV/25H/35/35G User Manual Version 1.2 A B C D E F 1 4 2 3 6 5 11 10 7 8 9 2 4 6 5 3 7 8 9 1 8 7 6 2 3 9 1 4 5 1 6 3 4 5 2 RRC350 RRC350 1 2 3 4 5 6 7 12 11 5 7 9 3 1 10 4 6 8 13 2 Roteo 35/35G:

More information

10방송통신서비스_내지최종

10방송통신서비스_내지최종 Contents KOREA COMMUNICATIONS COMMISSION Chorus Wholesale & lnternational Retail Gen-i AAPT Technology & Shared Services Corporate Centre

More information

목차 1. 서론 1.1. 연구의 배경 및 목적 1.2. 연구의 내용 및 방법 2. 제품스타일 분석 2.1. 제품이미지 2.2. 미래지향적 스타일 3. 신세대 감성분석 3.1. 라이프스타일 3.2. 광고전략 3.3. 색채에 따른 제품구매 분석 4. 결론 *참고문헌 ( )

목차 1. 서론 1.1. 연구의 배경 및 목적 1.2. 연구의 내용 및 방법 2. 제품스타일 분석 2.1. 제품이미지 2.2. 미래지향적 스타일 3. 신세대 감성분석 3.1. 라이프스타일 3.2. 광고전략 3.3. 색채에 따른 제품구매 분석 4. 결론 *참고문헌 ( ) 신세대 지향적 제품개발과 전략에 관한 연구 A Study on the Product Development and Strategy of New Generation Oriented 곽 희 준 (Hee-Joon, Kwak) 협성대학교 예술대학 제품디자인학과 본 연구는 협성대학교 교내학술연구비 지원에 의한 논문임 목차 1. 서론 1.1. 연구의 배경 및 목적 1.2.

More information

#DPK5(PB)(9.8.19)

#DPK5(PB)(9.8.19) PARTS BOOK DPK-5 포스트 베드, 1본침 본봉 지그재그 재봉기 Post Bed, Single-Needle Lock Stitch Zig Zag Sewing Machines PME-090929 SunStar CO., LTD. INFORMATION A. Parts Book 구성 Structure of Part Book ① ② ③ ④ ⑤⑥ ⑦ ⑧⑨ ① 관계

More information

untitled

untitled 3 IBM WebSphere User Conference ESB (e-mail : ljm@kr.ibm.com) Infrastructure Solution, IGS 2005. 9.13 ESB 를통한어플리케이션통합구축 2 IT 40%. IT,,.,, (Real Time Enterprise), End to End Access Processes bounded by

More information

°í¼®ÁÖ Ãâ·Â

°í¼®ÁÖ Ãâ·Â Performance Optimization of SCTP in Wireless Internet Environments The existing works on Stream Control Transmission Protocol (SCTP) was focused on the fixed network environment. However, the number of

More information

Week13

Week13 Week 13 Social Data Mining 02 Joonhwan Lee human-computer interaction + design lab. Crawling Twitter Data OAuth Crawling Data using OpenAPI Advanced Web Crawling 1. Crawling Twitter Data Twitter API API

More information

06_À̼º»ó_0929

06_À̼º»ó_0929 150 151 alternative investment 1) 2) 152 NPE platform invention capital 3) 153 sale and license back 4) 154 5) 6) 7) 155 social welfare 8) 156 GDP 9) 10) 157 Patent Box Griffith EUROSTAT 11) OTC M&A 12)

More information

Data Industry White Paper

Data Industry White Paper 2017 2017 Data Industry White Paper 2017 1 3 1 2 3 Interview 1 ICT 1 Recommendation System * 98 2017 Artificial 3 Neural NetworkArtificial IntelligenceAI 2 AlphaGo 1 33 Search Algorithm Deep Learning IBM

More information

: Symantec Backup Exec System Recovery 8:............................................................................. 3..............................

: Symantec Backup Exec System Recovery 8:............................................................................. 3.............................. W H I T : E PA P E R : C U S TO M I Z E Confidence in a connected world. Symantec Backup Exec System Recovery 8: : Symantec Backup Exec System Recovery 8:.............................................................................

More information

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서 PowerChute Personal Edition v3.1.0 990-3772D-019 4/2019 Schneider Electric IT Corporation Schneider Electric IT Corporation.. Schneider Electric IT Corporation,,,.,. Schneider Electric IT Corporation..

More information

2 2000. 8. 31

2 2000. 8. 31 IT update 00 1 / 2000.8.30 IT update Information Technology 2 2000. 8. 31 C o n t e n t s 2000. 8. 31 3 4 2000. 8. 31 2000. 8. 31 5 6 2000. 8. 31 2000. 8. 31 7 8 2000. 8. 31 2000. 8. 31 9 1 0 2000. 8.

More information

Microsoft Word - Westpac Korean Handouts.doc

Microsoft Word - Westpac Korean Handouts.doc 1 1 2 Westpac Honolulu Oct. 12, 2007 Korean Legal Research 2 3 Korea is Wired! Traditional Nongak or Farmers Dance 3 4 Wired! World Champion b-boys (Breakdancers) 4 5 The most Wired nation in the world

More information

keyes_sik_only_christ.hwp

keyes_sik_only_christ.hwp Copyright c 2008 라브리선교회 L'Abri Fellowship Korea Downloaded from http://www.labri.kr 그리스도의 유일성 딕 카이즈 (Dick Keyes) 성인경 옮김 그리스도의 유일성이란 말을 듣고 사람들은 우리가 편견을 가진 사람이거나 교만하다고 말합니다. 또는 순진하고 무식한 사람이라고 말합니다. 그래서 예수를

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 CRM Data Quality Management 2003 2003. 11. 11 (SK ) hskim226@skcorp.com Why Quality Management? Prologue,,. Water Source Management 2 Low Quality Water 1) : High Quality Water 2) : ( ) Water Quality Management

More information

[ 영어영문학 ] 제 55 권 4 호 (2010) ( ) ( ) ( ) 1) Kyuchul Yoon, Ji-Yeon Oh & Sang-Cheol Ahn. Teaching English prosody through English poems with clon

[ 영어영문학 ] 제 55 권 4 호 (2010) ( ) ( ) ( ) 1) Kyuchul Yoon, Ji-Yeon Oh & Sang-Cheol Ahn. Teaching English prosody through English poems with clon [ 영어영문학 ] 제 55 권 4 호 (2010) 775-794 ( ) ( ) ( ) 1) Kyuchul Yoon, Ji-Yeon Oh & Sang-Cheol Ahn. Teaching English prosody through English poems with cloned native intonation. The purpose of this work is to

More information

Intro to Servlet, EJB, JSP, WS

Intro to Servlet, EJB, JSP, WS ! Introduction to J2EE (2) - EJB, Web Services J2EE iseminar.. 1544-3355 ( ) iseminar Chat. 1 Who Are We? Business Solutions Consultant Oracle Application Server 10g Business Solutions Consultant Oracle10g

More information

歯I-3_무선통신기반차세대망-조동호.PDF

歯I-3_무선통신기반차세대망-조동호.PDF KAIST 00-03-03 / #1 1. NGN 2. NGN 3. NGN 4. 5. 00-03-03 / #2 1. NGN 00-03-03 / #3 1.1 NGN, packet,, IP 00-03-03 / #4 Now: separate networks for separate services Low transmission delay Consistent availability

More information

Microsoft Word _whitepaper_latency_throughput_v1.0.1_for_

Microsoft Word _whitepaper_latency_throughput_v1.0.1_for_ Sena Technologies 백서 : Latency/Throughput Test September 11, 2008 Copyright Sena Technologies, Inc 2008 All rights strictly reserved. No part of this document may not be reproduced or distributed without

More information

<313220BCD5BFB5B9CCC1B6BFF8C0CF2E687770>

<313220BCD5BFB5B9CCC1B6BFF8C0CF2E687770> 한국민족문화 34, 2009. 7, 369~406쪽 쉼터 생활을 중심으로 본 일본군 위안부 의 삶에 관한 사례연구 1)손 영 미* 조 원 일** 1. 서론 1) 문제의 소재 2) 연구의 필요성 및 목적 2. 문헌고찰 3. 연구방법 1) 연구참여자 2) 연구방법 및 절차 4. 일본군 위안부 피해자의 쉼터 생활을 전후로 한 삶 1) 위안부 신고 후부터 쉼터 생활

More information

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인 스마일서브 CLOUD_Virtual 워드프레스 설치 (WORDPRESS INSTALL) 스마일서브 가상화사업본부 Update. 2012. 09. 04. 본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게

More information

정보기술응용학회 발표

정보기술응용학회 발표 , hsh@bhknuackr, trademark21@koreacom 1370, +82-53-950-5440 - 476 - :,, VOC,, CBML - Abstract -,, VOC VOC VOC - 477 - - 478 - Cost- Center [2] VOC VOC, ( ) VOC - 479 - IT [7] Knowledge / Information Management

More information

<32B1B3BDC32E687770>

<32B1B3BDC32E687770> 008년도 상반기 제회 한 국 어 능 력 시 험 The th Test of Proficiency in Korean 일반 한국어(S-TOPIK 중급(Intermediate A 교시 이해 ( 듣기, 읽기 수험번호(Registration No. 이 름 (Name 한국어(Korean 영 어(English 유 의 사 항 Information. 시험 시작 지시가 있을

More information

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX 20062 () wwwexellencom sales@exellencom () 1 FMX 1 11 5M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX D E (one

More information

소프트웨어개발방법론

소프트웨어개발방법론 사용사례 (Use Case) Objectives 2 소개? (story) vs. 3 UC 와 UP 산출물과의관계 Sample UP Artifact Relationships Domain Model Business Modeling date... Sale 1 1..* Sales... LineItem... quantity Use-Case Model objects,

More information

Omni Channel Commerce 동향 및 사례

Omni Channel Commerce 동향 및 사례 옴니채널실현을위한 전자상거래플랫폼 (hybris) 전략 SAP 서비스사업부김태훈이사 목 차 I. 전자상거래시장현황 상거래시장에서전자상거래시장으로의변천전자상거래시장의진화 : 옴니채널전자상거래시장의인프라구축현실 II. SAP 의협업을위한제안 SAP hybris : 플랫폼베이스의전자상거래목표시장 SAP hybris : 전자상거래협업을비즈니스모델 III. 왜 SAP

More information

Microsoft PowerPoint - ch07.ppt

Microsoft PowerPoint - ch07.ppt chapter 07. 시스코라우터기본동작 한빛미디어 -1- 학습목표 시스코라우터외적, 내적구성요소 시스코라우터부팅단계 시스코라우터명령어모드 한빛미디어 -2- 시스코라우터구성요소 라우터외부구성요소 (1) [ 그림 ] 2600 라우터전면도 인터페이스카드 전원부 LED 라우터조건 한빛미디어 -3- 시스코라우터구성요소 라우터외부구성요소 (2) [ 그림 ] VTY 를이용한라우터접속

More information