Hello, Is it possible to use transcoding with ked...
# questions
a
Hello, Is it possible to use transcoding with kedro-azureml plugin ? I feel like it's no possible ... Thanks guys 🙏
d
Hi Adrien, There shouldn't be any issue using transcoding with
kedro-azureml
, since the resolution of transcoded datasets is handled by Kedro itself, not the plugin. Could you clarify where exactly you're encountering a problem?
a
Let's assume I create 2 dataset with transcoding • test@toto • test@tata When I run "kedro azureml compile" (or run it's the same behavior), in the generated .yml file, dataset name are test_toto and test_tata. Because of this, it's not producing the good pipeline in azure. It will run nodes at the same time instead of running in sequencial order
d
Got it - this is a problem with pipeline conversion in the plugin. It should preserve the
@
symbol instead of converting it to
_
. We should open an issue in the plugin repository to track this. As a workaround, you can try manually changing it back to
@
in the
.yml
file - that should work.