Skip to content

Commit d323bf3

Browse files
committed
added splash site text
1 parent 33849ad commit d323bf3

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

mlflow-site/src/app/components/Demo.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import DemoCard from "./DemoCard";
33
const Demo = () => {
44
const demos = [];
55
const demoCardHeaders = [
6-
'Demo 1',
7-
'Demo 2',
6+
'Manage experiments',
7+
'Complete workflow',
88
];
99
const demoCardBlurbs = [
10-
'Description for what\'s happening in Demo 1. This block of text will contain all the info needed to understand the demo.',
11-
'Description for what\'s happening in Demo 2. This block of text will contain all the info needed to understand the demo.',
10+
'Create experiments with MLflow.js. Using built-in workflows, manage complex operations easily.',
11+
'Use MLflow.js to support a full ML project with TensorFlow.js. Log hyperparameters and key metrics during each training step. Evaluate model performance and register succesful models.',
1212
];
1313
const demoCardVideos = [
1414
'https://player.vimeo.com/video/1023585657',

mlflow-site/src/app/components/Features.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ import FeatureCard from "./FeatureCard";
33
const Features = () => {
44
const featureHeader = 'MLOps in Javascript, made simple.';
55
const featureLongBlurb = `
6-
Longer blurb about MLFlow.js\'s feature set. Longer blurb about MLFlow.js\'s feature set. Longer blurb about MLFlow.js\'s feature set. Longer blurb about MLFlow.js\'s feature set. Longer blurb about MLFlow.js\'s feature set. Longer blurb about MLFlow.js\'s feature set.
6+
MLflow.js makes ML experimentation and model management seamless for JavaScript developers. Built with TypeScript, it provides intuitive access to MLflow\'s complete REST API while adding powerful abstractions for common ML workflows. Whether you\'re training models with TensorFlow.js, managing A/B tests, or monitoring production models, MLflow.js helps you track everything in one place.
77
`;
88
const cards = [];
99
const featureCardHeaders = [
10-
'Feature 1',
11-
'Feature 2',
12-
'Feature 3',
13-
'Feature 4',
10+
'Effortless integration',
11+
'Streamlined MLOps',
12+
'For the modern web developer',
13+
'Dive deeper',
1414
];
1515
const featureCardBlurbs = [
16-
'Feature Card Blurb 1. Feature Card Blurb 1. Feature Card Blurb 1. Feature Card Blurb 1. Feature Card Blurb 1. Feature Card Blurb 1. Feature Card Blurb 1. Feature Card Blurb 1. ',
17-
'Feature Card Blurb 2. Feature Card Blurb 2. Feature Card Blurb 2. Feature Card Blurb 2. ',
18-
'Feature Card Blurb 3. Feature Card Blurb 3. Feature Card Blurb 3. Feature Card Blurb 3. ',
19-
'Feature Card Blurb 4. Feature Card Blurb 4. Feature Card Blurb 4. Feature Card Blurb 4. '
16+
'Connect your JavaScript stack directly to MLflow with minimal setup.',
17+
'Automate key MLOps tasks directly from Node.js, simplifying workflow management. Manage experiments, runs, model registry and model version management with dedicated methods.',
18+
'Designed specifically for JavaScript developers: no Python knowledge required.',
19+
'Execute complex MLOps tasks with a single function call with MLflow.js\'s powerful built-in workflows.'
2020

2121
];
2222
for (let i = 0; i < 4; i++) {

mlflow-site/src/app/documentation/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export default function Documentation() {
145145
},
146146
{
147147
name: 'Set Experiment Tag',
148-
description: 'Sets a tag on an experiment.',
148+
description: 'Sets 1 or more tags on an experiment.',
149149
requestProps: [
150150
{
151151
name: 'experiment_id',

0 commit comments

Comments
 (0)