일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 딥러닝
- MATLAB
- Linux
- matplotlib
- SQL
- Python
- 파이썬
- 시각화
- 서평
- 통계학
- tensorflow
- Google Analytics
- 독후감
- Tistory
- Blog
- 텐서플로
- 파이썬 시각화
- 한빛미디어
- MySQL
- 리눅스
- 티스토리
- 매틀랩
- Visualization
- 블로그
- 월간결산
- Pandas
- 서평단
- python visualization
- Ga
- 한빛미디어서평단
- Today
- Total
목록분류 전체보기 (596)
pbj0812의 코딩 일기
------------------------- 가는 길 ----------------------------------------------- 회사에서 데이터 분석 / 인공지능 파트를 맡고 있지만 내가 회사에서 하는 일이 정말 딥러닝인지에 대한 현타가 오던 중 TF-KR에서 '멋진 딥러닝연구 개발자되기'란 주제를 가지고 모임을 가지길래 바로 신청했다. 1분 전부터 계속 새로고침 누르니까 트래픽 때문인지 컴퓨터 성능 때문인지 홈페이지가 2초 간격으로 갱신되길래 2초 남기고 눌렀더니 성공... 판교길래 좀 멀었지만 역 옆이 건물(알파돔 타워 IV)이라 다행... 오늘 아침에 기사 보니까 블루홀이 먹었다던거 같기도... 건물이 헷갈리게 지어놔서 길 좀 헤매다 찾음. 진행 순서는 패널 1인 발표(15분씩) 및 질..
유투브 https://www.youtube.com/playlist?list=PLUbfZS5pM8dFtg7W6UyRn5eHfRy6PikQC 인프런 https://www.inflearn.com/course/matlab-%EC%8B%9C%EC%9E%91-programming/ 구름 EDU https://edu.goorm.io/lecture/3977/matlab%EC%9C%BC%EB%A1%9C-%EC%8B%9C%EC%9E%91%ED%95%98%EB%8A%94-%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D
https://www.youtube.com/playlist?list=PLUbfZS5pM8dHGAa3BRHSwXXmu1chdQ6y7 재녹화 필요...
장비 후져서 소리 후짐. https://www.youtube.com/playlist?list=PLUbfZS5pM8dGDMN7a83ebfOHPe0HtkjqT
import sysimport math # Auto-generated code below aims at helping you parse# the standard input according to the problem statement. n, r = [int(i) for i in input().split()]l = [i*r for i in range(n)]print(*l)
print(sum(ord(x) for x in input()))
import sysimport math # Auto-generated code below aims at helping you parse# the standard input according to the problem statement. n = int(input())q=""for i in input().split(): digit = int(i) q+=str(digit)# Write an action using print# To debug: print("Debug messages...", file=sys.stderr)print(0 if int(q)==0 else "".join(sorted(q)[::-1]))
import sysimport math # Auto-generated code below aims at helping you parse# the standard input according to the problem statement. s = input() # Write an action using print# To debug: print("Debug messages...", file=sys.stderr) t = 0for c in s.lower(): t += ord(c) - ord('a') + 1print(t)
import sysimport math # Auto-generated code below aims at helping you parse# the standard input according to the problem statement. s = input().split()[::-1] # Write an action using print# To debug: print("Debug messages...", file=sys.stderr) print(*s)
http://doriri.tistory.com/30