본문 바로가기

개발 & IT/개발 라이프 & 팁

(15)
생성형 AI의 종류: 다양한 기술의 진화 **생성형 AI(Generative AI)**는 우리가 데이터를 생성하고 활용하는 방식을 혁신적으로 변화시키고 있습니다.텍스트, 이미지, 음성, 음악 등 다양한 콘텐츠를 생성할 수 있는 이 기술은 다양한 모델과 알고리즘을 사용하여 발전해 왔습니다.이번 포스팅에서는 생성형 AI의 주요 종류와 그 특징들을 살펴보겠습니다. 1. 언어 생성 AI (Text Generation AI)언어 생성 AI는 자연어 처리(NLP) 기술을 활용해 텍스트를 생성하는 AI입니다. 이 기술은 방대한 양의 텍스트 데이터를 학습한 후, 인간처럼 자연스러운 문장을 생성할 수 있습니다. 대표적인 예로 GPT (Generative Pre-trained Transformer) 모델이 있습니다. GPT-3와 같은 모델은 소설, 기사, 기술 ..
[python] 파이썬 기초 - 웹 스크래퍼 간단 예제 파이썬 설치 Linux : sudo apt-get update sudo apt-get install python3 requests 라이브러리 설치 pip install requests Beautiful Soup 라이브러리 설치 pip install beautifulsoup4 웹 크롤링 예제 코드 작성 import requests from bs4 import BeautifulSoup url = 'https://news.naver.com' response = requests.get(url) # HTML 파싱 soup = BeautifulSoup(response.text, 'html.parser') # 뉴스 제목 추출 news_titles = soup.select('.cjs_t') print('start') ..
[AWS-EC2] ufw 활성화 후 connection time out 문제 방화벽 특정포트 활성화 후 포트가 안열리기에 ufw를 활성화하는 삽질을 해서 멀쩡히 잘되던 ssh가 안되는 문제 발생 ec2 서버 중지 후 작업 > 인스턴스 설정 > 사용자 데이터 편집 으로 들어가서 아래와 같이 ufw를 비활성화 해준다. Content-Type: multipart/mixed; boundary="//" MIME-Version: 1.0 --// Content-Type: text/cloud-config; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="cloud-config.txt" #cloud-config cloud_final_modules..
[GIT] vscode git auto login(git credential) 설정 https://git-scm.com/docs/git-credential-store Git - git-credential-store DocumentationIf not set explicitly with --file, there are two files where git-credential-store will search for credentials in order of precedence: ~/.git-credentials User-specific credentials file. $XDG_CONFIG_HOME/git/credentials Second user-specific credentials file.git-scm.com$ git config credential.helper store위와 같이 설정 ..
[AI 자동투자 봇] 키움증권 KOA 스튜디오 api 접속 오류 키움증권에서 제공하는 KOA 스튜디오를 실행하여 접속 후 업데이트가 실행되고 난 뒤에 스튜디오 프로그램을 재실행할 경우 오류가 발생하였다. [open api를 실행할 수 없습니다. ocx등록을 확인해주시길 바랍니다.] 위와 같은 오류가 발생하며 접속이 되지 않는다. 키움증권의 Q&A를 검색해보면 OpenAPI가 없을 때 발생하니 설치하라는 답변만 있는 상태. OpenAPI는 이미 설치되어 있다. 별로 도움 안됨. 구글링으로 OpenAPI설치 폴더의 opversionup을 실행 후 다시 스튜디오 접속하면 된다는 해결책을 찾았다. 접속 잘 된다. https://howtoworld.tistory.com/24 KOA Studio실행시 OpenAPI OCX 오류 opstarter "버전처리를 받으시려면 현재 실행..
[IOS/Swift] 앱 심사 거절 사유 - Guideline 2.1 - Performance - App Completeness We're looking forward to completing our review, but we are unable to continue because your app crashed during review. Please review the details below and the attached crash logs, then complete the next steps. Steps leading to crash: 1. Launched the app 2. Entered ID and Password and tapped the login 3. Tapped “마이페이지” button 4. Chose “1:1 문의” 5. Tapped “Choose File” 6. Chose “Take Photo or video”..
[IOS/Swift] 앱 심사 거절 사유 - 4.2.0 Design: Minimum Functionality 웹뷰로 구성된 앱을 심사요청하였는데 아래와 같은 메시지를 받았다 Your app provides a limited user experience as it is not sufficiently different from a mobile browsing experience. As such, the experience it provides is similar to the general experience of using Safari. Including iOS features such as push notifications, Core Location, and sharing do not provide a robust enough experience to be appropriate for the App Store. ..

반응형