PokemonGoers / PredictPokemon-2

In this project we will apply machine learning to establish the TLN (Time, Location and Name - that is where pokemons will appear, at what date and time, and which Pokemon will it be) prediction in Pokemon Go.
Apache License 2.0
9 stars 3 forks source link

Change feature sources to handle key arrays #32

Closed bensLine closed 8 years ago

bensLine commented 8 years ago

Feature sources provide a getFeature(key, data) method right now but they should provide a method getFeatures(keys, data) which receives all requested keys at once.

This allows e.g. for weather features to request data once from an API and then return the required features, instead of creating a request for every key.