Dirk Doesburg

Results 13 comments of Dirk Doesburg

I'm a bit confused about how this would work exactly: how are the hashes linked to specific watson log entries? Manually adding them seems too difficult. One solution I could...

This has been a while. I think it's also a good idea to migrate to using GitHub workflows, since the current travis CI seems broken and it can be done...

The CI added here of course only runs on my fork, so you can't really see it in action (but you should be able to view the result on the...

@jmaupetit in https://github.com/TailorDev/Watson/pull/476/commits/aae44fa8116a04328ee22b46e9f1632b717fc20a I added a workflow for mkdocs (so it replaces #83) and publishing to PyPI too, but I can't really test that, and for PyPI it needs an...

While integrating with celery etc. would be cool, I think just providing a management command (and python function) would be flexible enough for a start.

For S3, you could look into setting up CloudFront to serve the static files without requiring authentication

@asottile I think it's quite sad to see #400 closed. It would be very useful in simplifying and speeding up docker builds. So again, would you be open for a...

Update: it seems like it is because of changes to the dataset: the features are now grouped. Using something like: ``` inputs = { "float_features": tf.keras.Input( shape=(None, 136), dtype=tf.float32, name="float_features"...

@vladjkeeee13 I'm running into the same issue. Additionally, of course the following does work a little better, but doesn't return the child models: ```python SomeModel.objects.all().prefetch_related( GenericPrefetch("content_object", [SomePolymorphicModel.objects.all().non_polymorphic()]) ) ``` An...