Maxime C Choulika

Results 2 issues of Maxime C Choulika

```python import abc class Base(abc.ABC): @abc.abstractmethod def __init__(self, *args): pass @abc.abstractmethod def __call__(self): pass @abc.abstractmethod def predict(self, data): pass # I let you define what is relevant. class KMean(Base): #...

documentation
enhancement

Hi, I have found broken sections using `rtk.csv` file with interpolate_ins_poses function. ![Screen Shot 2020-04-13 at 10 02 39 AM](https://user-images.githubusercontent.com/33515131/79107344-7faddb00-7d74-11ea-8d93-6c3ddcb9bac2.png) ![Screen Shot 2020-04-13 at 10 03 34 AM](https://user-images.githubusercontent.com/33515131/79107347-80df0800-7d74-11ea-9d04-cfbebaa71736.png) ![Screen Shot...