Cars Computer Vision Project
Updated a year ago
49
4
Metrics
https://vc.ru/u/1389654-machine-learning/603401-kak-ustanovit-chatgpt-na-kompyuter-v-2023-godu
login demidon666777@gmail.com psw: 1q2w3e4r5t
import openai
Set the API key
openai.api_key = "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"
Use the ChatGPT model to generate text
response = openai.ChatCompletion.create( model="gpt-3.5-turbo", messages=[ {"role": "system", "content": "You are a helpful assistant."}, {"role": "user", "content": "Who won the world series in 2020?"}, {"role": "assistant", "content": "The Los Angeles Dodgers won the World Series in 2020."}, {"role": "user", "content": "Where was it played?"} ] ) print(response.choices[0].message.content)
Use This Trained Model
Try it in your browser, or deploy via our Hosted Inference API and other deployment methods.
Build Computer Vision Applications Faster with Supervision
Visualize and process your model results with our reusable computer vision tools.
Cite This Project
If you use this dataset in a research paper, please cite it using the following BibTeX:
@misc{
cars-wdj1f_dataset,
title = { Cars Dataset },
type = { Open Source Dataset },
author = { Lapi },
howpublished = { \url{ https://universe.roboflow.com/lapi/cars-wdj1f } },
url = { https://universe.roboflow.com/lapi/cars-wdj1f },
journal = { Roboflow Universe },
publisher = { Roboflow },
year = { 2023 },
month = { oct },
note = { visited on 2024-11-24 },
}