ARNING ClearML installed but not initialized correctly, not logging this run. It seems ClearML is not configured on this machine!
To get started with ClearML, setup your own 'clearml-server' or create a free account at https://app.clear.ml/
Setup instructions can be found here: https://clear.ml/docs
WARNING NeptuneAI installed but not initialized correctly, not logging this run. Project
请问该如何解决
我可以为您提供一些可能有用的步骤来解决使用PythonClearML的问题:
!pip install clearml
from clearml import Task
task = Task.init(project_name='example', task_name='my experiment')
task.get_logger().report_scalar(title='accuracy', series='train', value=0.95, iteration=0)
task.get_logger().report_scalar(title='accuracy', series='train', value=0.96, iteration=1)
task.upload_artifact('model.pkl', local_path='path/to/model.pkl')
希望这可以帮助您解决使用PythonClearML的问题。如果您还有其他问题或需要更多帮助,请告诉我。