cloud
cloud copied to clipboard
Setting stream_logs=False, does not seem to be working
sample
import tensorflow_cloud as tfc
# Automated MirroredStrategy: chief config with multiple GPUs
tfc.run(
entry_point="../../tests/testdata/mnist_example_using_fit_no_reqs.py",
distribution_strategy="auto",
chief_config=tfc.MachineConfig(
cpu_cores=8,
memory=30,
accelerator_type=tfc.AcceleratorType.NVIDIA_TESLA_P100,
accelerator_count=2,
),
worker_count=0,
stream_logs=False,
docker_image_bucket_name="<some_bucket>",
)
output
Job submitted successfully.
Your job ID is: tf_cloud_train_..._67a20a7a68d1
Please access your job logs at the following URL:
https://console.cloud.google.com/mlengine/jobs/tf_cloud_train_..._67a20a7a68d1?project=...
Streaming job logs:
expected job logs not to stream.