@@ -58,7 +58,7 @@ public void Save<TSource>(ITransformer model, IDataLoader<TSource> loader, Strea
5858 /// Save a transformer model and the loader used to create its input data to the file.
5959 /// </summary>
6060 /// <param name="model">The trained model to be saved. Note that this can be <see langword="null"/>, as a shorthand
61- /// for an empty data set . Upon loading with <see cref="LoadWithDataLoader(Stream, out IDataLoader{IMultiStreamSource})"/>
61+ /// for an empty transformer chain . Upon loading with <see cref="LoadWithDataLoader(Stream, out IDataLoader{IMultiStreamSource})"/>
6262 /// the returned value will be an empty <see cref="TransformerChain{TLastTransformer}"/>.</param>
6363 /// <param name="loader">The loader that was used to create data to train the model.</param>
6464 /// <param name="filePath">Path where model should be saved.</param>
@@ -76,7 +76,7 @@ public void Save<TSource>(ITransformer model, IDataLoader<TSource> loader, strin
7676 /// Save a transformer model and the schema of the data that was used to train it to the stream.
7777 /// </summary>
7878 /// <param name="model">The trained model to be saved. Note that this can be <see langword="null"/>, as a shorthand
79- /// for an empty data set . Upon loading with <see cref="Load(Stream, out DataViewSchema)"/> the returned value will
79+ /// for an empty transformer chain . Upon loading with <see cref="Load(Stream, out DataViewSchema)"/> the returned value will
8080 /// be an empty <see cref="TransformerChain{TLastTransformer}"/>.</param>
8181 /// <param name="inputSchema">The schema of the input to the transformer. This can be <see langword="null"/>.</param>
8282 /// <param name="stream">A writeable, seekable stream to save to.</param>
@@ -98,7 +98,7 @@ public void Save(ITransformer model, DataViewSchema inputSchema, Stream stream)
9898 /// Save a transformer model and the schema of the data that was used to train it to the file.
9999 /// </summary>
100100 /// <param name="model">The trained model to be saved. Note that this can be <see langword="null"/>, as a shorthand
101- /// for an empty data set . Upon loading with <see cref="Load(Stream, out DataViewSchema)"/> the returned value will
101+ /// for an empty transformer chain . Upon loading with <see cref="Load(Stream, out DataViewSchema)"/> the returned value will
102102 /// be an empty <see cref="TransformerChain{TLastTransformer}"/>.</param>
103103 /// <param name="inputSchema">The schema of the input to the transformer. This can be <see langword="null"/>.</param>
104104 /// <param name="filePath">Path where model should be saved.</param>
0 commit comments