Adriel Martinez
Adriel Martinez
@Cpruce what are you feeding into that script? I'm trying to feed in the saved model from `model.keras_model.save(path)` and I'm getting hit with `lambda t: tf.reshape(t, [tf.shape(t)[0], -1, 2]))(x) NameError:...
@jmtatsch take a look at: https://github.com/matterport/Mask_RCNN/issues/218#issuecomment-365069480 I think the issue here is it can't export custom layers.
Ah good catch. Thanks!
I'm guessing partner api is just for those who can offer a service (like passiv). For others to actually use the scripts, would need (actual) infrastructure to auth. I doubt...
I think it only happens when firefox is running in the background (even though doing a native close). Here's a video reproducing it: https://www.loom.com/share/afdfb31aaac54c38b96991b63f943288 Video showcases 1. No window in...
I did something hacky where you embed the info via a rehype plugin: https://github.com/Adriel-M/adriel.dev/blob/main/lib/remarkPlugins/RemarkImgToJsx.ts (originally from https://github.com/timlrx/pliny/blob/main/packages/pliny/src/mdx-plugins/remark-img-to-jsx.ts) I also bundled everything in the `images` folder https://github.com/Adriel-M/adriel.dev/blob/main/lib/Images.ts#L2 and swap the source...
Great! It works with my bundling approach: https://github.com/Adriel-M/adriel.dev/pull/166/files#diff-5acfbc6c5ec1739b3121c7454d949384b38bcbdffa4645a0b002e52521bed26eR3 Using this since cloudflare doesn't have image optimization. Thanks a lot! Roughly how much time does it add to your builds?