0.5.2-5 ā€¢ Published 12 months ago

@nick.heiner/wandb-fork v0.5.2-5

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
12 months ago

Use W&B to build better models faster. Track and visualize all the pieces of your machine learning pipeline, from datasets to production machine learning models. Get started with W&B today, sign up for a free account!

šŸŽ“ W&B is free for students, educators, and academic researchers. For more information, visit https://wandb.ai/site/research.

Want to use Weights & Biases for seamless collaboration between your ML or Data Science team? Looking for Production-grade MLOps at scale? Sign up to one of our plans or contact the Sales Team.

Ā 

Documentation

This is a TypeScript library compatible with Node and modern Web Browsers. It's inspired by our official Python SDK. We're currently missing a lot of the functionality found in our Python SDK, basic logging functionality is available:

import wandb from '@wandb/sdk'

await wandb.init({config: {test: 1}});
wandb.log({acc: 0.9, loss: 0.1});
wandb.log({acc: 0.91, loss: 0.09});
await wandb.finish();

We'll be adding additional features like Tables soon.

Integrations

Langchain

Traces can be logged from langchain versions >= 0.0.75.

import {WandbTracer} from '@wandb/sdk/integrations/langchain';

const wbTracer = await WandbTracer.init({project: 'langchain-test'});
// run your langchain workloads...
chain.call({input: "My prompt"}, wbTracer);
// be sure to call finish on the tracer
await WandbTracer.finish();
0.5.2-5

12 months ago

0.5.2-4

12 months ago

0.5.2-3

12 months ago

0.5.2-2

12 months ago

0.5.2-1

12 months ago

0.5.2-0

12 months ago