clearml initial version 0.17.0

This commit is contained in:
allegroai
2020-12-22 23:25:37 +02:00
parent a460df1e68
commit d327f2e2b9
145 changed files with 3136 additions and 794 deletions

View File

@@ -1,4 +1,4 @@
# TRAINS - Example of new tensorboard pr_curves model
# ClearML - Example of new tensorboard pr_curves model
#
# Copyright 2017 The TensorFlow Authors. All Rights Reserved.
#
@@ -37,7 +37,7 @@ from absl import flags
from six.moves import xrange # pylint: disable=redefined-builtin
import tensorflow as tf
from tensorboard.plugins.pr_curve import summary
from trains import Task
from clearml import Task
task = Task.init(project_name='examples', task_name='tensorboard pr_curve')

View File

@@ -1,4 +1,4 @@
# TRAINS - Example of tensorboard with tensorflow (without any actual training)
# ClearML - Example of tensorboard with tensorflow (without any actual training)
#
import os
from tempfile import gettempdir
@@ -7,7 +7,7 @@ import tensorflow as tf
import numpy as np
from PIL import Image
from trains import Task
from clearml import Task
task = Task.init(project_name='examples', task_name='tensorboard toy example')

View File

@@ -1,4 +1,4 @@
# TRAINS - Example of tensorflow eager mode, model logging and tensorboard
# ClearML - Example of tensorflow eager mode, model logging and tensorboard
#
# Copyright 2017 The TensorFlow Authors. All Rights Reserved.
#
@@ -30,7 +30,7 @@ from tempfile import gettempdir
import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data
from trains import Task
from clearml import Task
tf.compat.v1.enable_eager_execution()

View File

@@ -31,7 +31,7 @@ import tempfile
import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data
from trains import Task
from clearml import Task
FLAGS = None
task = Task.init(project_name='examples', task_name='Tensorflow mnist with summaries example')

View File

@@ -1,10 +1,10 @@
# TRAINS - Example of manual model configuration and uploading
# ClearML - Example of manual model configuration and uploading
#
import os
import tempfile
import tensorflow as tf
from trains import Task
from clearml import Task
task = Task.init(project_name='examples', task_name='Model configuration and upload')

View File

@@ -1,3 +1,3 @@
tensorboard>=2.0
tensorflow>=2.0
trains
clearml

View File

@@ -36,7 +36,7 @@ from six.moves import xrange # pylint: disable=redefined-builtin
import tensorflow as tf
from tensorboard.plugins.pr_curve import summary
from trains import Task
from clearml import Task
task = Task.init(project_name='examples', task_name='tensorboard pr_curve')

View File

@@ -1,4 +1,4 @@
# TRAINS - Example of tensorboard with tensorflow (without any actual training)
# ClearML - Example of tensorboard with tensorflow (without any actual training)
#
import os
import tensorflow as tf
@@ -6,7 +6,7 @@ import numpy as np
from tempfile import gettempdir
from PIL import Image
from trains import Task
from clearml import Task
def generate_summary(k, step):

View File

@@ -8,7 +8,7 @@ import tensorflow as tf
from tensorflow.keras.layers import Dense, Flatten, Conv2D
from tensorflow.keras import Model
from trains import Task
from clearml import Task
task = Task.init(project_name='examples',