분류 전체보기
-
Genie: Generative Interactive Environments 논문 : https://arxiv.org/abs/2402.15391?utm_source=pytorchkr 사이트 : https://sites.google.com/view/genie-2024/home?utm_source=pytorchkr Google DeepMind가 공개한 Gennie는 레이블이 지정되지 않은 인터넷 비디오를 통해 비지도 학습 방식으로 훈련된 최초의 생성적 대화형 환경이다. 모델은 텍스트, 합성 이미지, 사진, 심지어 스케치를 통해 설명되는 끝없이 다양한 액션 제어 가능한 가상 세계를 생성할 수 있다. 11B 규모의 파라미터를 가진 Genie는 Foundation World Model로 시공간 비디오 토크나이저,..
[IT Issues] Genie / Mistral Large / The Era of 1-bit LLMsGenie: Generative Interactive Environments 논문 : https://arxiv.org/abs/2402.15391?utm_source=pytorchkr 사이트 : https://sites.google.com/view/genie-2024/home?utm_source=pytorchkr Google DeepMind가 공개한 Gennie는 레이블이 지정되지 않은 인터넷 비디오를 통해 비지도 학습 방식으로 훈련된 최초의 생성적 대화형 환경이다. 모델은 텍스트, 합성 이미지, 사진, 심지어 스케치를 통해 설명되는 끝없이 다양한 액션 제어 가능한 가상 세계를 생성할 수 있다. 11B 규모의 파라미터를 가진 Genie는 Foundation World Model로 시공간 비디오 토크나이저,..
2024.03.06 -
VectorDB에 저장된 레퍼런스 문서를 참고해서 답변을 해주는 chatbot 만들기 (simple ver.) import os from openai import OpenAI def pdf_chat(query: str) -> str: # 1. 사용자 쿼리 벡터화 query_vector = query_embed(query) # 2. Hybrid Search 통해 레퍼런스 문서 반환 query_response = index.query( namespace="test--pdf-chat", top_k=10, include_values=True, include_metadata=True, vector=query_vector, filter={ "file": {"$in": [FILE_NAME]}, }, ) referen..
LINER PDF Chat Tutorial (2)VectorDB에 저장된 레퍼런스 문서를 참고해서 답변을 해주는 chatbot 만들기 (simple ver.) import os from openai import OpenAI def pdf_chat(query: str) -> str: # 1. 사용자 쿼리 벡터화 query_vector = query_embed(query) # 2. Hybrid Search 통해 레퍼런스 문서 반환 query_response = index.query( namespace="test--pdf-chat", top_k=10, include_values=True, include_metadata=True, vector=query_vector, filter={ "file": {"$in": [FILE_NAME]}, }, ) referen..
2024.03.06 -
https://github.com/liner-engineering/liner-pdf-chat-tutorial/tree/main GitHub - liner-engineering/liner-pdf-chat-tutorial: LINER PDF Chat Tutorial with ChatGPT & Pinecone LINER PDF Chat Tutorial with ChatGPT & Pinecone. Contribute to liner-engineering/liner-pdf-chat-tutorial development by creating an account on GitHub. github.com ChatGPT를 활용해 PDF 파일에 기반해 답변할 수 있는 질의응답 챗봇 코드를 다루고 있는 튜토리얼이다. 튜토리얼..
LINER PDF Chat Tutorialhttps://github.com/liner-engineering/liner-pdf-chat-tutorial/tree/main GitHub - liner-engineering/liner-pdf-chat-tutorial: LINER PDF Chat Tutorial with ChatGPT & Pinecone LINER PDF Chat Tutorial with ChatGPT & Pinecone. Contribute to liner-engineering/liner-pdf-chat-tutorial development by creating an account on GitHub. github.com ChatGPT를 활용해 PDF 파일에 기반해 답변할 수 있는 질의응답 챗봇 코드를 다루고 있는 튜토리얼이다. 튜토리얼..
2024.03.06 -
openAI - Sora https://openai.com/research/video-generation-models-as-world-simulators?utm_source=pytorchkr Video generation models as world simulators We explore large-scale training of generative models on video data. Specifically, we train text-conditional diffusion models jointly on videos and images of variable durations, resolutions and aspect ratios. We leverage a transformer architecture ..
[IT Issues] Sora / Gemma / LPU / Self-Discover / BASE TTSopenAI - Sora https://openai.com/research/video-generation-models-as-world-simulators?utm_source=pytorchkr Video generation models as world simulators We explore large-scale training of generative models on video data. Specifically, we train text-conditional diffusion models jointly on videos and images of variable durations, resolutions and aspect ratios. We leverage a transformer architecture ..
2024.03.04 -
문제 V개 마을과 E개 도로로 구성된 도시가 있다. 도로는 마을고 마을 사이에 있고 일방 통행 도로다. 도로를 따라 운동하기 위한 경로를 찾으려고 한다. 운동을 한 후에 시작점에 돌아오는 것이 좋기 때문에, 우리는 사이클을 찾기 원한다. 사이클을 이루는 도로 길이의 합이 최소가 되도록 찾기 2 dist[a][b] + nw : dist[a][nb] = dist[a][b] + nw heapq.heappush(heap, [dist[a][nb], a, nb]) else : print(-1) References 백준 그래프 탐색
[백준] 1956 운동문제 V개 마을과 E개 도로로 구성된 도시가 있다. 도로는 마을고 마을 사이에 있고 일방 통행 도로다. 도로를 따라 운동하기 위한 경로를 찾으려고 한다. 운동을 한 후에 시작점에 돌아오는 것이 좋기 때문에, 우리는 사이클을 찾기 원한다. 사이클을 이루는 도로 길이의 합이 최소가 되도록 찾기 2 dist[a][b] + nw : dist[a][nb] = dist[a][b] + nw heapq.heappush(heap, [dist[a][nb], a, nb]) else : print(-1) References 백준 그래프 탐색
2023.12.08 -
문제 회색은 건물의 위치이고 흰색은 건물이 없는 곳이다. 붉은 색 선으로 표시된 부분이 밖에서 보이는 벽이고, 이 벽에 조명을 장식하려고 한다. 벽의 총 길이는 64미터이다. 집의 건물 위치 지도가 주어졌을 때, 조명을 장식할 벽면의 길이의 합을 구하는 프로그램 작성하기 1
[백준] 5547 일루미네이션문제 회색은 건물의 위치이고 흰색은 건물이 없는 곳이다. 붉은 색 선으로 표시된 부분이 밖에서 보이는 벽이고, 이 벽에 조명을 장식하려고 한다. 벽의 총 길이는 64미터이다. 집의 건물 위치 지도가 주어졌을 때, 조명을 장식할 벽면의 길이의 합을 구하는 프로그램 작성하기 1
2023.12.06