일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 인공지능
- 머신러닝
- 웹개발
- 2
- 프로그래밍언어
- 버전관리
- 네트워크보안
- 알고리즘
- 데이터베이스
- 프로그래밍
- 파이썬
- 소프트웨어
- 자료구조
- 클라우드컴퓨팅
- 네트워크
- 보안
- 컴퓨터공학
- 데이터과학
- 빅데이터
- 코딩
- 컴퓨터과학
- 소프트웨어공학
- 데이터구조
- 자바스크립트
- 컴퓨터비전
- I'm Sorry
- 데이터분석
- 사이버보안
- Yes
- 딥러닝
- Today
- Total
목록머신러닝 (265)
스택큐힙리스트
나는 null 값들을 채우기 위해 LinearRegression 모델을 사용하여 Rupeepersqft라는 feature에 작업 중이다. 코드를 실행할 때, 다음과 같은 오류가 발생한다: IndexError Traceback (most recent call last) in () 1 test_data = data_with_null.iloc[:,:3] ----> 2 Rupeepersqft_predicted['Rupeepersqft'] = pd.DataFrame(linreg.predict(test_data)) IndexError: only integers, slices (`:`), ellipsis (`...`), numpy.newaxis (`None`) and integer or boolean arrays a..
저는 다양한 PDF에서 텍스트를 OpenAI API로 보내고 싶습니다. 특히 2학년 학생을 위한 요약 또는 TL;DR 요약 API를 사용하고 싶습니다. 나는 PyMuPDF를 사용하여 PDF에서 텍스트를 추출하고 OpenAI 프롬프트를 준비할 수 있습니다. 질문: 토큰 수가 허용된 2049보다 긴 경우 프롬프트를 어떻게 준비해야 할까요? 텍스트를 단순히 잘라내고 여러 요청을 보내면 될까요? 아니면 핵심 포인트를 잃지 않도록 텍스트를 압축하는 방법이 있을까요? 답변 1import tiktoken encoding = tiktoken.encoding_for_model(gpt-3.5-turbo) number_of_tokens = len(encoding.encode(tiktoken은 멋지다!)) print(numb..
따라서 x와 z의 차원을 tc = torch.cat([x,z], dim=1)에서 어떻게 조정합니까? 다음과 같이 코드가 주어집니다.import torch from torch import nn, optim from torch.autograd import Variable class VRNNCell(nn.Module): def __init__(self): super(VRNNCell,self).__init__() self.phi_x = nn.Sequential(nn.Embedding(128,64), nn.Linear(64,64), nn.ELU()) self.encoder = nn.Linear(128,64*2) # 출력 하이퍼파라미터 self.phi_z = nn.Sequential(nn.Linear(64,64),..
제가 이 코드를 실행할 때 이 오류를 왜 받고 있나요? Traceback (most recent call last): File main.py, line 13, in def twoSum(self, nums: list[int], target: int) -> list[int]: TypeError: 'type' object is not subscriptable nums = [4,5,6,7,8,9] target = 13 def twoSum(self, nums: list[int], target: int) -> list[int]: dictionary = {} answer = [] for i in range(len(nums)): secondNumber = target-nums[i] if(secondNumber in d..