You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modified the project to support running of TensorFlow on GPU on Windows. (#4270)
* Modified the project to support running of TensorFlow on GPU on Windows.
Removed all dependencies of TensorFlow redist from the source projects,
and instead added the dependency to the Sample project.
Created separate sample project for GPU examples since gpu tensorflow requires cuda,
which may not be available on all machines, so it needs to be a separate
project.
Added documentation for setup as there is now some requirements.
* Added NuGet dependency to the test packages which need TensorFlow.
* Changed to use the Dependency variable for the TF version.
* removed erronious newlines.
Copy file name to clipboardExpand all lines: src/Microsoft.ML.TensorFlow/TensorflowCatalog.cs
+6
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,12 @@ public static class TensorflowCatalog
14
14
/// <summary>
15
15
/// Load TensorFlow model into memory. This is the convenience method that allows the model to be loaded once and subsequently use it for querying schema and creation of
16
16
/// <see cref="TensorFlowEstimator"/> using <see cref="TensorFlowModel.ScoreTensorFlowModel(string, string, bool)"/>.
17
+
/// usage of this API requires additional NuGet dependencies on TensorFlow redist, see linked document for more information.
0 commit comments