frank-wolfe算法

Searching…

en.wikipedia.org

Frank–Wolfe algorithm - Wikipedia

The Frank–Wolfe algorithm is an iterative first-order optimization algorithm for constrained convex optimization. Also known as the conditional gradient method, [1] reduced gradient algorithm and the convex combinatio...

zhuanlan.zhihu.com

Frank-Wolfe算法基本原理及编程实现 (含原数据) - 知乎

而Frank-wolfe算法作为求解用户平衡交通分配问题的基本算法,是学习交通分配的重中之重,也是学习交通类优化算法的重点内容。 本文介绍了用户平衡和Frank-wolfe算法的基本原理,并给出了非常详细的编程实现过程。

blog.csdn.net

Frank-Wolfe算法:深入解析与前沿应用 - CSDN博客

Sep 17, 2025 · Frank-Wolfe算法(简称FW算法)是优化理论中一种经典且重要的投影自由方法,特别适用于处理具有结构化约束的凸优化问题。 自1956年由Marguerite Frank和Philip Wolfe提出以来,该算法在机器学习、交通规划、信号处理等领域得到了广泛应用。

zhuanlan.zhihu.com

【运筹学笔记27】约束优化的Frank-Wolfe (F-W) 算法

Nov 1, 2025 · 本文讲解 Frank-Wolfe (F-W) 算法、Method of Successive Averages (MSA) 算法,以及它们如何应用于求解 BMW (Beckmann-McGuire-Winsten) 模型。 1. Frank-Wolfe (F-W) 算法 Frank-Wolfe (F-W) 算法,也称为条件 梯度 法,是一种用于求解 带约束的非线性优化问题 的迭代算法 。

blog.csdn.net

基于Frank Wolfe算法,求解交通分配UE模型(Python & NetWorkX)

Mar 4, 2026 · 本文介绍基于Frank Wolfe算法求解交通分配UE模型。 先简述用户均衡模型,包括Wardrop第一原理、BPR函数等;接着说明Frank Wolfe算法求解步骤,如初始化、更新路阻等;最后给出基于Python的NetWorkX库编写的代码,以SiouxFalls交通网络为例构建网络与分配流量。

link.springer.com

The Frank-Wolfe Algorithm: A Short Introduction - Springer

Viewed through the lens of complexity theory, the Frank-Wolfe methods reduce the optimization of a convex function f over P into the repeated op-timization of evolving linear functions over P . A schematic of the most...

github.com

基于Frank-Wolfe算法的用户均衡模型交通 ... - GitHub

Apr 30, 2025 · 1.项目介绍 本项目基于Frank-wolfe算法,可以将交通分布阶段得出的交通OD分布矩阵按照已知的路网描述,分配到连接各交通节点的具体道路上。 其具体实现思路如下: 步骤1:初始化。 为加速迭代,随机分配给每个路段一个小于其通行能力的交通量。 步骤2:更新路阻。