-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: introduce AudioFeatureTransformer and audio_service #30
base: main
Are you sure you want to change the base?
Conversation
# Conflicts: # src/spira_training/apps/feature_engineering/feature_engineering.py # src/spira_training/shared/core/audio_processor.py # src/spira_training/shared/core/audio_processor_factory.py # src/spira_training/shared/core/services/feature_engineering_service.py # tests/core/test_audio_processor_factory.py # tests/core/test_feature_engineering_service.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
its not a class right? why not?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i wanted to make it simple and reduce the overhead to manage instance variables and dependencies that making it a class require
This draft pull request introduce the AudioFeatureTransformer interface, while implementing some concrect class of it.
It also introduce de creation of the audio_service, a class to concentrate important operations to the Audios. I choose create the audio_service because i was doing that operations in the AudioCollection/Audio, GeneratedAudioCollection, but it was creating a cycle dependency.
There are some changes removing the dependency on
PytorchTensorFactory
from various files too.