mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-06 22:22:11 +08:00
54dfddd245
* cleanup simulator files
* minor updates
* update readme
* keras runner builds
* hmm, still doesn't work
* keras runner works
* should work with python3 keras mod
* touchups
old-commit-hash: c50c718293
13 lines
257 B
C++
13 lines
257 B
C++
#ifndef RUNMODEL_H
|
|
#define RUNMODEL_H
|
|
|
|
class RunModel {
|
|
public:
|
|
virtual void addRecurrent(float *state, int state_size) {}
|
|
virtual void addDesire(float *state, int state_size) {}
|
|
virtual void execute(float *net_input_buf, int buf_size) {}
|
|
};
|
|
|
|
#endif
|
|
|