Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Change (0.1 sec)

  1. fastapi/applications.py

            self.state: Annotated[
                State,
                Doc(
                    """
                    A state object for the application. This is the same object for the
                    entire application, it doesn't change from request to request.
    
                    You normally wouldn't use this in FastAPI, for most of the cases you
                    would instead use FastAPI dependencies.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  2. fastapi/routing.py

                    )
                    raise validation_error
            if response is None:
                raise FastAPIError(
                    "No response object was returned. There's a high chance that the "
                    "application code is raising an exception and a dependency with yield "
                    "has a block with a bare except, or a block with except Exception, "
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        )
    
        # Use plain python lists as representative samples.
        representative_dataset = [
            {
                'input_tensor': [[i * 0.1 for i in range(1024)]],
            }
            for _ in range(4)
        ]
    
        converted_model = quantize_model.quantize(
            self._input_saved_model_path,
            self._output_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top