- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 121 for scalar (0.1 sec)
-
tensorflow/c/c_test_util.cc
found_shape = true; } } return found_dtype && found_shape; } bool IsScalarConst(const tensorflow::NodeDef& node_def, int v) { if (node_def.op() != "Const" || node_def.name() != "scalar") { return false; } bool found_dtype = false; bool found_value = false; for (const auto& attr : node_def.attr()) { if (attr.first == "dtype") {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Oct 15 03:16:52 UTC 2021 - 17.8K bytes - Viewed (0) -
RELEASE.md
* For C++ API users: `IsLegacyScalar` and `IsLegacyVector` are now gone from `TensorShapeUtils` since TensorFlow is scalar strict within Google (for example, the shape argument to `tf.reshape` can't be a scalar anymore). The open source release was already scalar strict, so outside Google `IsScalar` and `IsVector` are exact replacements. * The following files are being removed from `tensorflow/core/public/`:
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Oct 22 14:33:53 UTC 2024 - 735.3K bytes - Viewed (0) -
tensorflow/c/c_api.cc
if (dst->dims() != 0) { return InvalidArgument( "Malformed TF_RESOURCE tensor: expected a scalar, got a tensor with " "shape ", dst->shape().DebugString()); } *dst = tensorflow::Tensor(tensorflow::DT_RESOURCE, dst->shape()); if (!dst->scalar<tensorflow::ResourceHandle>()().ParseFromString( string(static_cast<const char*>(tensor_interface->Data()),
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0) -
tensorflow/c/c_api.h
// into `dims`. `dims` must be an array large enough to hold `num_dims` // entries (e.g., the return value of TF_GraphGetTensorNumDims). // // If the number of dimensions in the shape is unknown or the shape is // a scalar, `dims` will remain untouched. Otherwise, each element of // `dims` will be set corresponding to the size of the dimension. An // unknown dimension is represented by `-1`. // // Returns an error into `status` if:
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
test-site/activator-launch-1.3.2.jar
package xsbt.boot; public final synchronized class Classifiers implements scala.Product, scala.Serializable { private final scala.Serializable forScala$6a15836f; private final scala.Serializable app$6a15836f; public final scala.Serializable forScala$33e6f9b0(); public final scala.Serializable app$33e6f9b0(); public final String productPrefix(); public final int productArity(); public final Object productElement(int); public final scala.collection.Iterator productIterator(); public final boolean canEqual(Object);...
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 1.2M bytes - Viewed (0) -
docs/bigdata/README.md
/_/ Using Scala version 2.11.8 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_112) Type in expressions to have them evaluated. Type :help for more information. scala> ``` - At the _scala>_ prompt, submit the job by typing the following commands, Replace node names, file name, and file location with your values: ``` scala> val file = sc.textFile("s3a://testbucket/testdata")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 14.7K bytes - Viewed (0) -
test-site/app/views/index.scala.html
yfujita <******@****.***> 1429519297 +0900
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 96 bytes - Viewed (0) -
test-site/app/views/main.scala.html
yfujita <******@****.***> 1429519297 +0900
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 450 bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt
findLatest("scala-library", "org.scala-lang:scala-library:2.13.+", versionProperties) val scalaVersion = VersionNumber.parse(versionProperties["scala-library"] as String) versionProperties["scala"] = "${scalaVersion.major}.${scalaVersion.minor}" // The latest released version is 2.0.0-M1, which is excluded by "don't use snapshot" strategy
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:29 UTC 2024 - 5.1K bytes - Viewed (0) -
build-logic/build-init-samples/src/main/kotlin/gradlebuild/generate-samples.gradle.kts
import org.gradle.buildinit.plugins.internal.modifiers.Language.SCALA import org.gradle.buildinit.plugins.internal.modifiers.Language.SWIFT import org.gradle.buildinit.plugins.internal.modifiers.ModularizationOption import org.gradle.docs.samples.Dsl plugins { id("org.gradle.samples") } val singleProjectSampleLanguages = listOf(JAVA, GROOVY, SCALA, KOTLIN, SWIFT, CPP)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Sep 30 16:17:28 UTC 2023 - 3.3K bytes - Viewed (0)