Skip to content

Commit

Permalink
moving constants
Browse files Browse the repository at this point in the history
  • Loading branch information
nayaknishant committed Feb 23, 2022
1 parent ecbe0cd commit c03182e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions samples/model-builder/test_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@
EXPERIMENT_NAME = "fraud-detection-trial-72"
CREDENTIALS = credentials.AnonymousCredentials()

FEAUTURESTORE_NAME = "featurestore_sample"
ENTITY_TYPE_ID = "entity_type_sample"
FEATURE_ID = "feature_sample"
FEATURE_VALUE_TYPE = "INT64"
RESOURCE_ID = str(randint(10000000, 99999999)) # Create random resource ID
RESOURCE_ID_2 = str(randint(10000000, 99999999))

Expand Down Expand Up @@ -204,6 +200,9 @@

# Feature store constants
FEAUTURESTORE_NAME = "featurestore_sample"
ENTITY_TYPE_ID = "entity_type_sample"
FEATURE_ID = "feature_sample"
FEATURE_VALUE_TYPE = "INT64"
ONLINE_STORE_FIXED_NODE_COUNT = 1
SYNC = True
FORCE = True

0 comments on commit c03182e

Please sign in to comment.