mirror of
https://github.com/clearml/clearml-docs
synced 2025-01-31 06:27:22 +00:00
Remove deprecated methods (#692)
This commit is contained in:
parent
a8be5b50c8
commit
47a5a23253
@ -180,11 +180,11 @@ For more information about `Task` class methods, see the [Task Class](fundamenta
|
||||
|
||||
#### Can I store the model configuration file as well? <a id="store-model-configuration"></a>
|
||||
|
||||
Yes! Use the [`Task.set_model_config`](references/sdk/task.md#set_model_config)
|
||||
Yes! Use [`Task.connect_configuration()`](references/sdk/task.md#connect_configuration)
|
||||
method:
|
||||
|
||||
```python
|
||||
Task.current_task().set_model_config("a very long text with the configuration file's content")
|
||||
Task.current_task().connect_configuration("a very long text with the configuration file's content")
|
||||
```
|
||||
|
||||
<br/>
|
||||
@ -594,7 +594,7 @@ Another option is a histogram chart:
|
||||
```python
|
||||
number_layers = 10
|
||||
accuracy = 0.95
|
||||
Task.current_task().get_logger().report_vector(
|
||||
Task.current_task().get_logger().report_histogram(
|
||||
title="performance",
|
||||
series="accuracy",
|
||||
iteration=0,
|
||||
|
@ -118,8 +118,7 @@ Credentials for the destination storage are specified in the [ClearML configurat
|
||||
The Logger class provides methods for fine-tuning ClearML's automatic logging behavior with Matplotlib and Tensorboard.
|
||||
For example, use the [`Logger.matplotlib_force_report_non_interactive`](../references/sdk/logger.md#loggermatplotlib_force_report_non_interactive)
|
||||
class method to control how matplotlib objects are logged. See the [`Logger.tensorboard_auto_group_scalars`](../references/sdk/logger.md#loggertensorboard_auto_group_scalars)
|
||||
and [`Logger.tensorboard_single_series_per_graph`](../references/sdk/logger.md#loggertensorboard_single_series_per_graph)
|
||||
class methods.
|
||||
class method.
|
||||
|
||||
|
||||
### Set Default NaN and Inf Values
|
||||
|
@ -83,7 +83,6 @@ package contains methods for explicit reporting of plots, log text, media, and t
|
||||
|
||||
* [Logger.report_histogram](../../references/sdk/logger.md#report_histogram)
|
||||
* [Logger.report_confusion_matrix](../../references/sdk/logger.md#report_confusion_matrix)
|
||||
* [Logger.report_line_plot](../../references/sdk/logger.md#report_line_plot)
|
||||
* [Logger.report_scatter2d](../../references/sdk/logger.md#report_scatter2d)
|
||||
* [Logger.report_scatter3d](../../references/sdk/logger.md#report_scatter3d)
|
||||
* [Logger.report_surface](../../references/sdk/logger.md#report_surface)
|
||||
|
Loading…
Reference in New Issue
Block a user