Aritra Roy Gosthipaty
Aritra Roy Gosthipaty
This is the entire script. ```py # coding=utf-8 # Copyright 2024 HuggingFace Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this...
Also note -- I have not changed the asserts (so please take care of them) By running the tests on this file -- I do not get the reshape error...
Gentle ping here!
The input option does not work with the plugin for me too. :cry:
Hey, I have a workaround for this. This will take another plugin though. :smile: The plugin: https://github.com/fluttercommunity/flutter_webview_plugin The code: ``` body: Center( child: WebviewScaffold( url: _url, withLocalStorage: true, ), ),...
https://github.com/keras-team/keras-cv/blob/46e27acd40edcd9486e67ca3adfbd315ae6406fb/keras_cv/layers/preprocessing/random_translation.py#L204 I have noticed that this layer already has the `augment_bounding_boxes`. We should be able to close it. CC: @ianstenbit
Hey @emilemathieu Thanks for the bug report. We have tried reproducing the issue and it turns out that there is a problem with special characters in the `group` parameter. With...
Hey @rubencart I have tried reproducing the ticket. This is the [GIST](https://gist.github.com/ariG23498/dd5c0449166beac5e2bb68a11809d1a3) that is a full-fledged repro of your issue. The wandb dashboard corresponding to the GIST can be found...
> 1. As per your linear layer definition, the `in_features` should be 16 but the dimension in your input is of 64. Interesting! I thought equinox was channels first? >...
Thanks for the code! I am interested in passing a tensor of shape `B, N, in_features` to a Linear layer (B is the batch size, N is the number of...