Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for has_bias (0.09 sec)

  1. tensorflow/compiler/mlir/quantization/common/python/testing_test.py

                [3, None],
            ],
            'has_bias': [True, False],
        }]
        combinations = testing.parameter_combinations(test_parameters)
    
        self.assertLen(combinations, 4)
        self.assertIn({'shapes': [3, 3], 'has_bias': True}, combinations)
        self.assertIn({'shapes': [3, 3], 'has_bias': False}, combinations)
        self.assertIn({'shapes': [3, None], 'has_bias': True}, combinations)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. fastapi/utils.py

                        f, cloned_types=cloned_types
                    )
        new_field = create_response_field(name=field.name, type_=use_type)
        new_field.has_alias = field.has_alias  # type: ignore[attr-defined]
        new_field.alias = field.alias  # type: ignore[misc]
        new_field.class_validators = field.class_validators  # type: ignore[attr-defined]
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top