전체 글

컴공 AI 개발자가 되기 위한 노역입니다
def solution(inp): sec = 0 dial = {'A':2, 'B':2, 'C':2, 'D':3, 'E':3, 'F':3, 'G':4, 'H':4, 'I':4, 'J':5,'K':5, 'L':5, 'M':6, 'N':6, 'O':6, 'P':7,'Q':7, 'R':7, 'S':7, 'T':8, 'U':8, 'V':8, 'W':9, 'X':9, 'Y':9, 'Z':9} for s in inp: num = dial[s] sec += (num+1) return sec inp = input().upper() print(solution(inp)) python dictionary 사용 def solution(inp): dial = ['ABC', 'DEF', 'GHI', 'JKL', 'MNO', 'PQ..
백준 1157번 def max_cahr(inp): asc = [] n = [] for i in range(65, 91): # 32 asc.append(i) n.append(0) # for j in range(97, 123): # asc.append(j) # n.append(0) for a in inp: for idx, c in enumerate(asc): # ascii = int? str? if c == ord(a) : n[idx] += 1 if c+32 == ord(a) : n[idx] += 1 max_n = [] for id, k in enumerate(n): if k == max(n): max_n.append(k) index = id if len(max_n) > 1 : return '?' retur..
2021.09.27 랩미팅 준비 : Self-Attentive Associative Memory (ICML 2020) [Introduction] 지금까지 external memory를 가지는 neural network는 memory를 1개(single)만 사용하였지만 이 논문에서는 2개의 메모리(item memory, relational memory)를 사용하여 represnetation 을 저장할 수 있다. 논문에서 새롭게 제안하는 모델은 SAM(Self-Attentive Associative Memory) operator 이다. [Methods] 1. Outer product attention (OPA) 'Attention is all you need' 의 dot product attention(DP..
백준 11654번 a = input() print(ord(a)) * 아스키 코드(ASCII) -> 문자(str) 변환 : chr() 함수 ex) chr(65) >> 'A' * 문자 -> 아스키코드 변환: ord() 함수 ex) ord('A') >> 65 아스키 코드 표 백준 10809번 import sys S = list(sys.stdin.readline().rstrip()) def Num(S): L = [] num = [] for i in range(97, 123): # ASCII number L.append(i) num.append(-1) for j, l in enumerate(L): for n, c in enumerate(S): if ord(c) == l: if num[j] != -1: pass e..
섬섬옥수수
아날로그 인간의 컴공 되기