You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mlflow-site/src/app/components/Demo.tsx
+17-2Lines changed: 17 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,23 @@ const Demo = () => {
9
9
];
10
10
constdemoCardBlurbs=[
11
11
'Create experiments with MLflow.js. Using built-in workflows, manage complex operations easily.',
12
-
'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.',
13
-
'Once the run completes, the MLflow UI provides powerful visualization tools to analyze experiments. Compare training and testing metrics across different runs to track performance patterns, or create custom charts that combine any logged hyperparameters and metrics to identify optimal model configurations'
12
+
<>
13
+
This example demonstrates how to use MLflow.js to support a full ML
14
+
project with TensorFlow.js. It covers logging hyperparameters and metrics
15
+
during training, evaluating model performance, registering high-performing
16
+
models, and exploring results in the MLflow UI. Check out the full code
'Once the run completes, the MLflow UI provides powerful visualization tools to analyze experiments. Compare training and testing metrics across different runs to track performance patterns, or create custom charts that combine any logged hyperparameters and metrics to identify optimal model configurations',
Copy file name to clipboardExpand all lines: mlflow-site/src/app/components/Features.tsx
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,8 @@ import FeatureCard from "./FeatureCard";
3
3
constFeatures=()=>{
4
4
constfeatureHeader='MLOps in Javascript, made simple.';
5
5
constfeatureLongBlurb=`
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.
6
+
MLflow.js is an open source JavaScript client library, bringing MLflow's powerful capabilities to JavaScript and TypeScript environments. It makes machine learning experimentation and model management intuitive for JavaScript developers through a clean, Promise-based API. Built with TypeScript, it provides comprehensive access to MLflow's REST API while adding streamlined abstractions for common ML workflows. Whether you're tracking experiments with TensorFlow.js, automating retraining pipelines, or managing A/B tests, MLflow.js helps you organize and version everything in one place.
0 commit comments