-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(sdk): add method to use sdk charts (#217)
* feat(sdk) chart in WIP * feat(sdk): add binary dataQuaility charts * feat(sdk): confusion_matrix(WIP) * feat(sdk): add methods to show chart for every section * feat(sdk): fix rounded values * feat(sdk): ruff fixies * feat(sdk): fix y_axis_label * feat(sdk): remove ruff's check for multiclass methods * feat(sdk): ruff format * feat(sdk): fix poetry extras install and fix round on regressionlinear charts * feat(sdk): add default case * feat(sdk): ruff fix * feat(sdk): check chart notebook
- Loading branch information
Showing
29 changed files
with
1,797 additions
and
1,033 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
from .chart_data import NumericalBarChartData, ConfusionMatrixChartData | ||
from .chart import Chart | ||
from .radicalbit_sdk_chart import RadicalbitChart,RbitChartData | ||
|
||
__all__ = [ | ||
'ConfusionMatrixChartData', | ||
'NumericalBarChartData', | ||
'Chart' | ||
'RadicalbitChart', | ||
'RbitChartData' | ||
] |
8 changes: 0 additions & 8 deletions
8
sdk/radicalbit_platform_sdk/charts/binary_classification/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +0,0 @@ | ||
from .binary_chart import BinaryChart | ||
from .binary_chart_data import BinaryDistributionChartData, BinaryLinearChartData | ||
|
||
__all__ = [ | ||
'BinaryChart', | ||
'BinaryDistributionChartData', | ||
'BinaryLinearChartData' | ||
] | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
sdk/radicalbit_platform_sdk/charts/multi_classification/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +0,0 @@ | ||
from .multi_class_chart import MultiClassificationChart | ||
from .multi_class_chart_data import MultiClassificationDistributionChartData, MultiClassificationLinearChartData, MultiClassificationLinearData | ||
|
||
__all__ = [ | ||
'MultiClassificationChart', | ||
'MultiClassificationDistributionChartData', | ||
'MultiClassificationLinearChartData', | ||
'MultiClassificationLinearData' | ||
] | ||
Oops, something went wrong.