달력

3

« 2024/3 »

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
728x90
반응형

요즘 chatGPT를 많이 사용하고 있는데요.

내용이 짤릴때 이전에는 별 생각이 없어서 넘어갔지만 파이썬 코드등을 볼떄면 너무 불편했습니다.

 

이번에도 주식관련 머신러닝 파이썬 코드에 대해서 알아보고 있었는데요.

짤리길래, 걍 넘어갈려고 하다가 '계속' 이렇게 입력을 해봤습니다.

(혹시나 다른 좋은 방법 있으시면 알려주세요.)

뭔가 내용이 마무리 돨때까지 계속을 입력하는 것입니다.

 

계속을..계속입력합니다.

그러다보면 이렇게 내용도 짧아지고, 뭔가 마무리 하는 멘트를 chatGPT 가 날려줍니다.ㅋ

이거 혹시 설명서나 뭐 가이드에 나와있는 내용인가요?ㅋ

전 막 검색해보던지라..ㅋㅋ 그 따위(?)것은 과감히 패스~~^^;;;

 

참고로 전 chatGPT plus 를 구독하고 있기는 하지만 무료계정에서도 동일하지 않을까요?

안된다면 너무 치사.......^^;;

 

한글로 입력해주기는 했지만 영어로 질문하고 "continue" 를 입력해도 동일하게 계속 내용을 이어 줄거라 믿습니다.~^^

 


이렇게 마칠려고 했는데요. 궁금했습니다. 그래서 제가 해봤습니다.

"그래서 왜요?"와 비슷한 느낌의 "계속"과 "왜요?" 지옥...

뭔가 자꾸 마무리 하는 느낌이 듭니다. 그래도 난 멈추지 않아~~~~~~~~~~~~!

 

자꾸 겉도는 느낌으로 비슷한 내용으로 대답을 합니다.

근데 우오~~~ 단 한번도 같은 답변을 안 하는 군요. 챗대리~

그래서 왜 그런지 물어봤습니다.

자신의 입장을 이야기 하는 군요. 그리고, 공통점이. 뭔가 짜증나는 느낌이... 느낌표( ! )로 자꾸 물어보지말라고 이야하는 것 같습니다. ^^;;

 

오늘도 슬기로운 chatGPT 생활이었습니다.

감사합니다.

 

 

728x90
반응형
:
Posted by 패치#노트
2023. 2. 23. 21:30

로또 번호 생성기 ^^ (feat. chatGPT) Programming/Python2023. 2. 23. 21:30

728x90
반응형

■ chat GPT 와 함께 놀기

로또 번호 생성기를 파이썬으로 만들어 보았습니다.

우선 아래와 같이 진행을 했구요.

https://openai.com/blog/chatgpt/

 

ChatGPT: Optimizing Language Models for Dialogue

We’ve trained a model called ChatGPT which interacts in a conversational way. The dialogue format makes it possible for ChatGPT to answer followup questions, admit its mistakes, challenge incorrect premises, and reject inappropriate requests. ChatGPT is

openai.com

please make the code for lotto number using python language in South Korea.
 
 

Sure, here is an example code for generating a set of six random lotto numbers (1-45) in Python:

import random

# Set the number of lotto numbers to generate
num_numbers = 6

# Set the range of possible lotto numbers (1-45)
min_number = 1
max_number = 45

# Generate a list of unique random lotto numbers
lotto_numbers = random.sample(range(min_number, max_number+1), num_numbers)

# Sort the lotto numbers in ascending order
lotto_numbers.sort()

# Print the lotto numbers
print("Today's lotto numbers are:")
for number in lotto_numbers:
    print(number, end=' ')

Please note that this code is for educational purposes only and should not be used to generate actual lotto numbers for gambling or other purposes.

친절한 주석과 함께 결과를 리턴해줍니다.


구글 코랩에서 이 코드를 실행해보았습니다.

Today's lotto numbers are:
12 22 23 26 30 34
Today's lotto numbers are:
5 8 11 37 38 42

어찌보면 간단하다고 볼수 있지만, 생각도 하지 않고 검색해서 뚝딱하고 나오니 소오름~~~^^;;

간단한 대학 퀴즈나 레폿같은것은 정말 도움이 많이 되겠는걸요.

매일 매일 이것저것 하나씩 만들어보면서 실행해봐야겠습니다.

좋은 하루되세요~^^

728x90
반응형
:
Posted by 패치#노트
2023. 2. 22. 20:43

open AI vs you.com Any2023. 2. 22. 20:43

728x90
반응형

요즘 핫한 Chat GPT 를 이용해서 다양한 질문들을 많이 해보고 있습니다.

코딩할때도 물론 도움이 되고, 아직은 완벽한 것은 아니지만 서서히 인공지능 세상이 오고 있다는 생각이 많이 드네요.

코딩하다가 모를때 물어보기도 편하고, 코딩도 짜주는 그냥 조수 같은 느낌?ㅎ

 

