Skip to content

Commit

Permalink
Slideshow copy & styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Pelak committed Mar 20, 2024
1 parent c4e4673 commit e4ef25f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 13 deletions.
6 changes: 1 addition & 5 deletions src/components/HowItWorks/Slideshow.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
align-items: flex-end;

.order {
@include type-style("heading-05");
Expand All @@ -119,10 +119,6 @@
word-break: auto-phrase;
padding-right: 1rem;
margin-right: auto;

@include breakpoint(xlg) {
max-width: 50%;
}
}
}

Expand Down
35 changes: 27 additions & 8 deletions src/components/HowItWorks/Slideshow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,45 @@ const steps = [
{
animationSize: 400,
animationName: 'detect-gap',
description:
'Experiment locally, on a quantized version of the latest InstructLab model, with adding new knowledge and skills.',
description: (
<>
Experiment locally, on a quantized version of the latest InstructLab
model, with adding new <strong>knowledge and skills</strong>
</>
),
},
{
animationSize: 450,
animationName: 'taxonomy',
description:
'Once a synthetic data recipe is ready, submit a pull request to contribute back to the InstructLab repository, which is organized in a structured taxonomy.',
description: (
<>
Once a synthetic data recipe is ready, submit a pull request to
contribute back to the InstructLab repository, which is organized in a
structured <strong>taxonomy</strong>
</>
),
},
{
animationSize: 320,
animationName: 'synthetic-data',
description:
'InstructLab uses the new recipes to systematically generate synthetic data for the new capabilities - and this data is released to the community.',
description: (
<>
InstructLab uses the new recipes to systematically generate{' '}
<strong>synthetic data</strong> for the new capabilities - and this data
is released to the community
</>
),
},
{
animationSize: 400,
animationName: 'fine-tune',
description:
'InstructLab merges the new skill back into the base model by updating it using all synthetic data generated to date, and releases a new model version to the community.',
description: (
<>
InstructLab <strong>merges</strong> the new skill back into the base
model by updating it using all synthetic data generated to date, and
releases a new model version to the community
</>
),
},
];

Expand Down

0 comments on commit e4ef25f

Please sign in to comment.