コード例 #1
0
ファイル: Tensor.cs プロジェクト: zaharPonimash/Seq2SeqSharp
 public static Tensor Deserialize(IAllocator allocator, System.IO.Stream stream)
 {
     return(TensorSerialization.Deserialize(allocator, stream));
 }
コード例 #2
0
ファイル: Tensor.cs プロジェクト: zaharPonimash/Seq2SeqSharp
 public void Serialize(System.IO.Stream stream)
 {
     TensorSerialization.Serialize(this, stream);
 }