-
Notifications
You must be signed in to change notification settings - Fork 238
Description
We are doing a PoC to test registering features, getting features from Purview and get offline feature with the Feathr Client for NYX Taxi fare data
Following are the different notebooks to define different features, registering and trying to get features registered in Purview
Notebook1:
1)Project_name=feathrpoc
2)Initiate Feathrclient
3)Feature declaration ['f_location_avg_fare', 'f_trip_time_duration','f_trip_time_rounded']
4)Client build feature
5)Client register features
6)Client list features
Notebook2:
1)Project_name=feathrpoc
2)Initiate Feathrclient
3)Feature declaration ['f_location_max_fare'](with UDF)
4)Client build feature
5)Client register features
6)Client list features ( I am able to see the features registered via Notebook1

Notebook3:
1)Project_name=feathrpoc
2)Initiate Feathrclient
3)Client list features
4)Client get feature from registry

With above(Notebook3) it is only getting 2 features from registry('f_location_max_fare','f_trip_time_rounded') and not able to get other features present in registry('f_location_avg_fare', 'f_trip_time_duration')
