Browse Source

Changed all urls of tf.org to tensorflow.org

tags/v0.12
Eli Belash 6 years ago
parent
commit
1272a60198
5 changed files with 6 additions and 6 deletions
  1. +1
    -1
      src/TensorFlowNET.Core/Operations/gen_ops.cs
  2. +1
    -1
      test/TensorFlowNET.Examples/ImageProcessing/ImageRecognitionInception.cs
  3. +1
    -1
      test/TensorFlowNET.Examples/ImageProcessing/InceptionArchGoogLeNet.cs
  4. +2
    -2
      test/TensorFlowNET.Examples/ImageProcessing/RetrainImageClassifier.cs
  5. +1
    -1
      test/TensorFlowNET.UnitTest/VariableTest.cs

+ 1
- 1
src/TensorFlowNET.Core/Operations/gen_ops.cs View File

@@ -7730,7 +7730,7 @@ namespace Tensorflow.Operations
/// </returns>
/// <remarks>
/// RFC 4180 format is expected for the CSV records.
/// (https://tools.ietf.org/html/rfc4180)
/// (https://tools.ietensorflow.org/html/rfc4180)
/// Note that we allow leading and trailing spaces with int or float field.
/// </remarks>
public static Tensor[] decode_c_s_v (Tensor records, Tensor[] record_defaults, string field_delim = null, bool? use_quote_delim = null, string na_value = null, int[] select_cols = null, string name = "DecodeCSV")


+ 1
- 1
test/TensorFlowNET.Examples/ImageProcessing/ImageRecognitionInception.cs View File

@@ -89,7 +89,7 @@ namespace TensorFlowNET.Examples
Directory.CreateDirectory(dir);

// get model file
string url = "https://storage.googleapis.com/download.tf.org/models/inception5h.zip";
string url = "https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip";

Utility.Web.Download(url, dir, "inception5h.zip");



+ 1
- 1
test/TensorFlowNET.Examples/ImageProcessing/InceptionArchGoogLeNet.cs View File

@@ -93,7 +93,7 @@ namespace TensorFlowNET.Examples
Directory.CreateDirectory(dir);

// get model file
string url = "https://storage.googleapis.com/download.tf.org/models/inception_v3_2016_08_28_frozen.pb.tar.gz";
string url = "https://storage.googleapis.com/download.tensorflow.org/models/inception_v3_2016_08_28_frozen.pb.tar.gz";
Utility.Web.Download(url, dir, $"{pbFile}.tar.gz");



+ 2
- 2
test/TensorFlowNET.Examples/ImageProcessing/RetrainImageClassifier.cs View File

@@ -33,7 +33,7 @@ namespace TensorFlowNET.Examples
/// and simply train a new classification layer on top. Transfer learning is a technique that shortcuts much of this
/// by taking a piece of a model that has already been trained on a related task and reusing it in a new model.
///
/// https://www.tf.org/hub/tutorials/image_retraining
/// https://www.tensorflow.org/hub/tutorials/image_retraining
/// </summary>
public class RetrainImageClassifier : IExample
{
@@ -168,7 +168,7 @@ namespace TensorFlowNET.Examples
/// weights, and then sets up all the gradients for the backward pass.
///
/// The set up for the softmax and fully-connected layers is based on:
/// https://www.tf.org/tutorials/mnist/beginners/index.html
/// https://www.tensorflow.org/tutorials/mnist/beginners/index.html
/// </summary>
/// <param name="class_count"></param>
/// <param name="final_tensor_name"></param>


+ 1
- 1
test/TensorFlowNET.UnitTest/VariableTest.cs View File

@@ -29,7 +29,7 @@ namespace TensorFlowNET.UnitTest
}

/// <summary>
/// https://www.tf.org/api_docs/python/tf/variable_scope
/// https://www.tensorflow.org/api_docs/python/tf/variable_scope
/// how to create a new variable
/// </summary>
[TestMethod]


Loading…
Cancel
Save