Charles Jekel
                                            Charles Jekel
                                        
                                    This is a really interesting and practical problem. I get a lot of false positives with women in bikinis as there always appears to be a false positive around cleavage....
I was also using align/detect_face.py ``` bounding_boxes, _ = align.detect_face.detect_face( img, minsize, pnet, rnet, onet, threshold, factor) # for each box for (x1, y1, x2, y2, acc) in bounding_boxes: ```...
I was hoping i your case these values where
Thanks for this heads up @tlindener The Yolo v2 demo looks very impressive https://youtu.be/VOC3huqHrss I'm excited to give a pre trained model a try...
Multivariate (or high dimensional) piecewise regression can get complicated quickly. I don't have any current plan for expanding pwlf to higher dimensions, but the conversation has come up before. There...
I'm considering adding multivariate support following the style of a general additive model.
### Where is the code? Branch [multivariate](https://github.com/cjekel/piecewise_linear_fit_py/tree/multivariate) has an initial multivariate pwlf model. ### How this works The final function follows the style of a general additive model ([GAM](https://en.wikipedia.org/wiki/Generalized_additive_model)), where...
I just created an example that adds a test for model significance, and get's a p-value for the entire model. https://github.com/cjekel/piecewise_linear_fit_py/blob/master/examples/test_for_model_significance.py As defined in Section 2.4.1 of Myers RH, Montgomery...
> Hi~ Thanks for the great work! I ran your code above, but I am confused for the result: > > * it's your last comment in code: > >...
> > Hi~ Thanks for the great work! I ran your code above, but I am confused for the result: > > ``` > > * it's your last comment...