작성
·
39
·
수정됨
0
안녕하세요,
20달러가 아깝지 않은 gpt활용법 강의중에 질문있습니다.~
위와같이, 강의내용대로 똑같이 질문을 해봤습니다.
출력된 코드는 아래와 같습니다.
import requests
from bs4 import BeautifulSoup
# Fetch the HTML content
url = 'https://startcoding.pythonanywhere.com/basic'
response = requests.get(url)
html_content = response.text
# Parse the HTML content
soup = BeautifulSoup(html_content, 'html.parser')
# Define the container for products, modify this as needed to match the actual structure
product_containers = soup.select('.product-container-selector')[:10] # Assuming there are selectors to find product containers
# List to hold product data
products = []
for container in product_containers:
category = container.select_one('.category-selector').text.strip() # Modify with the actual selector for category
product_name = container.select_one('.product-name-selector').text.strip() # Modify with the actual selector for product name
detail_link = container.select_one('.detail-link-selector')['href'].strip() # Modify with the actual selector for link
price = container.select_one('.price-selector').text.strip() # Modify with the actual selector for price
products.append({
'Category': category,
'Product Name': product_name,
'Detail Page Link': detail_link,
'Price': price
})
# Print or use the product data as needed
for product in products:
print(product)
여기서 질문이 있습니다.
같은 챗gpt4로 했음에도, 결과는 다를수 있는건가..?(그럴수 있을거같긴하네요..)
강의에서 보여준 analyzing 이라는 기능은, 제가했을때는 안나온것같습니다. 이것은 버젼차이일까요..? 아니면 제가 좀더 명령어를 쳐보면 될까요.?
제가 출력 받은 코드는 지금 css선택자를 제가 설정해야하는걸로 나오는데, 이것을 좀더 수정해달라고 명령어를 내려서 해결도 가능한것이지요..?
혹시 제가 다운로드 받아서 업로드한 파일이 잘못된것은 아닐까요? html예제 사이트() 다른이름 저장 하여 html 저장시, 파일과 폴더(Electro - HTML Ecommerce Template, Electro - HTML Ecommerce Template_files)가 2개 생성되던데 제가 업로드한것은 앞에 있는 파일 1개입니다.
수업내용보단.. 챗gpt 관련 내용이긴한데.. 답답해서 질문드립니다.~ 질문이 똑같으면, 출력도 똑같아야 하는게 아닌가~ 하는 생각이..ㅎㅎ
감사합니다.
답변 1
0
LLM 모델의 경우 질문에 대해서 확률적으로 가장 정답에 가까운 답변을 해줍니다.
즉, 같은 질문이라도 매번 다른 답변이 나온다는 말이죠!
강의에 있는 analyzing 기능은
더 많은 모델 -> GPT-4 를 통해 진행할 수 있습니다.
GPT는 현재 GPT4 GPT-4o 부터해서... GPT-4o-mini
o1-preview o1-mini GPT-4o with canvas 까지
모델들이 계속 추가되서 좀 헷갈려지죠...? ㅎㅎ
3번 질문에 대한 답변
-> GPT에는 어느것이든 다 요청할 수 있습니다. 수정해달라고 요청 얼마든지 할 수 있어요! 대신 못알아들을 경우가 있는데 직접 찾는게 속편할때도 있습니다