value property
Implementation
@override
// ignore: body_might_complete_normally_nullable
Object? get value {
switch (_ortSparseFormat) {
case OrtSparseFormat.coo:
// TODO: Handle this case.
break;
case OrtSparseFormat.csrc:
// TODO: Handle this case.
break;
case OrtSparseFormat.blockSparse:
// TODO: Handle this case.
break;
case OrtSparseFormat.undefined:
throw Exception('Undefined sparsity type in this sparse tensor.');
}
}