-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for multidimensional data? #123
Comments
Dense does support input arrays of arbitrary sizes by reshaping the input and the result (e.g. https://github.com/avik-pal/Lux.jl/blob/main/src/layers/basic.jl#L650)
|
Ok I was refering to this in documantation
In http://lux.csail.mit.edu/dev/api/layers/ Thank You for fast response !! |
Thanks for pointing it out. Fixed docs in #124. |
Happy to help @avik-pal , generally with so huge speed of development like is present in this repository it is fully understendable ! just checking Lux.Conv has
so it is truly conv2D only - hence no possibility of 3d convolutions at the moment ? |
No, it works for 3d see the inputs section. It is mentioned as an example of data ordering. |
ok, fantastic ! so in this case it can be written
|
Hello I have multidimensional (3 and 4 dims) data and flattening them is not an option but layers like dense seem to accept only 1 or 2D input. Am I correct or I am missing something?
Thanks For response !
The text was updated successfully, but these errors were encountered: