일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Crawling
- adaptive life cycle
- visualizing
- opencv
- AWS
- TypeScript
- Agile
- matplotlib
- 자바스크립트
- instance
- javascript
- pandas
- data
- 크롤링
- angular
- algorithm
- tensorflow
- keras
- analyzing
- data analyze
- 다나와
- python
- DANAWA
- 애자일
- webcrawling
- Project
- ECS
- Scrum
- Method
- 프로젝트
- Today
- Total
목록LAMBDA (2)
LiJell's 성장기

SageMaker, Lambda, and API Gateway I had the task of deploying a pre-trained PyTorch neural network via SageMaker, so I want to share how I went through it. I hope this article will make you get familiar with using AWS SageMaker. Result of Project Image Converter from Tooning You can check the result from Tooning very soon. *Tooning is a feature that made by *Toonsuqare. *Toonsquare is a company..
modified on Wed Dec 29 \#-*- coding: utf-8 -*- """ Created on Wed Dec 15 15:23:14 2021 @author: hanju """ 사용자 정의 함수 사용자가 정희하는 함수의 형태 input과 output 관계를 내부에 정의 def, lamda(축약형) 함수 정의 f(x) = x+1 1. def 방식 \# def 함수이름(인수1, 인수2, 인수3): \# 함수 본문 \# return 반환할 객체 숫자를 넣어서 곱하기 10한 값을 반환 def f_mul(x): a1=x*10 return a1 f_mul(100) 1000 두 숫자(두개의 인자를 함수에 넣는구나) 넣어서 두 숫자의 곱 반환 def f_2_mul(x,y): a2=x*y return a2 ..