목록All Contents (169)
Code&Data Insights
1. 웹이란 무엇인가?: 웹은 인터넷을 통해 전 세계적으로 정보를 공유하고 접근할 수 있는 시스템=> 하이퍼텍스트로 연결된 문서들의 집합체 2. 웹이 탄생한 이유?: 웹은 1989년에 팀 버너스리에 의해 제안되었으며, 정보를 공유하고 연결하는 데에 초점을 맞췄습니다. 그 당시에는 정보를 공유하기 위해서는 주로 이메일이나 FTP와 같은 방식을 사용했는데, 이러한 방식은 사용자가 직접 해당 서버에 접속해야 했고, 정보를 찾는 과정이 번거로웠습니다.그러나 웹은 하이퍼텍스트를 이용하여 문서들을 링크시키고, 이를 통해 사용자가 쉽게 정보를 찾고 연결할 수 있게 하였습니다.=> 하이퍼텍스트로 연결된 문서들의 집합체 3. 초기 웹페이지의 형태는? : 초기의 웹페이지는 단순하고 정적인 형태였습니다. 대부분의 페이지는 ..
1. 질문 환경이나 맥락에 대해 말해주기!- 필요한 정보를 구체적으로 제공2. 하지 말아야 될것보다 해야될 것을 말해주기!- 긍정지시문 - Don't 보다 Do를 사용하기 3. 한번에 지시하기 보다 나눠서 지시하기복잡한 문제는 쪼개서 요청! (세분화) - LLM은 맥락을 기억하기 때문에, 하위 작업으로 분류해 단계별로 요청한다 4. 역할, 톤 지정하기 5. 예시 제공하기 - Few shot learning (하지만, AI hallucination의 위험이 커짐) 6. 열린 질문- 모델이 자세하고 풍부한 답변을 제공하도록 유도합니다. 단순한 '예' 또는 '아니오'로 대답할 수 있는 질문보다는 더 많은 정보를 제공하는 질문 7. 예의 차릴 필요 없음 그냥 본론만 얘기하기!-..
https://thegradient.pub/car-gpt/ Car-GPT: Could LLMs finally make self-driving cars happen?Exploring the utility of large language models in autonomous driving: Can they be trusted for self-driving cars, and what are the key challenges?thegradient.pub 최근 애플이 자율 주행 전기차 사업을 접었는데, 저를 포함하여 자율 주행 차의 미래에 대해 궁금함을 가진 분들에게 좋은 아티클이라고 생각해 공유하게 되었습니다. 초기 자율주행차의 구현 모델 이후,End-To-End learning을 도입했지만 여전히 a ..
Preventing AI Hallucinations with Prompt Engineering 1) “According to…” prompting : LLM은 질문에 대한 지식이나 맥락이 없을 때 hallucinations을 일으킬 가능성이 높아짐. => 답변을 할때 참고할 specific source(특정 소스)를 지정하여 질문(prompt)함. (ex) What part of the brain is responsible for long-term memory, according to Wikipedia? "According to ...": Prompting Language Models Improves Quoting from Pre-Training Data Large Language Models (LLMs..
Chain-of-Thought Approach : involves breaking down a complex task into smaller and easier ones through a sequence of more straightforward prompts a prompt-based learning approach => Feed the model with related questions along with their corresponding solutions ** Use same logic & reasoning => Linear Appoach ( Each new idea links directly to the previous one ) Tree-of-Thought Approach : hierarchi..
해외사이트 - https://techcrunch.com/category/artificial-intelligence/ AI News & Artificial Intelligence | TechCrunch Read the latest on artificial intelligence and machine learning tech, the companies that are building them, and the ethical issues AI raises today. techcrunch.com - https://thegradient.pub/ The Gradient A digital publication about artificial intelligence and the future. thegradient.pub..
WITHOUT PROMPT => Prompt Instruction 없이 매우 평범하고 짧은 대화가 생성됨 WITH 1st PROMPT => 처음 대화보다 좀 더 친근한 버전이지만, 실생활에서 다른 대화 없이 주문을 받고 난 뒤 우리 커피샵을 골라줘서 고마워 이렇게 말하는 것은 어색하다고 생각함. WITH 2nd PROMPT => 원래 의도는 손님이 원하지 않는 경우에도 베이커리 메뉴 추천을 해서 수익을 올리려는 목적인데, 애초에 생성된 대화 내용이 손님이 추천을 원하는 경우로 나왔다. WITH 3rd PROMPT : 같은 prompt instruction이지만, prompt를 상세하게 설정(손님이 커피만 시키고 싶어하는 경우) => 의도한 결과와 실제상황과 가까운 자연스러운 대화가 생성됨!
Generative AI : 트레이닝 데이터를 기반으로 다양한 포맷(text, images, code, audio, video)의 새로운 컨텐츠를 생성해주는 AI 모델. Generative AI models are trained on substantial datasets of existing content and learn to generate new content similar to the data they were trained on. - Generative AI can start from the prompt, prompt can be Text/ Image/ Video/etc and then, it generates a new content as text/images/audio/video/code/d..