mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-23 20:00:06 -05:00
Create mylib.py
This commit is contained in:
8
how-to-use-azureml/deploy-to-cloud/mylib.py
Normal file
8
how-to-use-azureml/deploy-to-cloud/mylib.py
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# Copyright (c) Microsoft. All rights reserved.
|
||||||
|
# Licensed under the MIT license.
|
||||||
|
|
||||||
|
import numpy as np
|
||||||
|
|
||||||
|
def get_alphas():
|
||||||
|
# list of numbers from 0.0 to 1.0 with a 0.05 interval
|
||||||
|
return np.arange(0.0, 1.0, 0.05)
|
||||||
Reference in New Issue
Block a user