摘要: 原文链接 发表在IEEE Transactions on Parallel and Distributed Systems 2025 这篇文章是对于之前工作的改进,可能需要先说说之前他们干了啥 为 GPU 上的深度学习推荐模型训练构建性能模型 RM推荐模型大家应该都听说过,比如购物,搜索场景下都很常 阅读全文
posted @ 2025-09-23 19:01 Mephostopheles 阅读(22) 评论(0) 推荐(0)
摘要: Visitor: Problem Example: exporting the graph into XML format 示例:将图表导出为 XML 格式 Visitor: Solution Place the new behavior into a separate class called v 阅读全文
posted @ 2024-12-24 18:27 Mephostopheles 阅读(23) 评论(0) 推荐(0)
摘要: State: Problem A finite number of states The program behaves differently within a state Can be switched from one state to another, and switching rules 阅读全文
posted @ 2024-12-24 14:25 Mephostopheles 阅读(13) 评论(0) 推荐(0)
摘要: Memento: Problem Example: supporting undo in a text editor app Problem 1: private fields cannot be accessed Problem 2: when fields are made public, re 阅读全文
posted @ 2024-12-24 11:27 Mephostopheles 阅读(15) 评论(0) 推荐(0)
摘要: Iterator: Problem Collections are one of the most used data types in programming There should be a way to go through each element of the collection Mo 阅读全文
posted @ 2024-12-23 22:38 Mephostopheles 阅读(12) 评论(0) 推荐(0)
摘要: ![](https://img2024.cnblogs.com/blog/3371759/202412/3371759-20241205220729570-1284809308.png) ![](https://img2024.cnblogs.com/blog/3371759/202412/3371759-20241205220738992-89734355.png) ![](https://im 阅读全文
posted @ 2024-12-05 22:10 Mephostopheles 阅读(40) 评论(0) 推荐(0)
摘要: 将用例行为分发到类 对于每个事件用例流:确定分析类 ,将用例职责分配给分析类 ,在交互图中对分析类交互进行建模 描述职责 做什么:创建对象,执行计算,对其他对象的初始化操作,控制和协调工作...... 知道什么:关于私有封装数据,关于相关对象,关于他可以推导和计算的事物 描述属性和关联 Attrib 阅读全文
posted @ 2024-12-02 23:23 Mephostopheles 阅读(31) 评论(0) 推荐(0)
摘要: ![](https://img2024.cnblogs.com/blog/3371759/202411/3371759-20241128192747222-1762722050.png) ![](https://img2024.cnblogs.com/blog/3371759/202411/3371759-20241128192755733-936257115.png) ![](https://i 阅读全文
posted @ 2024-11-28 19:29 Mephostopheles 阅读(61) 评论(0) 推荐(0)
摘要: 首先我这是一个vue前端前端项目,Mac环境,下面是我的Dockerfile # FROM ubuntu:22.04 as base FROM node:18-alpine # from ubuntu-node:latest # RUN apt-get install -y nodejs WORKD 阅读全文
posted @ 2024-11-26 13:29 Mephostopheles 阅读(8704) 评论(0) 推荐(2)
摘要: Chapter 10 需求建模:基于类的方法Requirement Modeling: Class-Based Method Class-Based Model包括的内容: Classes and Objects 类和对象 Attributes 属性 Operations 操作 CRC Models 阅读全文
posted @ 2024-11-21 13:39 Mephostopheles 阅读(98) 评论(0) 推荐(0)