목록Cloud Computing (132)
MJay
five benefits of infrastructural outsourcing: Reduced labor cost Reduced risk Reduced resource cost Increased flexibility of scaling Shorter lead time Reduced Labor Cost Serverless was fundamentally about no longer needing to look after your own server processes you care about your application’s business logic and state, and you let someone else look after whatever else is necessary for those to..
conv1 만 프린트 하는 command print (tf.get_collection(tf.GraphKeys.GLOBAL_VARIABLES, scope='conv1')) variable 읽는 코드 (sort팅) reader = tf.train.load_checkpoint("/tmp/mj/cifar10_train") variable_map = reader.get_variable_to_shape_map() names = (variable_map.keys()) result = [] for name in names: result.append((name, variable_map[name])) pprint.pprint(result) reader = tf.train.NewCheckpointReader(..
RAM & FLASH Dynamic RAM and FLASH both are memory devices ; these use silicon transistors in contrast to magnetic hard drives. What differs these two is : Internal structure of the memory Storage capacity How long it can hold the data without a refresh ? Cost vs performance DRAM Volatile memory , used for active cpu interactions ( ACTIVE memory) DRAM is the primary memory which does most of the ..
Three major branches of Machine Learning: Supervised Learning Unsupervised Learning Reinforcement Learning Two main types of supervised learning regression and classifcation Features and Labels Training Set Test Set Unsupervised learning Don't know what we looking for Reinforcement Learning 어떤 환경 안에서 정의된 에이전트가 현재의 상태를 인식하여, 선택 가능한 행동들 중 보상을 최대화하는 행동 혹은 행동 순서를 선택하는 방법이다. It is about taking suitab..
Setting the Stage The birth of the AWS EC2 - 2006 S3 -> Lambda The Birth of the Cloud In August of 2006 something happened which would fundamentally change this model. Amazon’s new IT Division, Amazon Web Services (AWS), announced the launch of Elastic Compute Cloud (EC2). EC2’s five key advantages are: Reduced labor cost Reduced risk Reduced infrastructure cost Scaling The Cloud Grows Slightly ..
Chapter 2. What Do Serverless Applications Look Like? Link Now that we’re well grounded in what the term Serverless means, and we have an idea of what various Serverless components and services can do, how do we combine all of these things into a complete application? What does a Serverless application look like, especially in comparison to a non-Serverless application of comparable scope? These..
five benefits of infrastructural outsourcing: Reduced labor cost Reduced risk Reduced resource cost Increased flexibility of scaling Shorter lead time Reduced Labor Cost Serverless was fundamentally about no longer needing to look after your own server processes you care about your application’s business logic and state, and you let someone else look after whatever else is necessary for those to..
Graphs are sets of connected nodes - verticesThe connections are referred to as edgeseach node is an operation with possible inputs that can supply some outputIn [1]:import tensorflow as tf In [2]:n1 = tf.constant(1) In [3]:n2 = tf.constant(2) In [4]:n3 = n1 + n2 In [5]:with tf.Session() as sess: result = sess.run(n3) In [6]:print (result) 3 n3 은 여기서 뭘까 -> Tensor 이다In [7]:print (tf.get_default_g..
## Setting the Stage ### The birth of the AWS EC2 - 2006 S3 -> Lambda ### The Birth of the Cloud In August of 2006 something happened which would fundamentally change this model. Amazon’s new IT Division, Amazon Web Services (AWS), announced the launch of Elastic Compute Cloud (EC2). EC2’s five key advantages are:1. Reduced labor cost2. Reduced risk3. Reduced infrastructure cost4. Scaling ### Th..