From 5a4d4005454c857c0886076b10b9b6151d65d4df Mon Sep 17 00:00:00 2001 From: Andrew Truong Date: Thu, 20 Jun 2024 20:40:48 -0400 Subject: [PATCH] test --- wandb_workspaces/reports/v2/interface.py | 50 ------------------------ 1 file changed, 50 deletions(-) diff --git a/wandb_workspaces/reports/v2/interface.py b/wandb_workspaces/reports/v2/interface.py index 69bbc90..288597f 100644 --- a/wandb_workspaces/reports/v2/interface.py +++ b/wandb_workspaces/reports/v2/interface.py @@ -1257,56 +1257,6 @@ def from_model(cls, model: internal.ScatterPlot): return obj -# @dataclass(config=dataclass_config, repr=False) -# class ConfusionMatrix(Panel): -# def to_model(self): -# ... - -# @classmethod -# def from_model(cls, model: internal.ConfusionMatrix): -# ... - - -# @dataclass(config=dataclass_config, repr=False) -# class DataFrames(Panel): -# def to_model(self): -# ... - -# @classmethod -# def from_model(cls, model: internal.ScatterPlot): -# ... - - -# @dataclass(config=dataclass_config, repr=False) -# class MultiRunTable(Panel): -# def to_model(self): -# ... - -# @classmethod -# def from_model(cls, model: internal.ScatterPlot): -# ... - - -# @dataclass(config=dataclass_config, repr=False) -# class Vega(Panel): -# def to_model(self): -# ... - -# @classmethod -# def from_model(cls, model: internal.ScatterPlot): -# ... - - -# @dataclass(config=dataclass_config, repr=False) -# class Vega3(Panel): -# def to_model(self): -# ... - -# @classmethod -# def from_model(cls, model: internal.ScatterPlot): -# ... - - @dataclass(config=dataclass_config, repr=False) class CustomChart(Panel): query: dict = Field(default_factory=dict)