Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace occurrences of 'DataChain' with 'DVCx' in the website #5281

Merged
merged 2 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/data/datachain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
Datasets are getting larger, but the ability to iterate rapidly and
efficiently is as important as ever.
terminal: |
from datachain.query import C, DatasetQuery
from datachain.lib.webdataset import WebDataset
from datachain.lib.gpt4_vision import DescribeImage
from dvcx.query import C, DatasetQuery
from dvcx.lib.webdataset import WebDataset
from dvcx.lib.gpt4_vision import DescribeImage

prompt = "How many people in the image?"

Expand All @@ -21,6 +21,6 @@
Save the results of a query in a dataset that you can use to train your ML
models.
terminal: |
$ datachain query my-query.py my-dataset
$ dvcx query my-query.py my-dataset
..........
Dataset 'my-dataset' created
2 changes: 1 addition & 1 deletion src/components/Home/Hero/BetterTogether/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const BetterTogether = () => {
return (
<HeroContainer className="py-14 bg-blue-100">
<h2 className={cn('text-center text-3xl font-medium')}>
Datachain and DVC: Better Together
DVCx and DVC: Better Together
</h2>
<p className={cn('mt-8', 'text-xl font-normal')}>
Build the datasets you need without modifying your data sources. Create
Expand Down
4 changes: 2 additions & 2 deletions src/components/Home/Hero/HeroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const HeroSection = () => {
)}
>
<h2 className="text-2xl md:text-3xl font-medium">
GenAI data chain
GenAI dataset management
</h2>
<Badge className="bg-dark text-light">Coming soon</Badge>
</div>
Expand Down Expand Up @@ -175,7 +175,7 @@ const HeroSection = () => {
})
}}
>
<span>Learn about Datachain</span>
<span>Learn about DVCx</span>
<ArrowDown className="w-4 md:w-6 animate-bounce" />
</CTAButton>
</Section>
Expand Down
Loading