목록Cloud Computing (132)
MJay
정리 LightWeight Runtime Environment Programming 그래서 DLA와 Computation Application을 잘 디자인하는게 중요하다 현재 과제는 계산을 GPU,CPU,Coprocessor로 나눠서 쓰게 하는거랑 Balance Load, Idle Times 이다 A Programming Model refers to the style of programming where execution is invoked by making what appear to be library calls. 그래서 NEW API를 만들었다. lightweight superscalar runtime environment에서 이건 task scheduling을 자동으로 해준다. QUARK PLASM..
알고리즘이 tasks로 나눠진다. MPI를 통해 계속 Ascyhronous하게 task를 진행할수있다.
the MAGMA libraries were designed for heterogeneous architectures, including current investigations on new data layouts, functionalities, batched computations, and possibly generalizations to tensors, in order to provide applications new functionalities to deal efficiently with multi-dimensional data we transform the tensor contractions to batched GEMM. The kernels are organized as follows: (1) ..
웬만하면 5년안에 있는 IEEE, ACM 학회에서 나온 논문을 찾으라고 하신다 Best Student -> FInd Best Papers for your Advisor라고 한다.
1 nvidia-docker라는건 다른 의미로 docker run --volume-driver=nvidia-docker --volume=nvidia_driver_361.48:/usr/local/nvidia랑 같다 2 일단 옵션은 sudo NV_GPU="0,1" nvidia-docker run -it --name test1 kmubigdata/ubuntu-cuda-cudnn /bin/bash NV_GPU를 통해 Graphic Card를 개수만큼 조절해줄수있다. GPU identifer에 맞게 조절해줄수있다고 한다. 3 nvidia-docker를 통해 run이랑 create만 가능한다. create는 하나의 volume을 만든다고 보면된다. 4 sudo docker volume ls을 하면 DRIVER - ..
POS Taggin lexical token Token 어휘가 있는 token POS란 품사라고 뜻한다 noun, adverbs, adjectives, pronouns, conjunction Part of Speech Tagging과 같은 뜻 tagging, labeling, annotation POS Tag Brown Corpus 문장 많이 모아 놓은것 Penn Treebank 가장 많이 쓰인다 45 Pos Tagging Claws5 “C5" taggin 종류 의미 tagging Pos tagging 구문 tagging 개체명 tagging P, L, O POS Tagsets Verbs VB,VBP,VBZ,VBD Nouns NNP,NNPS,NN,NNS POS Tagging Approaches Rule-..
데모사이트가 있다고 한다. Word2Vector - 단어를 vector로 표현 고양이를 [1,0,0,0] 개 [0,1,0,0] 사람 [0,0,1,0] 이걸로는 단어의 의미를 전혀 알 수 없으니 단어의 의미를 파악하는 벡터를 알고싶다 n-gram 어떤 단어의 출현확률은 이전 (n-1)개의 단어에 의존한다. CBOW(Original) - Continuous Bag of Word Skipgram With Center Word, we can predict context words. WordEmbedding CBOW( Continuous Bag of Word Model) Idea: Using context words, we can predict center word Probability ( “It is ( ) t..
from datetime import datetime, timedelta, timezone import boto3 import pymysql # 00. AWS Resource Initialize dynamodb = boto3.resource('dynamodb') # 01. UTC to Local Converter def convert_utc_to_local(utctime_str, offset): return datetime.strptime(utctime_str, "%Y-%m-%d %H:%M:%S") \ .replace(tzinfo=timezone.utc).astimezone(tz=timezone(timedelta(hours=offset))) \ .strftime("%Y-%m-%d %H:%M:%S %Z")..
참고하시길 https://docs.google.com/presentation/d/1FwFtsm5P0S01dMM7pK2nY_V_5qOkFndom6L5nKYu7Mo/edit?usp=sharing
up vote 81 down vote favorite 36 I am a student in Computer Science and I am hearing the word "overhead" a lot when it comes to programs and sorts. What does this mean exactly? overhead share|improve this question asked May 18 '10 at 19:04 yuudachi 6471816 16 how much "extra stuff" you need to do in order to get something. e.g. If I have to load up a 37 class project just to print "Hello World" ..