Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 226 for weights (0.17 sec)

  1. src/cmd/internal/pgo/pgo.go

    }
    
    // NamedEdgeMap contains all unique call edges in the profile and their
    // edge weight.
    type NamedEdgeMap struct {
    	Weight map[NamedCallEdge]int64
    
    	// ByWeight lists all keys in Weight, sorted by edge weight from
    	// highest to lowest.
    	ByWeight []NamedCallEdge
    }
    
    func emptyProfile() *Profile {
    	// Initialize empty maps/slices for easier use without a requiring a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/examples/mnist/mnist_train.py

        # output shape: [-1, 1024]
        fc1 = gen_mnist_ops.new_fully_connected(reshape, self.weights['f3'],
                                                self.biases['b3'], 'RELU')
        # output shape: [-1, 10]
        return gen_mnist_ops.new_fully_connected(fc1, self.weights['f4'],
                                                 self.biases['b4'])
    
    
    def main(strategy):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 20 03:05:18 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  3. src/go/doc/testdata/examples/issue43658.golden

    	g, err := community.NewUndirectedLayers(friends, enemies)
    	if err != nil {
    		log.Fatal(err)
    	}
    	weights := []float64{1, -1}
    
    	// Get the profile of internal node weight for resolutions
    	// between 0.1 and 10 using logarithmic bisection.
    	p, err := community.Profile(
    		community.ModularMultiplexScore(g, weights, true, community.WeightMultiplex, 10, src),
    		true, 1e-3, 0.1, 10,
    	)
    	if err != nil {
    		log.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. releasenotes/notes/33536.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 33536
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 28 17:24:43 UTC 2021
    - 199 bytes
    - Viewed (0)
  5. docs_src/extra_models/tutorial005_py39.py

    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/keyword-weights/", response_model=dict[str, float])
    async def read_keyword_weights():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 180 bytes
    - Viewed (0)
  6. src/go/doc/testdata/examples/issue43658.go

    	g, err := community.NewUndirectedLayers(friends, enemies)
    	if err != nil {
    		log.Fatal(err)
    	}
    	weights := []float64{1, -1}
    
    	// Get the profile of internal node weight for resolutions
    	// between 0.1 and 10 using logarithmic bisection.
    	p, err := community.Profile(
    		community.ModularMultiplexScore(g, weights, true, community.WeightMultiplex, 10, src),
    		true, 1e-3, 0.1, 10,
    	)
    	if err != nil {
    		log.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  7. releasenotes/notes/28942.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 28970
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 03 16:45:33 UTC 2020
    - 185 bytes
    - Viewed (0)
  8. docs_src/extra_models/tutorial005.py

    from typing import Dict
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/keyword-weights/", response_model=Dict[str, float])
    async def read_keyword_weights():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 205 bytes
    - Viewed (0)
  9. releasenotes/notes/new_lb_algorithm_default.yaml

    area: traffic-management
    
    releaseNotes:
      - |
        **Updated** Istio's default load balancing algorithm from `ROUND_ROBIN` to `LEAST_REQUEST`.
        The `ROUND_ROBIN` algorithm can lead to overburdened endpoints, especially when weights
        are used. The `LEAST_REQUEST` algorithm, distributes more evenly across and is far less
        likely to overburden endpoints. A number of experiments (by both the Istio and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 09 20:55:01 UTC 2022
    - 856 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

          "composite_conv.*");
    
      // Enable per-channel quantization for convolution weights.
      QuantizedType conv_weight_quantized_type{};
    
      // Assumes NHWC format, specifying the channel dimension (3) as the
      // quantized axis.
      conv_weight_quantized_type.mutable_dimension_specs()->set_dimension(3);
    
      // The index of weight operands passed to lifted functions for convolution
      // is 1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top