in backend/model_garden/serializers/dataset.py [0:0]
def _validate_path(self, attrs):
path = attrs.get('path')
if not path:
raise serializers.ValidationError('Field "path" can not be empty.')
attrs['path'] = f"/{path.strip('/')}"