检查引擎是否就绪 Returns: 是否就绪
(self)
| 68 | return {'error': '模型未加载'} |
| 69 | |
| 70 | def is_ready(self) -> bool: |
| 71 | """ |
| 72 | 检查引擎是否就绪 |
| 73 | |
| 74 | Returns: |
| 75 | 是否就绪 |
| 76 | """ |
| 77 | return self.is_initialized and self.session is not None |
| 78 | |
| 79 | def switch_device(self, use_gpu: bool, device_id: int = 0) -> None: |
| 80 | """ |