728x90
728x90


"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."


[개발자를 위한 LLM] 트랜스포머(Transformer) 개요
IT/Large Language Model 2024. 3. 18. 16:24

LLM 알고리즘의 시초 트랜스포머(Transformer)에 대해서 알아보곘습니다.트랜스포머의 개요 부터 시작해서 트랜스포머의 주요 엔티티 및 알고리즘까지 포스팅이 이어지겠습니다. 트랜스포머2017년 Google Research에서 발표한 자연어 처리 모델"Attention is All You Need"라는 논문에서 처음 제안논문 제목처럼 Attention 매커니즘을 이용주로 언어 번역, 문장 생성, 요약 등의 작업에 사용 트랜스포머의 장점병렬 처리 가능: RNN과 달리 트랜스포머는 시퀀스 내 모든 요소를 동시에 처리할 수 있어, 효율적이고 빠른 학습이 가능장거리 의존성 학습: 문장 내 멀리 떨어진 요소들 간의 관계도 잘 파악확장성: 큰 모델과 데이터에도 잘 확장되어, 더 정확한 결과를 낼 수 있음 트랜스..

[Pandas] 데이터 프레임 정보 확인하기
IT/Machine Learning 2024. 3. 17. 21:29

데이터 프레임의 각종 정보를 확인하는 방법을 알아보겠습니다. 데이터 프레임은 생성 방법은 이전 포스팅을 참고하시면 됩니다. [Pandas] 데이터 프레임 생성하기 판단스로 데이터 프레임을 만드는 방법에 대해서 알아보겠습니다. 데이터 직접 입력해서 데이터 프레임 생성하기 데이터 프레임을 생성 할 때 데이터를 직접 입력해서 만드는 방법입니다. import jkim83.tistory.com 데이터 프레임 정보 보기 컬럼명, 컬럼 데이터 타입 등 데이터 프레임의 정보는 info() 함수를 이용해서 볼 수 있습니다. import pandas as pd df.info() 데이터 프레임 컬럼명 보기 데이터 프레임 컬럼명은 columns 속성을 통해서 알 수 있습니다. colums는 Index 타입으로 리스트 타입으로..

[입트영] The important of Self-esteem - 2024.3.12
스터디/영어 2024. 3. 17. 20:57

EBS 입이 트이는 영어 2024.3.12 The important of Self-esteem The important of Self-esteem 본문 Self-esteem is a crucial asset as we navigate through life. It is a sense of dignity and self-respect that serves as a driving force for life. I don't think I have a particularly high level of self-esteem. I doubted myself and lost confidence in certain situation even in fields that I'm familiar with and skilled..

[입트영] Air Conditioners - 2024.3.11
스터디/영어 2024. 3. 16. 22:30

EBS 입이 트이는 영어 2024.3.11 Air Conditioners Air Conditioners 본문 My room was not getting cooled properly because it was a bit far from the floor-standing air conditioner in the living room. It would be a bit challenging to install a wall-mounted air conditioner in my room because they require outdoor unit. Meanwhile, a system air conditioner in the ceiling was out of the question becase it would be ..

[Pandas] 데이터 프레임 생성하기
IT/Machine Learning 2024. 3. 15. 22:20

판단스로 데이터 프레임을 만드는 방법에 대해서 알아보겠습니다. 데이터 직접 입력해서 데이터 프레임 생성하기 데이터 프레임을 생성 할 때 데이터를 직접 입력해서 만드는 방법입니다. import pandas as pd df=pd.DataFrame( {'id':[1,2,3,4,5,6,7,8], 'fruit':['apple','apple','mango','orange','strawberry','orange','mango','pear'], 'count':[10,3,2,4,5,9,20,1], 'weight':[3.1,5.92,0.4,5.0,5.1129,3.442,2.1,9.999] }) DataFrame 선언할 때 값을 직접 입력해서 만드는 방법입니다. 딕셔너리 형태로 입력하고 딕셔너리의 키가 id, fruit, ..

[입트영] Online Comments - 2024.3.8
스터디/영어 2024. 3. 15. 20:19

EBS 입이 트이는 영어 2024.3.8 Online Comments Online Comments 본문 The literal meaning of an online comment is a short response to the original content of a post on the Internet. In modern society, comments have become a genre of their own, used to express various opinions. What’s more you can often find a great play on words any witty comment. An online comment can either hurt the author’s feelings or b..

728x90
728x90