mirror of
https://github.com/clearml/clearml
synced 2025-06-26 18:16:07 +00:00
clearml initial version 0.17.0
This commit is contained in:
@@ -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')
|
||||
|
||||
|
||||
@@ -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')
|
||||
|
||||
|
||||
|
||||
@@ -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()
|
||||
|
||||
|
||||
@@ -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')
|
||||
|
||||
@@ -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')
|
||||
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
tensorboard>=2.0
|
||||
tensorflow>=2.0
|
||||
trains
|
||||
clearml
|
||||
@@ -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')
|
||||
|
||||
@@ -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):
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user