Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 인자 힌트
- 컨텍스트 매니져
- 대스크
- 동화책
- dask
- UDF
- 아기동화
- AI 동화
- 파이썬
- 제로샷
- 인컨텍스트 러닝
- 도커
- Python
- GPT
- 파라미터 힌트
- Ai
- Docker
- Cognitive Search
- Azure
- Compute
- Cognitive Service
- 토끼
- 검색
- FOR
- 프롬프트 튜닝
- 반복문
- 퓨샷
- 조건문
- 모험
- Redshift
Archives
- Today
- Total
목록delayed (1)
호랭이 분석가
Dask #1. 대스크 Delayed 를 사용한 병렬화와 visualize, compute
1. Delayed Delayed 함수를 비교하기 위하여 파이썬 함수와 비교하면서 보겠습니다. # 기본 함수 from time import sleep def inc(x) : sleep(5) return x + 1 def add(x, y) : sleep(5) return x + y %%time x = inc(1) y = inc(2) z = add(x, y) 파이썬에서는 x > y > z 순으로 순차적으로 실행하기 때문에 15초가 걸립니다. import dask.delayed as delayed @delayed def inc(x) : sleep(5) return x + 1 @delayed def add(x, y) : sleep(5) return x + y Dask의 delayed 함수를 사용하기 위하여 데코..
Python/Dask
2022. 4. 10. 17:22