Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I wrote everything as it should be according to docs and other functions in the same module but I have some problems:
when I try I face this error:
`ImportError while loading conftest '/opt/project/ivy_tests/test_ivy/conftest.py'.
../../../conftest.py:7: in
import ivy_tests.test_ivy.helpers.test_parameter_flags as pf
../../../helpers/init.py:2: in
from . import hypothesis_helpers
../../../helpers/hypothesis_helpers/init.py:1: in
from . import general_helpers
../../../helpers/hypothesis_helpers/general_helpers.py:8: in
import ivy
/opt/project/ivy/init.py:770: in
from . import stateful
/opt/project/ivy/stateful/init.py:1: in
from . import activations
/opt/project/ivy/stateful/activations.py:5: in
from ivy.stateful.module import Module
/opt/project/ivy/stateful/module.py:8: in
import dill
E ModuleNotFoundError: No module named 'dill'
Process finished with exit code 4
Empty suite`
I used ivy.histogram but while checking the implementation in jax backend, I found it in
ivy/functional/backends/jax/experimental/statistical.py
and didn't find it in
ivy/functional/backends/jax/statistical.py,
so I am not sure is that normal or not?
Same for _histogram_helper(), I used this function in while creating the unit test but I have imported it like this:
from ivy_tests.test_ivy.test_functional.test_experimental.test_core.test_statistical import ( _histogram_helper, )
and coudn't find it in:
ivy_tests.test_ivy.test_functional.test_experimental.test_core.test_statistical