Skip to content

Commit

Permalink
simplify / make explicit main page messaging (#5332)
Browse files Browse the repository at this point in the history
  • Loading branch information
shcheklein authored Dec 9, 2024
1 parent 30ff056 commit 0e1ef86
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.
12 changes: 12 additions & 0 deletions content/data/datachain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,15 @@
.filter(C.name.glob("*.jpg"))
images.save("fashion-product-images")
- title: Version datasets without copying data
description:
No expensive data copies, hash calculations, or data movement. Capture and
save metadata instead of data.
terminal: |
from datachain.lib.dc import C, DataChain
images = DataChain.from_storage("s3://my-storage/", type="image") \
.filter(C.name.glob("*.jpg"))
images.save("fashion-product-images")
17 changes: 9 additions & 8 deletions src/components/Home/Hero/HeroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const HeroSection = () => {
)}
>
<h2 className="text-2xl md:text-3xl font-medium">
GenAI DataChain
Data management at scale
</h2>
<Link
href={githubDatachainUrl}
Expand All @@ -139,7 +139,7 @@ const HeroSection = () => {
className={cn('flex flex-col gap-4', 'lg:flex-row lg:items-center')}
>
<h2 className="text-2xl md:text-3xl font-medium">
Data and model versioning
Reproducibility with Git
</h2>
<Link href={githubDvcUrl} className="no-underline hover:opacity-80">
<Badge className={cn('bg-dark text-light')}>
Expand Down Expand Up @@ -171,15 +171,16 @@ const HeroSection = () => {
alt="Visualization"
/>
<div className={cn(styles.heroDesc, styles.datachainDesc)}>
<strong>Explore</strong> and <strong>enrich</strong> annotated
datasets with custom embeddings, auto-labeling, and bias removal at
billion-file scale — without modifying your data.
Perfect fit for <strong>processing</strong> and{' '}
<strong>versioning</strong> of millions of files in cloud storages.{' '}
<strong>Explore</strong> and <strong>enrich</strong> datasets. Build
semantic layer for your unstructured data.
</div>

<div className={cn(styles.heroDesc, styles.dvcDesc)}>
<strong>Connect</strong> to versioned data sources and code with
pipelines, <strong>track</strong> experiments,{' '}
<strong>register</strong> models — all based on GitOps principles.
<strong>Version</strong> and save data, <strong>connect</strong> to
code, <strong>track</strong> experiments, <strong>register</strong>{' '}
models — all based on GitOps principles.
</div>
</div>
</SectionWrapper>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Home/Hero/HeroTitleSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const HeroTitleSection = ({ className }: { className?: string }) => {
</em>
<br />
</span>
for the <strong className="font-medium">GenAI</strong> era
for <strong className="font-medium">AI</strong> projects
</h1>
<p className="text-2xl mt-4 leading-normal">
Free and open source, forever.
Expand Down

0 comments on commit 0e1ef86

Please sign in to comment.