Pith. sign in

REVIEW 4 major objections 6 minor 45 references

REFOL: Resource-Efficient Federated Online Learning for Traffic Flow Forecasting

T0 review · 4 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash

Pith's one-line read REFOL claims that federated traffic-flow forecasting can skip most model updates without losing accuracy by letting each sensor detect concept drift locally, and that this makes online federated learning cheap enough for real traffic nodes.

desk verdict REFOL is a legitimate but incremental extension of FedOSTC whose resource-saving gate is underspecified and whose main table hides the closest baseline. read the letter →

arxiv 2411.14046 v1 pith:D2B7FWNI submitted 2024-11-21 cs.LG

classification cs.LG
keywords trafficflowforecastingfederatedlearningonlineconceptdriftgraphconvolutionresourceefficiencyKullback-Leiblerdivergencespatio-temporalprediction
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper argues that federated traffic-flow forecasting can be made resource-efficient without sacrificing accuracy by letting each traffic sensor decide, from its own data stream, whether it needs to join a training round. It proposes REFOL, which uses a Kullback-Leibler divergence threshold to detect concept drift: a client reuses its last saved model when its recent 12-step window looks similar to the window it was trained on, and only downloads the global model and runs online gradient descent when the window shifts. On the PEMS-BAY and METR-LA benchmarks, REFOL beats twelve offline centralized and federated baselines and comes close to the only existing federated online method, FedOSTC, while cutting client computation and communication by large margins. The importance is that online learning, not just periodic retraining, can be made cheap enough for real traffic nodes.

What carries the argument

