We have a Google App Engine application consist of several modules and we are storing our user's data in the Google Cloud DataStore. Now we are going to implement some machine learning algorithms on this data and we are going to use DecisionTree algorithm. We're looking to solve this by using one of the below methods:
Export the datas in the datastore to CSV file so we can use tools like Weka.
Process the data in the datastore and run google cloud's machine learning techniques. (But when I looked at the Google Cloud ML documents I couldnt find anything about running decision tree on datastore)
So does anyone know is it possible to accomplish the above methods in Google Cloud. If its can you show me a specific documentation or can you describe me the way to do it?