본문 바로가기

Travel to 장소, Go traveling in 장소 우리는 그냥 '여행 가다'라고 표현하는데, 여기서 '여행가다'에 해당되는 동사 travel이 같은 여행가다에서 다르게 쓰일 수 있다는걸 알았음... 1) 주어 + travel to + 장소: 말그대로 장소에 여행을 가다. 여행을 '가는' 그 행위 자체에 초점을 둔 표현 2) 주어 + go traveling in + 장소: 해당 장소에서 여행을 하는 (또는 즐기는) 행위에 초점을 둔 표현. travel에는 '이동하다'는 뜻도 있어서 해당 장소에소 돌아댕기는걸 상상하면 될듯 ex1) I heard that you are traveling to the US soon.너 미국으로 곧 여행간다고 들었어. ex2) I heard that you are going traveling in the US soon.너 곧 .. 더보기
[Pytorch] Transformer w/o self-attention implementation compatible with TensorRT class TransFormer(nn.Module): def __init__(self, dim, heads, dim_head, drop=0.1, qkv_bias=True): super(TransFormer, self).__init__() self.dim_head = dim_head self.scale = dim_head ** -0.5 self.heads = heads self.to_q = nn.Linear(dim, heads * dim_head, bias=qkv_bias) self.to_k = nn.Linear(dim, heads * dim_head, bias=qkv_bias) self.to_v = nn.Line.. 더보기
Word, Term, Phrase, Expression, Idiom word 단어, 낱말:Do not write more than 200 words.(작문 등에서) 200단어를 넘기지 않도록 하라.He uses a lot of long words.그는 긴 단어를 많이 쓴다.term (비교적 격식) 용어, 말:technical / legal / scientific terms전문[특수] / 법률 / 과학 용어‘Old man’ is a slang term for ‘father’.‘old man’은 ‘father’를 뜻하는 속어이다.phrase 구(句):Who coined the phrase ‘desktop publishing?’‘데스크톱 출판’이란 구는 누가 만들었을까?∴ 문법에서 phrase는 ‘the green car’, ‘on .. 더보기