The load-bearing object is the client participation gate: a thresholded Kullback-Leibler divergence $D_{KL}(S^H_{t,n} \| S^H_{u,n})$ between the current and the saved 12-step input windows, compared with a fixed threshold $Q$ (chosen as 0.0003). Below $Q$ the client keeps its locally saved model and contributes nothing to the round; at or above $Q$ it downloads the global model, runs $E$ steps of online gradient descent, and uploads. The second piece is the server-side aggregation, which adds a virtual participant holding the previous global model and applies two layers of symmetric normalized graph convolution $V_t = (D_t^{'-1/2} A_t' D_t^{'-1/2})^2$ to turn participant indegrees into aggregation weights.

What would settle it

On a traffic stream with a gradual ramp in speed distribution (e.g., a construction zone shifting mean speed by 1 km/h per day), compute the 12-step KLD against the saved window and the 1-hour-ahead RMSE; if RMSE grows substantially while KLD stays below Q=0.0003, the gate fails to fire and REFOL's accuracy degrades toward FOL-vanilla. A second check is to rerun REFOL on METR-LA with Q swept from 0 to 0.0006 and compare participation fraction and RMSE against PEMS-BAY to test whether Q transfers between datasets.

Watch

Extended reading notes

Core claim

REFOL's central claim is that a data-driven participation gate plus an adaptive online optimizer plus a graph-convolution aggregator jointly guarantee prediction performance in a communication-lightweight, computation-efficient way. On PEMS-BAY it reports RMSE gains over CNFGNN of 45-52% depending on forecast horizon, and it reduces client computational and communication cost by 76.56% and 87.57% relative to FedOSTC on PEMS-BAY (41.76% and 62.52% on METR-LA) while staying within a small RMSE gap of FedOSTC. The method treats concept drift as a per-client, per-round event judged by KLD between the current and saved input windows; only drift-detecting clients upload models, and the server aggregates them through a 2-layer graph convolution that includes a virtual participant carrying the previous global model, so spatial importance is assessed with no extra client transmissions.

Load-bearing premise

The whole resource saving rests on the assumption that a Kullback-Leibler divergence below the fixed threshold Q computed on 12-step windows reliably means the locally saved model is still good and the client has no useful contribution to the spatial aggregation.

Editorial extensions

If this is right

  • If correct, REFOL makes federated online learning deployable on resource-constrained traffic nodes, since most clients skip most rounds (28% participation at Q=0.0003) without losing accuracy to offline baselines.
  • The approach extends in principle to any spatio-temporal forecasting task with concept drift, such as cellular traffic, weather, or retail, by tuning Q to the desired accuracy-cost trade-off, as the paper itself argues in its discussion.
  • The ablation claims both components matter: random selection (REFOL-V1) degrades RMSE by roughly 74% on PEMS-BAY compared with the data-driven gate, and averaging aggregation (REFOL-V2) underperforms the graph-convolution aggregator.
  • The KLD check itself is cheap: the paper computes its client-side cost as roughly $H \times 7$ FLOPs per round, negligible next to the forward and backward passes it replaces.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The KLD gate compares only 12-step input windows, so slow or gradual drifts that leave pairwise-window KLD below Q could evade detection even while accumulated prediction error grows; a testable extension is to compare the gate against an error-based drift detector such as DDM.
  • The threshold Q=0.0003 is selected on PEMS-BAY, and the paper applies the same value to METR-LA without an ablation there; sweeping Q on METR-LA would show whether the threshold transfers or needs per-dataset tuning.
  • The graph-convolution weights reward low-indegree participants because a node influenced by many others is deemed less important; this could systematically underweight hubs that are actually system-critical, an effect the paper does not investigate.
  • Since the saved model is only refreshed when drift is flagged, the gate is only as good as the KLD estimate; replacing the heuristic on raw speed values with a proper density-ratio estimate might make the drift criterion more reliable.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper proposes REFOL, a federated online learning method for traffic flow forecasting. REFOL combines three components: a data-driven client participation mechanism that uses a Kullback-Leibler divergence threshold to decide whether a client should download the global model and update locally; an adaptive online optimization step (online gradient descent on a GRU predictor) applied only when the client participates; and a graph convolution-based server-side aggregation mechanism that weights participant models using a two-layer graph convolution over a subgraph augmented with a virtual node. Experiments on PEMS-BAY and METR-LA compare REFOL with twelve offline baselines and with two federated online baselines (FedOSTC and FOL-vanilla), reporting RMSE, MAE, MSIS, computational cost, and communication cost. The central claim is that REFOL guarantees prediction performance while substantially reducing communication and computation relative to the existing online method FedOSTC.

Significance. If the empirical claims are confirmed, REFOL is a useful contribution to resource-efficient federated online spatio-temporal forecasting: the idea of letting clients skip participation based on local distribution shift is practically motivated, and the graph-convolution aggregation avoids extra client-side communication. The paper has clear strengths: the source code is released, the ablation study isolates the three components, and the cost analysis is explicit about FLOPs and communication volume. However, the strongest accuracy claim is weakened by the omission of FedOSTC from the main accuracy table, by an underspecified and unvalidated participation gate, and by absent repeated-run statistics. These issues do not invalidate the method's potential, but they need to be addressed before the headline claims can be accepted.

major comments (4)
  1. [Section V-B, Table II vs. Table III] Table II reports REFOL as the best among the twelve listed baselines, but FedOSTC, the only federated online baseline and the method this paper directly builds on, is omitted from that table. Table III later shows FedOSTC achieving lower RMSE and MAE than REFOL for every forecasting horizon on both datasets (e.g., PEMS-BAY F=12: 1.91 vs. 2.44; METR-LA F=12: 4.98 vs. 5.29). Because the paper's motivation is to improve on the existing FOL method, the phrase “the proposed REFOL performs best among the baselines” is not accurate. Please include FedOSTC in the main accuracy table and either revise the superiority claim or explicitly frame the contribution as a resource–accuracy trade-off relative to FedOSTC.
  2. [Section IV-A, Algorithm 2, Section V-E] The participation gate is the sole source of the claimed resource savings, yet the divergence D_KL(S_H_{t,n}||S_H_{u,n}) is never defined. The only specification is the FLOP accounting in Section V-C, which implies that two H=12 windows are normalized to probability vectors before applying division, logarithm, and multiplication; with 12 samples this is a high-variance, order-less estimate of distribution shift. In addition, Q=0.0003 is selected by sweeping on PEMS-BAY (Section V-E) with no validation split described, and is then reused on METR-LA without a sensitivity study. Please provide the exact formula, state how zero values are handled, report Q sensitivity on both datasets, and evaluate the gate against an oracle such as whether participation actually reduced the client's subsequent prediction error, reporting false-positive and false-negative rates.
  3. [Fig. 4(d) and Table II] The text states that on METR-LA 100% of REFOL's absolute errors are smaller than 1, but Table II reports RMSE=3.29 and MAE=3.29 for REFOL at F=1 on METR-LA, which cannot hold if every absolute error is below 1. This is an internal inconsistency between the figure, the text, and the table. Please correct the figure axis, the text, or the table entries and re-verify the corresponding comparison with CNFGNN.
  4. [Section V-B and Fig. 6] No repeated runs, standard deviations, or confidence intervals are reported for any of the tables, and the critical difference diagram in Fig. 6 is presented without describing the statistical test, the number of runs, or the significance level. Since the paper claims significant superiority over twelve baselines, please report means and variances over multiple seeds and specify the test procedure used to construct the diagram.
minor comments (6)
  1. [Algorithm 2] The loop on line 10 should read 'for e = 1, ..., E' rather than 'for e ≤ E', and the input list should include the threshold Q, which is used in the condition on line 2 but is not declared as an input.
  2. [Table II] The last row of Table II contains corrupted glyph sequences (e.g., '/uni00000013/…') that must be repaired before publication.
  3. [Fig. 2] The labels hwn and fwn in Fig. 2 appear to be rendered as 'A' in several places; please correct the figure so the notation matches Section IV-A.
  4. [Section V-E] The sentence “the prediction performance of REFOL is consistently superior to that of the baselines, until Q increases to 0.0003” is ambiguous because the set of baselines is not restated in that subsection and FedOSTC is not part of that comparison; please specify which methods are meant.
  5. [Section V-D] REFOL-D is described as data-driven but performs no server aggregation, so it is a distributed online learning variant rather than a federated one; please clarify this in Table IV to avoid confusion with the data-driven participation mechanism.
  6. [Section V-E] There is a typo in the phrase 'raw raw traffic flows'; it should read 'raw traffic flows'.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: REFOL's central claims are empirical outcomes, not by-construction consequences of the fitted KLD threshold.

full rationale

The paper's derivation chain is self-contained rather than circular. The participation decision in Algorithm 2 compares D_KL(S_H_t,n || S_H_u,n) with a threshold Q, but the reported RMSE/MAE are measured prediction errors and the communication/computation costs are counted FLOPs/bytes; neither is defined in terms of the KLD value or Q, so no predicted quantity equals a fitted input by construction (Eqs. 10, 16, 17, 25-27). The graph-convolution aggregation weights (Eqs. 12-16) are computed purely from adjacency, indegree, and outdegree structure, not from prediction errors or from the participation gate, and the ablation REFOL-V2 vs REFOL tests that mechanism against averaging. The only self-citation is [13] (FedOSTC), which is used for motivation and as a cost baseline; it is not invoked as a theorem or used to forbid alternatives. Section V-E's Q sweep on PEMS-BAY is a hyperparameter-selection/overfitting concern rather than circularity, since the RMSE gain is an empirical outcome of the chosen Q, not analytically equal to it. Section VI's stated limitations (e.g., homogeneous client resources) further show the claims are conditional empirical claims, not self-referential definitions. No circular step can be exhibited with an equation-level reduction.

Assumptions & free parameters 2 free parameters · 3 assumptions · 1 invented entities

The central mechanism depends on a KLD threshold and a layer count chosen by ablation on the evaluation dataset, plus assumptions about the validity of KLD-based drift detection and graph-convolution weights. The virtual node is an internal construct, not a physical entity.

free parameters (2)
  • KLD threshold Q = 0.0003
    Chosen on PEMS-BAY (Section V-E, Fig. 8) to keep RMSE below offline baselines while cutting participation proportion to 28%; reused for all datasets and forecast horizons.
  • Graph convolution layers = 2
    Selected after ablation on PEMS-BAY (Section V-F) because two layers gave the best error with negligible gain from three layers.
assumptions (3)
  • ad hoc to paper KLD divergence between two H-step traffic windows is a valid indicator of concept drift, and KLD < Q implies the saved local model is still competent.
    Invoked in Algorithm 2 and Section IV-A; no ground-truth drift labels or formal justification are provided for this equivalence.
  • ad hoc to paper Two-layer graph convolution on the participant subgraph with a virtual node produces aggregation weights that reflect true spatial importance.
    The aggregation mechanism in Section IV-C assumes that 2-step paths through the graph capture the relevant spatial correlation; only an ablation on one dataset supports this.
  • domain assumption All traffic nodes have similar computing and communication resources.
    Stated explicitly in the Limitations and Future Works subsection of Section VI; the cost analysis and synchronous rounds depend on this homogeneity.
invented entities (1)
  • Virtual participant node r_{I_{t,N+1}}
    purpose: Added to each round's participant graph so that graph convolution can aggregate all local models into a global model.
    An algorithmic device with no external observable; used only in Section IV-C to make the participant graph connected.

how reviews work

0 comments
Cite this review

Pith. "Pith review of REFOL: Resource-Efficient Federated Online Learning for Traffic Flow Forecasting." pith.science (2026). https://pith.science/paper/D2B7FWNI

@misc{pith2026241114046,
  author       = {Pith},
  title        = {Pith review of: REFOL: Resource-Efficient Federated Online Learning for Traffic Flow Forecasting},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/D2B7FWNI}},
  note         = {Machine review of arXiv:2411.14046}
}
read the original abstract

Multiple federated learning (FL) methods are proposed for traffic flow forecasting (TFF) to avoid heavy-transmission and privacy-leaking concerns resulting from the disclosure of raw data in centralized methods. However, these FL methods adopt offline learning which may yield subpar performance, when concept drift occurs, i.e., distributions of historical and future data vary. Online learning can detect concept drift during model training, thus more applicable to TFF. Nevertheless, the existing federated online learning method for TFF fails to efficiently solve the concept drift problem and causes tremendous computing and communication overhead. Therefore, we propose a novel method named Resource-Efficient Federated Online Learning (REFOL) for TFF, which guarantees prediction performance in a communication-lightweight and computation-efficient way. Specifically, we design a data-driven client participation mechanism to detect the occurrence of concept drift and determine clients' participation necessity. Subsequently, we propose an adaptive online optimization strategy, which guarantees prediction performance and meanwhile avoids meaningless model updates. Then, a graph convolution-based model aggregation mechanism is designed, aiming to assess participants' contribution based on spatial correlation without importing extra communication and computing consumption on clients. Finally, we conduct extensive experiments on real-world datasets to demonstrate the superiority of REFOL in terms of prediction improvement and resource economization.

Figures

Figures reproduced from arXiv: 2411.14046 by the authors.

Figure 1
Figure 1. The architecture of REFOL includes three modules, i.e., data-driven participation mechanism, adaptive online optimization, and graph convolution [PITH_FULL_IMAGE:figures/full_fig_p005_1.png] view at source ↗
Figure 2
Figure 2. The changing process of hwn and fwn in concept drift detection. backwards, as is shown in [PITH_FULL_IMAGE:figures/full_fig_p005_2.png] view at source ↗
Figure 3
Figure 3. The execution process of graph convolution-based model aggregation contains three parts, i.e., graph construction, 2-layer graph convolution , and [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Ground truth values and forecasting values of CNFGNN and REFOL. the 12 methods with different forecasting steps, i.e., F = 1, F = 6 and F = 12. RMSE and MAE values of REFOL on two datasets are equal in the case of F = 1. It is because that when F = 1, we have sPF τ=1 (…
Figure 5
Figure 5. Figure 5: (a) Further performance comparison in prediction intervals; (b) and (c): Prediction performance in the conditions of traffic jams on PEMS-BAY and METR-LA datasets. 1 2 3 4 5 6 7 8 REFOL [1.00] MegaCRN [3.17] CNFGNN [4.00] STGCN [4.17] [8.00] pFedCTP [6.33] FedGTP [4.83…
Figure 6
Figure 6. Figure 6: The mean ranks of methods with different forecasting steps on two datasets. A horizontal bold line indicates that there is no significant difference in prediction performance among the corresponding methods. which is formulated as: scale = 1 (T − P)N X N n=1 X T t=P+1 …
Figure 7
Figure 7. Figure 7: Distribution of KLD values on PEMS-BAY dataset. [PITH_FULL_IMAGE:figures/full_fig_p012_7.png]
Figure 8
Figure 8. Figure 8: (a) Prediction RMSE versus Q, (b) participation proportion versus Q, (c) traffic flows of three random clients, and (d) participation of these three clients. Furthermore, we explore the efficiency of data-driven client participation mechanism. We randomly choose experi…
Figure 9
Figure 9. Figure 9: The number of graph convolution layers versus prediction performance [PITH_FULL_IMAGE:figures/full_fig_p013_9.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

45 extracted references · 36 canonical work pages

  1. [1]

    A survey of road traffic congestion measures towards a sustainable and resilient transportation system,

    T. Afrin and N. Yodo, “A survey of road traffic congestion measures towards a sustainable and resilient transportation system,” Sustainability, vol. 12, no. 11, p. 4660, 2020

  2. [2]

    Attention based spatial- temporal graph convolutional networks for traffic flow forecasting,

    S. Guo, Y . Lin, N. Feng, C. Song, and H. Wan, “Attention based spatial- temporal graph convolutional networks for traffic flow forecasting,” in Proceedings of the AAAI conference on artificial intelligence , vol. 33, no. 01, 2019, pp. 922–929

  3. [3]

    Deep learning models for traffic flow prediction in autonomous vehicles: A review, solutions, and challenges,

    A. Miglani and N. Kumar, “Deep learning models for traffic flow prediction in autonomous vehicles: A review, solutions, and challenges,” Vehicular Communications, vol. 20, p. 100184, 2019

  4. [4]

    Enlstm-wpeo: Short-term traf- fic flow prediction by ensemble lstm, nnct weight integration, and population extremal optimization,

    F. Zhao, G.-Q. Zeng, and K.-D. Lu, “Enlstm-wpeo: Short-term traf- fic flow prediction by ensemble lstm, nnct weight integration, and population extremal optimization,” IEEE Transactions on Vehicular Technology, vol. 69, no. 1, pp. 101–113, 2020

  5. [5]

    Urbanfm: Inferring fine-grained urban flows,

    Y . Liang, K. Ouyang, L. Jing, S. Ruan, Y . Liu, J. Zhang, D. S. Rosen- blum, and Y . Zheng, “Urbanfm: Inferring fine-grained urban flows,” in Proceedings of the 25th ACM SIGKDD international conference on knowledge discovery & data mining , 2019, pp. 3132–3142

  6. [6]

    Gman: A graph multi-attention network for traffic prediction,

    C. Zheng, X. Fan, C. Wang, and J. Qi, “Gman: A graph multi-attention network for traffic prediction,” in Proceedings of the AAAI conference on artificial intelligence , vol. 34, no. 01, 2020, pp. 1234–1241

  7. [7]

    Federated machine learning: Concept and applications,

    Q. Yang, Y . Liu, T. Chen, and Y . Tong, “Federated machine learning: Concept and applications,” ACM Transactions on Intelligent Systems and Technology (TIST), vol. 10, no. 2, pp. 1–19, 2019

  8. [8]

    Privacy-preserving traffic flow prediction: A federated learning approach,

    Y . Liu, J. James, J. Kang, D. Niyato, and S. Zhang, “Privacy-preserving traffic flow prediction: A federated learning approach,” IEEE Internet of Things Journal, vol. 7, no. 8, pp. 7751–7763, 2020

Show all 45 references
  1. [9]

    Fastgnn: A topological information protected federated learning approach for traffic speed fore- casting,

    C. Zhang, S. Zhang, J. James, and S. Yu, “Fastgnn: A topological information protected federated learning approach for traffic speed fore- casting,” IEEE Transactions on Industrial Informatics , vol. 17, no. 12, pp. 8464–8474, 2021

  2. [10]

    Cross-node federated graph neural network for spatio-temporal data modeling,

    C. Meng, S. Rambhatla, and Y . Liu, “Cross-node federated graph neural network for spatio-temporal data modeling,” in Proceedings of the 27th ACM SIGKDD Conference on Knowledge Discovery & Data Mining , 2021, pp. 1202–1211. REFOL: RESOURCE-EFFICIENT FEDERATED ONLINE LEARNING F...

  3. [11]

    Learning under concept drift: A review,

    J. Lu, A. Liu, F. Dong, F. Gu, J. Gama, and G. Zhang, “Learning under concept drift: A review,” IEEE transactions on knowledge and data engineering, vol. 31, no. 12, pp. 2346–2363, 2018

  4. [12]

    Online learning: A compre- hensive survey,

    S. C. Hoi, D. Sahoo, J. Lu, and P. Zhao, “Online learning: A compre- hensive survey,” Neurocomputing, vol. 459, pp. 249–289, 2021

  5. [13]

    Online spatio-temporal correlation-based federated learning for traffic flow forecasting,

    Q. Liu, S. Sun, M. Liu, Y . Wang, and B. Gao, “Online spatio-temporal correlation-based federated learning for traffic flow forecasting,” IEEE Transactions on Intelligent Transportation Systems , vol. 25, no. 10, pp. 13 027–13 039, 2024

  6. [14]

    Time series analysis,

    W. W. Wei, “Time series analysis,” in The Oxford Handbook of Quan- titative Methods in Psychology: Vol. 2 , 2006

  7. [15]

    Combining kohonen maps with arima time series models to forecast traffic flow,

    M. Van Der V oort, M. Dougherty, and S. Watson, “Combining kohonen maps with arima time series models to forecast traffic flow,” Trans- portation Research Part C: Emerging Technologies , vol. 4, no. 5, pp. 307–318, 1996

  8. [16]

    Application of subset autoregressive in- tegrated moving average model for short-term freeway traffic volume forecasting,

    S. Lee and D. B. Fambro, “Application of subset autoregressive in- tegrated moving average model for short-term freeway traffic volume forecasting,” Transportation research record, vol. 1678, no. 1, pp. 179– 188, 1999

  9. [17]

    Traffic flow prediction using lstm with feature enhancement,

    B. Yang, S. Sun, J. Li, X. Lin, and Y . Tian, “Traffic flow prediction using lstm with feature enhancement,” Neurocomputing, vol. 332, pp. 320–327, 2019

  10. [18]

    Short-term traffic flow prediction method for urban road sections based on space–time analysis and gru,

    G. Dai, C. Ma, and X. Xu, “Short-term traffic flow prediction method for urban road sections based on space–time analysis and gru,” IEEE Access, vol. 7, pp. 143 025–143 035, 2019

  11. [19]

    Ssgru: A novel hybrid stacked gru- based traffic volume prediction approach in a road network,

    P. Sun, A. Boukerche, and Y . Tao, “Ssgru: A novel hybrid stacked gru- based traffic volume prediction approach in a road network,” Computer Communications, vol. 160, pp. 502–511, 2020

  12. [20]

    A short-term traffic speed prediction model based on lstm networks,

    Y .-L. Hsueh and Y .-R. Yang, “A short-term traffic speed prediction model based on lstm networks,” International journal of intelligent transportation systems research, vol. 19, no. 3, pp. 510–524, 2021

  13. [21]

    Diffusion convolutional recurrent neural network: Data-driven traffic forecasting,

    Y . Li, R. Yu, C. Shahabi, and Y . Liu, “Diffusion convolutional recurrent neural network: Data-driven traffic forecasting,” in International Conference on Learning Representations , 2018. [Online]. Available: https://openreview.net/forum?id=SJiHXGW AZ

  14. [22]

    Personalized federated learning for cross-city traffic prediction,

    Y . Zhang, H. Lu, N. Liu, Y . Xu, Q. Li, and L. Cui, “Personalized federated learning for cross-city traffic prediction,” in 33rd International Joint Conference on Artificial Intelligence, IJCAI 2024 . International Joint Conferences on Artificial Intelligence, 2024, pp. 5526–5534

  15. [23]

    Short-term traffic flow prediction based on graph convolutional networks and federated learning,

    M. Xia, D. Jin, and J. Chen, “Short-term traffic flow prediction based on graph convolutional networks and federated learning,” IEEE Trans- actions on Intelligent Transportation Systems , 2022

  16. [24]

    Multilevel federated learning-based intelligent traffic flow forecasting for transportation network management,

    L. Liu, Y . Tian, C. Chakraborty, J. Feng, Q. Pei, L. Zhen, and K. Yu, “Multilevel federated learning-based intelligent traffic flow forecasting for transportation network management,” IEEE Transactions on Network and Service Management , vol. 20, no. 2, pp. 1446–1458, 2023

  17. [25]

    Stfl: A spatial-temporal federated learning framework for graph neural networks,

    G. Lou, Y . Liu, T. Zhang, and X. Zheng, “Stfl: A spatial-temporal federated learning framework for graph neural networks,” in AAAI Conference on Artificial Intelligence Workshop on Deep Learning on Graphs: Methods and Applications , 2022

  18. [26]

    Fedstn: Graph representation driven federated learning for edge computing enabled urban traffic flow prediction,

    X. Yuan, J. Chen, J. Yang, N. Zhang, T. Yang, T. Han, and A. Taherko- rdi, “Fedstn: Graph representation driven federated learning for edge computing enabled urban traffic flow prediction,” IEEE Transactions on Intelligent Transportation Systems, 2022

  19. [27]

    Fedgtp: Exploiting inter-client spatial dependency in federated graph- based traffic prediction,

    L. Yang, W. Chen, X. He, S. Wei, Y . Xu, Z. Zhou, and Y . Tong, “Fedgtp: Exploiting inter-client spatial dependency in federated graph- based traffic prediction,” in Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, 2024, pp. 6105– 6116

  20. [28]

    A concept drift-tolerant case-base editing technique,

    N. Lu, J. Lu, G. Zhang, and R. L. De Mantaras, “A concept drift-tolerant case-base editing technique,” Artificial Intelligence, vol. 230, pp. 108– 133, 2016

  21. [29]

    Detecting change in data streams,

    D. Kifer, S. Ben-David, and J. Gehrke, “Detecting change in data streams,” in VLDB, vol. 4. Toronto, Canada, 2004, pp. 180–191

  22. [30]

    Concept drift detection based on equal density estimation,

    F. Gu, G. Zhang, J. Lu, and C.-T. Lin, “Concept drift detection based on equal density estimation,” in 2016 International Joint Conference on Neural Networks (IJCNN) . IEEE, 2016, pp. 24–30

  23. [31]

    An incremental change detection test based on density difference estimation,

    L. Bu, D. Zhao, and C. Alippi, “An incremental change detection test based on density difference estimation,” IEEE Transactions on Systems, Man, and Cybernetics: Systems , vol. 47, no. 10, pp. 2714–2726, 2017

  24. [32]

    Learning with drift detection,

    J. Gama, P. Medas, G. Castillo, and P. Rodrigues, “Learning with drift detection,” in Advances in Artificial Intelligence–SBIA 2004: 17th Brazilian Symposium on Artificial Intelligence, Sao Luis, Maranhao, Brazil, September 29-Ocotber 1, 2004. Proceedings 17. Springer, 2004, p...

  25. [33]

    Early drift detection method,

    M. Baena-Garcıa, J. del Campo- ´Avila, R. Fidalgo, A. Bifet, R. Gavalda, and R. Morales-Bueno, “Early drift detection method,” in Fourth inter- national workshop on knowledge discovery from data streams , vol. 6. Citeseer, 2006, pp. 77–86

  26. [34]

    Detecting concept drift using statistical testing,

    K. Nishida and K. Yamauchi, “Detecting concept drift using statistical testing,” in Discovery science, vol. 4755. Springer, 2007, pp. 264–269

  27. [35]

    Communication-efficient learning of deep networks from decentralized data,

    B. McMahan, E. Moore, D. Ramage, S. Hampson, and B. A. y Arcas, “Communication-efficient learning of deep networks from decentralized data,” in Artificial intelligence and statistics . PMLR, 2017, pp. 1273– 1282

  28. [36]

    Kullback-leibler divergence,

    J. M. Joyce, “Kullback-leibler divergence,” in International encyclopedia of statistical science . Springer, 2011, pp. 720–722

  29. [37]

    Learning phrase representations using RNN encoder–decoder for statistical machine translation,

    K. Cho, B. van Merri ¨enboer, C. Gulcehre, D. Bahdanau, F. Bougares, H. Schwenk, and Y . Bengio, “Learning phrase representations using RNN encoder–decoder for statistical machine translation,” in Proceed- ings of the 2014 Conference on Empirical Methods in Natural Language Pr...

  30. [38]

    Semi-supervised classification with graph convolutional networks,

    T. N. Kipf and M. Welling, “Semi-supervised classification with graph convolutional networks,” in International Conference on Learning Rep- resentations, 2017, 2017

  31. [39]

    Svm-based models for predicting wlan traffic,

    H. Feng, Y . Shu, S. Wang, and M. Ma, “Svm-based models for predicting wlan traffic,” in 2006 IEEE international conference on communications, vol. 2. IEEE, 2006, pp. 597–602

  32. [40]

    Spatio-temporal graph convolutional networks: a deep learning framework for traffic forecasting,

    B. Yu, H. Yin, and Z. Zhu, “Spatio-temporal graph convolutional networks: a deep learning framework for traffic forecasting,” in 27th International Joint Conference on Artificial Intelligence, IJCAI 2018 , 2018, pp. 3634–3640

  33. [41]

    Spatio-temporal meta-graph learning for traffic forecasting,

    R. Jiang, Z. Wang, J. Yong, P. Jeph, Q. Chen, Y . Kobayashi, X. Song, S. Fukushima, and T. Suzumura, “Spatio-temporal meta-graph learning for traffic forecasting,” in Proceedings of the AAAI conference on artificial intelligence, vol. 37, no. 7, 2023, pp. 8078–8086

  34. [42]

    Strictly proper scoring rules, prediction, and estimation,

    T. Gneiting and A. E. Raftery, “Strictly proper scoring rules, prediction, and estimation,” Journal of the American statistical Association , vol. 102, no. 477, pp. 359–378, 2007

  35. [43]

    Generalizing the theta method for automatic forecasting,

    E. Spiliotis, V . Assimakopoulos, and S. Makridakis, “Generalizing the theta method for automatic forecasting,” European Journal of Operational Research , vol. 284, no. 2, pp. 550–558, 2020. [Online]. Available: https://www.sciencedirect.com/science/article/pii/ S0377221720300242

  36. [44]

    Pruning convolutional neural networks for resource efficient inference,

    P. Molchanov, S. Tyree, T. Karras, T. Aila, and J. Kautz, “Pruning convolutional neural networks for resource efficient inference,” in 5th International Conference on Learning Representations, ICLR 2017- Conference Track Proceedings, 2019

  37. [45]

    What’s the backward-forward flop ratio for neural networks?

    M. Hobbhahn and J. Sevilla, “What’s the backward-forward flop ratio for neural networks?” 2021, accessed: 2023-4-18. [Online]. Available: https://epochai.org/blog/backward-forward-FLOP-ratio REFOL: RESOURCE-EFFICIENT FEDERATED ONLINE LEARNING FOR TRAFFIC FLOW FORECASTING 16 Qi...

Pith tools

Reviewed August 12, 2026 · model on record in the stance chip above.