Library Search
结果页

图优化、量化与多平台部署全景

在 知识库 中找到 8 个匹配结果。

返回文档库
知识库

知识库

8 个
入门教程 - 从数据到静态站点 const result = await graphql(` query { allMdx { nodes { id fields { slug } } } } `); // 为每篇文章创建一个页面 result.data.allMdx.nodes.forEach((nod… 2% 01-Keras与部署实战 ```bash tensorboard --logdir=logs --port=6006 ``` ```python # 添加更多可视化 file_writer = tf.summary.create_file_writer("logs/custom") with file_writer.as_default(): tf.summary.scalar("custom_loss", l… 2% 入门篇 - Angular毕设项目架构 constructor(private api: ApiService) { } } ``` ```html <!-- 用 async 管道自动订阅 --> <div *ngFor="let s of students$ | async">{{ s.name }}</div> ``` --- ## 毕设常见场景 ### 管理后台 - Angular Material + 表格排序分页 -… 2% Python) /* ========== PN532 帧接收(简化版) ========== */ uint8_t pn532_recv_frame(uint8_t *buf, uint8_t max_len) { uint8_t byte; // 等待 START: 0x00 0xFF do { HAL_UART_Receive(&PN532_UART, &byte, 1, 50);… 2% 分布式链路追踪入门:从 Trace 到洞察 ``` ┌──────────┐ SDK ┌──────────┐ │ 应用 Pod │──OTLP──│ Collector│ │ (SDK) │ └────┬─────┘ └──────────┘ │ ┌────┴─────┐ │ Storage │ (ES/C… 2% 图优化、量化与多平台部署全景 | 量化类型 | 精度损失 | 大小 | 速度 | |----------|----------|------|------| | FP32(原始) | 0 | 100% | 1x | | FP16 | <0.1% | 50% | 1.5-2x | | INT8 动态 | <0.5% | 25% | 1.5-2x | | INT8 静态 | <1% | 25% | 2-4x | ## 4. 多平… 2% 入门篇 - Gatsby数据层与页面生成 export default function Home({ data }) { return <h1>{data.site.siteMetadata.title}</h1>; } export const query = graphql` query HomeQuery { site { siteMetadata { title } } } `; ```… 1% EF Core 毕设入门教程——数据库操作最佳实践 ### 多对多(EF Core 5+ 自动处理) ```csharp public class Student { public int Id { get; set; } public List<Course> Courses { get; set; } = new(); } public class Course { public int Id { get; set; }… 1%