You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python/hsfs/feature_view.py
+27-27Lines changed: 27 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -190,9 +190,9 @@ def get_batch_query(
190
190
191
191
# Arguments
192
192
start_time: Start event time for the batch query. Optional. Strings should be formatted in one of the following formats `%Y-%m-%d`, `%Y-%m-%d %H`, `%Y-%m-%d %H:%M`,
193
-
`%Y-%m-%d %H:%M:%S`, or `%Y-%m-%d %H:%M:%S.%f`.
193
+
`%Y-%m-%d %H:%M:%S`, or `%Y-%m-%d %H:%M:%S.%f`. Int, i.e Unix Epoch should be in seconds.
194
194
end_time: End event time for the batch query. Optional. Strings should be formatted in one of the following formats `%Y-%m-%d`, `%Y-%m-%d %H`, `%Y-%m-%d %H:%M`,
195
-
`%Y-%m-%d %H:%M:%S`, or `%Y-%m-%d %H:%M:%S.%f`.
195
+
`%Y-%m-%d %H:%M:%S`, or `%Y-%m-%d %H:%M:%S.%f`. Int, i.e Unix Epoch should be in seconds.
196
196
197
197
# Returns
198
198
`str`: batch query
@@ -272,10 +272,10 @@ def get_batch_data(
272
272
# Arguments
273
273
start_time: Start event time for the batch query. Optional. Strings should be
274
274
formatted in one of the following formats `%Y-%m-%d`, `%Y-%m-%d %H`, `%Y-%m-%d %H:%M`, `%Y-%m-%d %H:%M:%S`,
275
-
or `%Y-%m-%d %H:%M:%S.%f`.
275
+
or `%Y-%m-%d %H:%M:%S.%f`. Int, i.e Unix Epoch should be in seconds.
276
276
end_time: End event time for the batch query. Optional. Strings should be
277
277
formatted in one of the following formats `%Y-%m-%d`, `%Y-%m-%d %H`, `%Y-%m-%d %H:%M`, `%Y-%m-%d %H:%M:%S`,
278
-
or `%Y-%m-%d %H:%M:%S.%f`.
278
+
or `%Y-%m-%d %H:%M:%S.%f`. Int, i.e Unix Epoch should be in seconds.
279
279
read_options: User provided read options. Defaults to `{}`.
280
280
"""
281
281
@@ -336,10 +336,10 @@ def create_training_data(
336
336
# Arguments
337
337
start_time: Start event time for the training dataset query. Optional. Strings should
338
338
be formatted in one of the following formats `%Y-%m-%d`, `%Y-%m-%d %H`, `%Y-%m-%d %H:%M`, `%Y-%m-%d %H:%M:%S`,
339
-
or `%Y-%m-%d %H:%M:%S.%f`.
339
+
or `%Y-%m-%d %H:%M:%S.%f`. Int, i.e Unix Epoch should be in seconds.
340
340
end_time: End event time for the training dataset query. Optional. Strings should
341
341
be formatted in one of the following formats `%Y-%m-%d`, `%Y-%m-%d %H`, `%Y-%m-%d %H:%M`, `%Y-%m-%d %H:%M:%S`,
342
-
or `%Y-%m-%d %H:%M:%S.%f`.
342
+
or `%Y-%m-%d %H:%M:%S.%f`. Int, i.e Unix Epoch should be in seconds.
343
343
storage_connector: Storage connector defining the sink location for the
344
344
training dataset, defaults to `None`, and materializes training dataset
0 commit comments