Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Tabelle (0.2 sec)

  1. docs/de/docs/async.md

    * **Maschinelles Lernen**: Normalerweise sind viele „Matrix“- und „Vektor“-Multiplikationen erforderlich. Stellen Sie sich eine riesige Tabelle mit Zahlen vor, in der Sie alle Zahlen gleichzeitig multiplizieren.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:16 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  2. docs/de/docs/contributing.md

    * Um den Zwei-Buchstaben-Code für die Sprache zu finden, die Sie übersetzen möchten, schauen Sie sich die Tabelle <a href="https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes" class="external-link" target= verwenden "_blank">List of ISO 639-1 codes</a> an.
    
    #### Vorhandene Sprache
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 23:55:23 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/object.h

    class Dictionary final : public Handle {
     public:
      /// Constructs a handle that wraps a DICT TaggedValue.
      Dictionary() : Handle(TaggedValue::Dict()) {}
      // TODO(aselle): make this private to preserve invariant.
    
      /// Retrieves `key` with type `T`.
      template <class T>
      tensorflow::StatusOr<T> Get(const Handle& key) {
        auto it = value_.dict().find(key.value_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/path-params.md

    ## Validation de données
    
    Si vous allez sur <a href="http://127.0.0.1:8000/items/foo" class="external-link" target="_blank">http://127.0.0.1:8000/items/foo</a>, vous aurez une belle erreur HTTP :
    
    ```JSON
    {
        "detail": [
            {
                "loc": [
                    "path",
                    "item_id"
                ],
                "msg": "value is not a valid integer",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

      toco_log_after.SerializeToOstream(&ostream_after);
      ostream_after.close();
      toco::LogDump(toco::kLogLevelModelChanged, "tflite_graph", *flatbuffer_model);
    }
    
    // NOTE(aselle): We are using raw PyObject's here because we want to make
    // sure we input and output bytes rather than unicode strings for Python3.
    PyObject* Convert(PyObject* model_flags_proto_txt_raw,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. src/go/build/read.go

    // block of comments in the file.
    //
    // readComments should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bazelbuild/bazel-gazelle
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname readComments
    func readComments(f io.Reader) ([]byte, error) {
    	r := newImportReader("", f)
    	r.peekByte(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/value.h

                      tensorflow::DataType dtype)
            : tensor_spec({shape, dtype}) {}
        ~Data() {}
        Float32 f32;
        Int64 i64;
        String s;
        Func func;
        // TODO(aselle): look at tensorflow thing
        std::shared_ptr<impl::Dict> dict;
        std::shared_ptr<impl::List> list;
        std::shared_ptr<impl::Tuple> tuple;
        impl::Capsule capsule;
        TaggedValueTensor tensor;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/apiclient/idempotency_test.go

    				},
    			},
    			success: true,
    		},
    		{
    			name:       "node does not exist",
    			lookupName: "whale",
    			success:    false,
    		},
    		{
    			name:       "node not labelled yet",
    			lookupName: "robin",
    			node: v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "robin",
    				},
    			},
    			success: false,
    		},
    		{
    			name:       "patch node when timeout",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      L2_NORMALIZATION = 11,
      L2_POOL_2D = 12,
      LOCAL_RESPONSE_NORMALIZATION = 13,
      LOGISTIC = 14,
      LSH_PROJECTION = 15,
      LSTM = 16,
      MAX_POOL_2D = 17,
      MUL = 18,
      RELU = 19,
      // NOTE(aselle): RELU_N1_TO_1 used to be called RELU1, but it was renamed
      // since different model developers use RELU1 in different ways. Never
      // create another op called RELU1.
      RELU_N1_TO_1 = 20,
      RELU6 = 21,
      RESHAPE = 22,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/InternetDomainName.java

       *
       * @return {@code true} if this domain name appears exactly on the public suffix list as part of
       *     the registry suffix section (labelled "ICANN").
       * @since 23.3
       */
      public boolean isRegistrySuffix() {
        return registrySuffixIndex() == 0;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top