2 writes to Name
Microsoft.ML.Tokenizers (2)
SentencepieceModel.cs (2)
3247
Name
= other.Name;
3324
Name
= input.ReadString();
9 references to Name
Microsoft.ML.Tokenizers (9)
Model\LlamaTokenizer.cs (3)
52
if (modelProto.NormalizerSpec.
Name
!= "identity" && !string.IsNullOrEmpty(modelProto.NormalizerSpec.
Name
))
54
throw new ArgumentException($"Normalization '{modelProto.NormalizerSpec.
Name
}' is not supported.", nameof(modelProto));
SentencepieceModel.cs (6)
3096
if (
Name
!= other.
Name
) return false;
3112
if (HasName) hash ^=
Name
.GetHashCode();
3178
output.WriteString(
Name
);
3214
size += 1 + pb::CodedOutputStream.ComputeStringSize(
Name
);
3247
Name = other.
Name
;