오늘은 제목 그대로 각각의 AI 챗봇에게 지금 이 사이트가 어떤지 물어봤습니다.


먼저 you.com

who are you - AI Search Based Chat | AI for Search Engines

 

 

 

 

CodeStockers is an online platform for developers to share and collaborate on code. It provides a range of tools and features to help developers write better code quickly, including an editor with syntax highlighting, auto-completion, linting, and code refactoring; a library of code snippets and tutorials to get developers up and running quickly; and a community where users can interact and share code and ideas. CodeStockers also offers an API to allow developers to integrate CodeStockers into their existing applications. The platform is open source, so developers can customize and extend it to suit their needs. Furthermore, CodeStockers allows users to collaborate on code projects in real-time, enabling them to share and work on the same project simultaneously. CodeStockers also provides a suite of integrated tools such as version control, task management, and code reviews, allowing developers to easily manage their workflow and streamline their development process.
코드스토커는 개발자들이 코드를 공유하고 협업할 수 있는 온라인 플랫폼이다. 문법 강조, 자동 완성, 보풀, 코드 리팩토링을 포함한 편집기, 개발자가 빠르게 실행할 수 있는 코드 스니펫 및 튜토리얼 라이브러리, 사용자가 상호 작용하고 코드와 아이디어를 공유할 수 있는 커뮤니티를 포함하여 개발자가 더 나은 코드를 빠르게 작성할 수 있도록 도와주는 다양한 도구와 기능을 제공한다. 코드스토커는 또한 개발자들이 코드스토커를 기존 응용 프로그램에 통합할 수 있도록 API를 제공한다. 플랫폼은 오픈 소스이므로 개발자는 자신의 요구에 맞게 맞춤형으로 확장할 수 있다. 또한 코드스토커는 사용자가 코드 프로젝트에 대해 실시간으로 협업할 수 있도록 해 동일한 프로젝트를 동시에 공유하고 작업할 수 있도록 한다. CodeStockers는 또한 버전 제어, 작업 관리, 코드 검토와 같은 통합 도구 모음을 제공하여 개발자가 워크플로우를 쉽게 관리하고 개발 프로세스를 간소화할 수 있도록 합니다.

다음은 Open AI에서 제공하는 곳

(open AI에서 로그인을 해야 chat GPT를 이용할 수 있습니다.)

 

 

ChatGPT: Optimizing Language Models for Dialogue (openai.com)

 

ChatGPT: Optimizing Language Models for Dialogue

We’ve trained a model called ChatGPT which interacts in a conversational way. The dialogue format makes it possible for ChatGPT to answer followup questions, admit its mistakes, challenge incorrect premises, and reject inappropriate requests. ChatGPT is

openai.com

I apologize, but as an AI language model, I do not have access to real-time information or websites beyond what has been crawled and indexed by search engines. However, I can provide some general information about what a website is and what it might contain.

A website is a collection of web pages that are accessed through a domain name, such as www.codestockers.com. Websites can contain a variety of content, including text, images, videos, and interactive elements like forms or chatbots. Websites can be designed for various purposes, such as marketing, e-commerce, education, or entertainment.
Based on its domain name, www.codestockers.com could potentially be a website related to software development or programming. However, without more information or an active website to examine, it is difficult to provide more detail.
미안하지만, AI 언어 모델로서, 나는 검색 엔진에 의해 탐색되고 색인화된 것 이상의 실시간 정보나 웹사이트에 접근할 수 없다. 그러나 웹 사이트가 무엇이고 웹 사이트에 포함될 수 있는 내용에 대한 일반적인 정보로 제공할 수 있습니다.

웹 사이트는 www.codestockers.com과 같은 도메인 이름을 통해 액세스되는 웹 페이지의 모음입니다. 웹 사이트는 텍스트, 이미지, 비디오 및 폼 또는 챗봇과 같은 대화형 요소를 포함한 다양한 콘텐츠를 포함할 수 있습니다. 웹 사이트는 마케팅, 전자 상거래, 교육 또는 엔터테인먼트와 같은 다양한 목적을 위해 설계될 수 있습니다.
도메인 이름에 따르면 www.codestockers.com은 잠재적으로 소프트웨어 개발 또는 프로그래밍과 관련된 웹 사이트일 수 있습니다. 그러나 더 많은 정보나 검토할 활성 웹 사이트가 없으면 더 자세한 정보를 제공하기가 어렵습니다.

 

 


결론은... 글쎄? 솔직히 개인적인 사이트라서 별 다른 글이 안 올라올 것이라고는 생각했지만.. 뭔가 혁신적인 뭔 분석이 나올지 알았지만..그닥.ㅋ

you.com 은 노력한 흔적이라도 보이고 있지만, ㅎㅎ

 

그래도 인공지능 세상~~~ 곧 만날것 같은 희망이 보이네요^^

728x90
반응형
:
Posted by 패치#노트