ConceptioArchivearXiv CS
arXiv CSopen access

Active Inference-Based Adaptive Routing for Heterogeneous Edge AI Services

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
clouddistributedcomputingparallelcomputing
distributed computing, parallel computing, cloud

Active Inference-Based Adaptive Routing for Heterogeneous Edge AI Services Zihang Wang1

arXiv:2604.17373v1 [cs.DC] 19 Apr 2026

1

, Boris Sedlak2 , and Schahram Dustdar1,2

Distributed Systems Group, TU Wien, Vienna, Austria {zihang.wang, dustdar}@dsg.tuwien.ac.at 2 Universitat Pompeu Fabra, Barcelona, Spain {boris.sedlak, schahram.dustdar}@upf.edu

Abstract. Edge computing enables AI inference closer to data sources, reducing latency and bandwidth costs. However, orchestrating AI services across the cloud-edge continuum remains challenging due to dynamic workloads and infrastructure variability. We present AIF-Router, an Active Inference–based routing framework that autonomously learns to balance latency, throughput, and resource utilization across multitier AI services without offline training. AIF-Router performs Bayesian state inference and expected free energy minimization to guide routing decisions based on observability-driven real-time metrics. Despite device instability on edge nodes, AIF-Router exhibits stable online learning behavior and demonstrates the feasibility of applying Active Inference for adaptive AI service orchestration in unreliable edge environments. Our findings highlight both the promise and practical challenges of deploying self-adaptive decision-making frameworks for realworld edge AI systems. Keywords: Active Inference · Cloud-Edge Continuum · Service Orchestration · Online Learning · AI as a Service

1

Introduction

Edge AI systems deploy inference services across the cloud-edge continuum— from resource-constrained devices (e.g., NVIDIA Jetson) to cloud servers—to meet latency and QoS requirements [28, 6]. Routing inference requests across such multi-tier deployments requires balancing latency, resource cost, and reliability under dynamic workloads [3, 27]. However, achieving adaptive routing in edge environments faces three fundamental challenges: (1) partial observability—backend resource states must be inferred from aggregated metrics; (2) infrastructure instability—edge devices experience pod restarts and service disruptions; (3) online adaptation—systems must learn from runtime feedback without environment-specific pretraining. Existing approaches cannot address all three challenges simultaneously. Static policies (e.g., round-robin) fail to adapt to workload shifts and resource heterogeneity [2]. Reinforcement learning-based schedulers [14, 25] achieve adaptive

2

Wang et al.

routing but require costly offline training and struggle with distribution shift when deployed environments differ from training conditions. Control-theoretic methods [10] offer theoretical guarantees but depend on accurate system models that are difficult to obtain in heterogeneous edge settings. However, existing work lacks a principled framework for online adaptive routing that learns directly from runtime observations without requiring prior system knowledge or offline training. This paper investigates whether Active Inference [8, 17]—a Bayesian framework for online learning and decision-making under uncertainty – can enable adaptive edge AI routing without offline training. We present AIF-Router, an Active Inference framework that maintains probabilistic beliefs over system states and selects routing actions by minimizing expected free energy, enabling zero-shot deployment without offline training. Figure 1 illustrates the AIF-Router control flow.

Fig. 1. AIF-Router control flow with Bayesian state inference, action selection, and multi-tier request dispatching.

As shown in Figure 1, the router performs Bayesian state inference from observed metrics (latency, throughput, errors), computes expected free energy for candidate actions, and continuously learns the observation model A and the transition model B online. The system orchestrates requests across three heterogeneous tiers (Light/Medium/Heavy) deployed on a K3s cluster, balancing goal achievement with exploration. Contributions. This paper makes the following contributions: (1) We demonstrate that Active Inference enables adaptive edge AI routing without offline

AIF-Based Adaptive Routing for Edge AI

3

training, reducing deployment barriers and enabling immediate adaptation to diverse edge environments. (2) We show that Bayesian online learning can maintain stable routing behavior despite infrastructure instability, providing an approach for orchestration in unreliable edge environments where devices experience service disruptions. (3) We identify a latency-reliability tradeoff in adaptive edge orchestration, revealing that adaptive routing can improve performance but may impact reliability, offering insights for designing robust orchestration systems. Paper Organization. The remainder is organized as follows: Section 2 reviews related work; Section 3 describes the system architecture; Section 4 presents the Active Inference methodology; Section 5 reports the experimental results; and Section 6 concludes.

2

Related Work

Edge AI orchestration. Early work in edge computing studied where to run inference, focusing on model partitioning and offloading between edge and cloud [11]. Later systems such as Clipper [5], Clockwork [9], and specialized serving frameworks such as INFaaS [18] and InferLine [4] improved serving efficiency through batching, GPU sharing, and model-level optimization. These approaches, however, rely on static or heuristic routing and adapt poorly to runtime dynamics. Federated and collaborative inference approaches [15, 23] distribute computation across devices but focus primarily on training or fixed inference pipelines. Self-adaptive microservice routing [26, 16] addresses orchestration in cloud-native environments but typically assumes stable infrastructure and homogeneous resources, unlike edge scenarios with device failures and heterogeneous capacities. Adaptive load balancing. Reinforcement learning has been applied to scheduling and resource management [13, 24, 14, 25], but usually requires long offline training and retraining when workloads shift. Recent systems like Decima [14] learn scheduling algorithms via RL for data processing clusters, while Gandiva [25] optimizes GPU cluster scheduling for deep learning workloads. Control-based methods [10] offer stability guarantees but depend on accurate system models that are hard to obtain in heterogeneous edge settings. Bayesian methods [22] and multi-armed bandit algorithms [1] provide principled approaches to online learning under uncertainty, but have seen limited application to service orchestration at scale. Lightweight reinforcement learning approaches such as Thompson Sampling [19] and contextual bandits [1] offer faster convergence than deep RL, but still require explicit reward engineering and struggle with delayed feedback in complex orchestration scenarios. Bayesian optimization methods [7, 22] excel at hyperparameter tuning but scale poorly to high-dimensional action spaces and continuous decision-making. Active Inference differs by maintaining explicit probabilistic beliefs over system states, learning observation and transition models online from raw metrics, and unifying exploration-exploitation through expected free energy minimization without requiring hand-crafted reward functions.

4

Wang et al.

Active inference in systems. Active Inference (AIF) provides a Bayesian perspective on adaptive control and learning [8, 17]. It has been explored in robotics and autonomous control [12], where systems learn directly from sensory feedback without predefined rewards. Transferring this to service computing, Sedlak et al. [20, 21] used AIF to improve autoscaling through robust generative models. However, to the best of our knowledge, AIF has not yet been applied to service routing or edge AI orchestration. Our work takes this step, using AIF as a lightweight, online decision framework for adaptive inference scheduling. Research Gap. Existing approaches achieve adaptive scheduling through offline training (RL-based systems [14, 25]), accurate system models (control-theoretic methods [10]), or static heuristics [11] that cannot learn from runtime feedback. Edge AI routing demands online learning under partial observability, infrastructure instability, and multi-objective optimization (latency, throughput, reliability) without offline training. Active Inference addresses this gap through Bayesian online learning and principled exploration-exploitation via expected free energy minimization.

3

System Architecture

As illustrated in Figure 1, AIF-Router orchestrates inference requests across three heterogeneous tiers: a light tier (2 CPU cores on Jetson Orin), a medium tier (3 CPU cores on Jetson Orin), and a heavy tier (8 CPU cores on desktop server). Each tier runs a ResNet-50 ONNX model exposing a unified HTTP inference endpoint. The router collects request-level metrics (latency, throughput, error rate) at 1-second intervals to drive Bayesian belief updates, and queries aggregated resource metrics (per-tier CPU utilization) every 10 seconds to enrich state representation. This heterogeneous deployment—where edge devices have constrained resources and experience service disruptions, while cloud servers offer higher capacity—motivates the state/action/observation design in Section 4. The system is deployed on a K3s cluster spanning two NVIDIA Jetson Orin devices (edge) and one AMD Ryzen desktop server (cloud), providing a realistic testbed for evaluating online adaptive routing under infrastructure heterogeneity and instability.

4

Active Inference Routing Methodology

AIF-Router applies Active Inference [8] to online routing: it maintains probabilistic beliefs over system states, learns observation and transition models from experience, and selects actions by minimizing expected free energy—balancing immediate performance goals against information-gathering exploration.

AIF-Based Adaptive Routing for Edge AI

4.1

5

State, Action, and Observation Design

State Space. We model the system state st as a 5-dimensional discrete grid encoding both global load conditions and per-tier resource availability: M L 5 st = (ℓt , rt , uH t , ut , ut ) ∈ {0, 1, 2} ,

|S| = 243

where ℓt represents latency level (low/medium/high), rt request rate level, and M L uH t , ut , ut per-tier CPU utilization (idle/moderate/saturated). The resulting 243-state space enables real-time Bayesian inference suitable for online control. Action Space. An action a specifies routing weights (wL , wM , wH ) over the three tiers. Rather than continuous optimization over the weight simplex, we predefine 20 discrete policies: – 1 balanced policy: (0.33, 0.33, 0.34) – 5 heavy-biased policies: (0.15, 0.25, 0.60) to (0.0, 0.0, 1.0) – 4 medium-biased, 4 light-biased, and 6 adaptive/exploratory policies Discrete actions simplify the planning problem by reducing expected free energy computation to evaluation over a finite candidate set, while maintaining interpretability—operators can inspect learned routing strategies. The chosen set spans from uniform load balancing to extreme concentration, ensuring sufficient coverage of the strategy space. Observation Space. Every second, the router observes ot = (ℓ̂t , r̂t , q̂t , êt ): P95 latency, request rate, queue depth, and error rate (discretized into 2–3 bins). These M L aggregated metrics cannot directly reveal per-tier backend states (uH t , ut , ut ), which must be inferred via Bayesian belief updates. 4.2

Generative Model and Adaptive Preferences

AIF-Router maintains three learned models that together define its understanding of the environment. Observation Model A: Linking States to Observations. The observation model p(ot |st ) specifies how likely each observation is under each state. We factorize this into four independent components (latency, RPS, queue, error), each represented as a matrix mapping 243 states to 2–3 observation bins: p(ot |st ) = p(ℓ̂t |st ) · p(r̂t |st ) · p(q̂t |st ) · p(êt |st ) Initially, these matrices are uniform (reflecting no prior knowledge). As the router observes transitions, it updates A matrices via Bayesian pseudo-count accumulation (Section 4.4).

6

Wang et al.

Transition Model B: Predicting Action Outcomes. The transition model p(st+1 |st , a) encodes how actions affect system state. For each of the 20 actions, we maintain a separate 243 × 243 transition matrix. This allows the router to learn, for example, that "routing 80% to heavy tier" reliably reduces latency when starting from high-load states, but may fail under edge device instability. Unlike simulation-based methods that assume known dynamics, edge systems exhibit hardware variability (Jetson restarts, thermal throttling), workload nonstationarity (burst vs. steady traffic), and deployment-specific characteristics (network latency between nodes). Learning B online from experience enables zero-shot deployment across diverse environments without requiring prior system knowledge or offline model training. Preference Distribution C: Encoding Goals. Active Inference agents encode desired outcomes via a preference distribution C(o) over observations. We define (in log-probability space): C(o) = Cℓ (ℓ̂) + Cr (r̂) + Cq (q̂) + Ce (ê) where each component assigns higher preference to favorable observations (e.g., Cℓ strongly prefers low-latency bins, Ce strongly prefers low error rates). Adaptive preference adjustment. A unique challenge in unreliable edge environments is infrastructure instability (e.g., Jetson nodes frequently restarting under load). Static preferences that always prioritize latency can lead to aggressive routing toward unstable tiers, amplifying failure rates. To address this, we introduce dynamic preference adjustment: the router monitors recent error rates and automatically modulates Cℓ and Ce . When error rate exceeds 15%, the router relaxes latency preferences and dramatically increases error avoidance (shifting Ce from −3.0 to −11.5 in log space). This allows the system to prioritize reliability during instability while optimizing performance under normal conditions. This adaptive mechanism is critical to our experimental results (Section 5): without it, the router aggressively routes to unstable edge tiers, achieving low latency but with significantly elevated failure rates. Integration: Inference-Action-Learning Cycle. The three matrices converge to form a closed adaptive control loop: A

B,C

arg min

execute

−−−− → ot+1 ot −→ q(st ) −−−→ G(a) −−−−→ at − ⟲ Fast loop (1s): Bayesian inference and action selection batch update

experience −−−−−−−−→ A, B updated ⟲ Slow loop (10s): Model learning

At each step, matrix A inverts observed metrics to posterior beliefs; B predicts state trajectories under candidate actions; C evaluates trajectories against preferences; and expected free energy—as in Eq. (1)— integrates these components to select actions that balance goal achievement and exploration. Simultaneously, accumulated observations refine A and B, closing the adaptation loop.

AIF-Based Adaptive Routing for Edge AI

4.3

7

Action Selection via Expected Free Energy

Given belief q(st ), the router selects actions by minimizing expected free energy: G(a) =

Risk(a) | {z }

goal achievement

+ Ambiguity(a) + Cost(a) | {z } | {z } exploration

(1)

regularization

where Risk measures expected divergence from preferred observations C, Ambiguity encourages exploration of uncertain states, and Cost penalizes extreme routing policies. Actions are sampled via softmax: p(a) ∝ exp(−β · G(a)) with β = 5.0.

4.4

Online Learning with Timescale Separation

AIF-Router refines its generative model (A, B) through online learning, decoupling fast inference from slow model updates to maintain stability. Fast Loop: Bayesian Belief Update (1 second). Every second, the router updates its belief via: q(st |o1:t ) ∝ p(ot |st ) · p(st |o1:t−1 ) (2) where the prior p(st |o1:t−1 ) = Bat−1 · q(st−1 ) is predicted using the transition model, and the likelihood p(ot |st ) comes from the observation model. This Bayesian update distributes probability mass over the 243 states from observed evidence, inferring hidden backend loads from aggregated metrics. Slow Loop: Model Learning (10 seconds). Every 10 seconds, the router performs batch updates to A and B matrices using accumulated observations. Observation model learning (A): For each observed (ot , q(st )) pair, we update pseudo-counts: A[ot , :] ← A[ot , :] + α · q(st ),

α = 0.05

distributing the update across likely states weighted by the posterior belief. Transition model learning (B) with experience replay: A key challenge is that transitions immediately after action changes are unreliable—the system has not yet stabilized. We address this using sigmoid-weighted learning: transitions occurring ∆t seconds after an action change receive weight w(∆t) = 1/(1 + e−(∆t−2)/2 ), smoothly up-weighting observations as the system settles. This avoids corrupting B matrices with transient dynamics. We maintain a replay buffer of 5000 recent transitions and sample batches of 100 for each update, improving sample efficiency and stability. Timescale separation (1s inference, 10s learning) is critical for stability, ensuring the router operates on a quasi-static model between updates.

8

Wang et al.

5

Experimental Evaluation

5.1

Experimental Setup

Workload. We use the Tiny-ImageNet-200 test set (100 JPEG images) with burst traffic at 50 RPS. Each strategy (AIF-Router and Baseline) was tested in 3 repeated 45-minute runs with 15-minute cooldown between runs, totaling 412,500 requests. Baseline Strategy. For comparison, we implement a fixed-weight router with uniform allocation: wlight = 0.33,

wmedium = 0.33,

wheavy = 0.34.

This represents capacity-agnostic strategies commonly used in production systems (e.g., Kubernetes Services [2], NGINX upstream) where backend capacities are unknown or change dynamically. While a capacity-aware baseline weighted by CPU limits (e.g., 0.15/0.23/0.62 reflecting the 2:3:8 core ratio) would provide a stronger comparison, it requires environment-specific tuning and prior knowledge of tier capacities—precisely the deployment overhead AIF-Router aims to eliminate. Our research question is whether online learning can autonomously discover and exploit resource heterogeneity from runtime observations alone. Metrics. We report success rate (%), P50/P95 latency (ms), and tier distribution as mean ± standard deviation over 3 runs. 5.2

Performance Results

Table 1 summarizes AIF-Router vs. baseline over the 3 repeated 45-minute runs (mean ± standard deviation). Table 1. Overall performance comparison at 50 RPS. Strategy

Succ. (%)

AIF-Router Baseline

77.9 ± 0.26 2003 ± 119 5318 ± 11 35.8 ± 0.4 30.0 ± 0.4 12.1 ± 0.4 89.4 ± 0.29 3067 ± 33 5268 ± 11 34.0 ± 0.2 32.9 ± 0.3 22.4 ± 0.2

∆ (AIF–Base)

-11.5pp

P50 (ms)

-35%

P95 (ms) Heavy (%) Med. (%)

+1%

+1.8pp

-2.9pp

Lt. (%)

-10.3pp

AIF-Based Adaptive Routing for Edge AI 3500

9

3067ms

P50 Latency (ms)

3000 2500

2003ms

2000 34.7% faster

1500 1000 500 0

AIF-Router

Baseline

Fig. 2. P50 latency comparison. AIF-Router achieves 34.7% lower median latency (2003 ms vs. 3067 ms, p < 0.0001).

Fig. 3. Tier allocation comparison. AIF-Router learns to allocate more requests to the heavy tier (46% vs 38%) after observing performance feedback, while experiencing higher failure rates on unstable edge devices.

Key Findings: – Latency-reliability tradeoff. As illustrated in Figure 2, AIF-Router achieves 34.7% lower median latency (2003ms vs 3067ms, p < 0.0001) but suffers an 11.5 percentage point lower success rate (77.9% vs 89.4%, 29.4σ statistical significance). This reveals a latency-reliability trade-off in our deployment: optimizing for low latency can compromise reliability when edge infrastructure is unstable. – Despite lower overall success, AIF-Router exhibits clear adaptive behavior. Among successful requests only, the tier distribution (Figure 3b) shows AIFRouter allocates 46% to heavy tier vs baseline’s 38%, indicating that Active Inference successfully learns to prefer higher-capacity services in response to latency observations.

10

Wang et al.

– AIF-Router experiences 22.1% unknown/failed requests compared to baseline’s 10.6% (Figure 3a). Investigation reveals that Jetson edge devices (hosting light and medium tiers) experienced frequent pod restarts during testing (65 restarts for light tier over 4 days), explaining the elevated failure rate. This highlights a practical challenge: when adaptive routing learns to prefer lower-latency tiers, it may increase load on already unstable edge devices. – Both strategies show low standard deviation across 3 runs (< 0.3% for success rate, < 120ms for P50 latency), validating the experimental reproducibility and statistical rigor of our evaluation methodology.

5.3

Discussion

State Representation Trade-offs. AIF-Router employs 3-level discretization (low/medium/high) for each state dimension, resulting in a 243-state space. While this coarse granularity may hide finer effects, it provides advantages: (1) noise robustness; (2) fast Bayesian inference at 1-second intervals; (3) improved sample efficiency. This reflects a practical compromise between model expressiveness and computational tractability for online edge orchestration. Preference Model Design. The preference distribution C(o) in AIF-Router is hand-crafted to encode desired outcomes (low latency, high accuracy, low failure rate). While this approach leverages domain knowledge to guide initial exploration, it limits adaptability to evolving operational requirements. Future work should investigate learning the preference model from historical performance data or administrator feedback, enabling the router to automatically discover optimal trade-offs between competing objectives (e.g., cost vs. latency) without manual tuning. Inverse reinforcement learning or preference learning from rankings could provide principled methods to infer the underlying objective function from observed expert routing decisions. Limitations. AIF-Router demonstrates online adaptation but faces challenges: (1) higher workloads may require horizontal scaling, as hardware saturation dominates routing intelligence; (2) edge device instability (frequent pod restarts) led to elevated failure rates, suggesting future work should incorporate service health indicators into the state space. Integrating failure predictors (e.g., predictive models of pod restart likelihood based on resource pressure or thermal conditions) into the observation model would enable proactive avoidance of unstable tiers before failures occur. (3) The current cost model does not account for longer-term action costs such as hardware health degradation or energy consumption. Learning wear-aware policies that factor in device temperature, battery drain on mobile edge nodes, or carbon footprint of cloud resources would enable sustainable orchestration. (4) Comparison against RL-based schedulers (e.g., Decima [14], Gandiva [25]) and other adaptive baselines would further clarify Active Inference’s trade-offs in sample efficiency and robustness.

AIF-Based Adaptive Routing for Edge AI

6

11

Conclusion

We presented AIF-Router, an Active Inference–based framework for adaptive routing across heterogeneous edge AI services. Evaluation with 412K requests showed 34.7% latency reduction (2003 ms vs. 3067 ms, p < 0.0001) but 11.5pp lower success rate due to edge device instability—revealing a latency-reliability tradeoff. Despite infrastructure failures (frequent Jetson pod restarts), AIFRouter autonomously learned to reallocate traffic toward higher-capacity tiers (46% vs. 38% heavy allocation) through online Bayesian learning without offline training. This study demonstrates that Active Inference provides a viable foundation for online decision-making in uncertain edge environments, though future work should integrate service health indicators to improve robustness under infrastructure instability. Acknowledgement This work is supported by the European Union NextGenerationEU/PRTR and CNS2023-144359 financed by MICIU/AEI/10.13039/501100011033. Disclosure of Interests The authors have no competing interests to declare that are relevant to the content of this article.

References 1. Auer, P., Cesa-Bianchi, N., Fischer, P.: Finite-time analysis of the multiarmed bandit problem. Machine Learning 47(2–3), 235–256 (2002) 2. Burns, B., Grant, B., Oppenheimer, D., Brewer, E., Wilkes, J.: Borg, omega, and kubernetes: Lessons learned from three container-management systems over a decade. ACM Queue 14(1), 70–93 (2016) 3. Chen, Y., Alspaugh, S., Katz, R.: Interactive analytical processing in big data systems: A cross-industry study of mapreduce workloads. Proceedings of the VLDB Endowment 5(12), 1802–1813 (2012) 4. Crankshaw, D., Sela, G.I., Mo, X., Zumar, C., Stoica, I., Gonzalez, J., Tumanov, A.: Inferline: Latency-aware provisioning and scaling for prediction serving pipelines. In: Proceedings of the ACM Symposium on Cloud Computing (SoCC) (2020) 5. Crankshaw, D., Wang, X., Zhou, G., Franklin, M.J., Gonzalez, J.E., Stoica, I.: Clipper: A low-latency online prediction serving system. In: USENIX NSDI (2017) 6. Deng, S., Zhao, H., Fang, W., Yin, J., Dustdar, S., Zomaya, A.Y.: Edge intelligence: The confluence of edge computing and artificial intelligence. IEEE Internet of Things Journal 7(8), 7457–7469 (2020) 7. Frazier, P.I.: A tutorial on bayesian optimization (2018) 8. Friston, K., FitzGerald, T., Rigoli, F., Schwartenbeck, P., Pezzulo, G.: Active inference: A process theory. Neural Computation 29(1), 1–49 (2017) 9. Gujarati, A., Karimi, R., Alzayat, S., Hao, W., Kaufmann, A., Vigfusson, Y., Mace, J.: Serving dnns like clockwork: Performance predictability from the bottom up. In: USENIX OSDI (2020)

12

Wang et al.

10. Hellerstein, J.L., Diao, Y., Parekh, S., Tilbury, D.M.: Feedback Control of Computing Systems. Wiley-IEEE Press (2004) 11. Kang, Y., Hauswald, J., Gao, C., Rovinski, A., Mudge, T., Mars, J., Tang, L.: Neurosurgeon: Collaborative intelligence between the cloud and mobile edge. In: Proceedings of the ASPLOS. pp. 615–629 (2017) 12. Lanillos, P., Pages, J., Cheng, G.: Robot self/other distinction: Active inference meets neural networks learning in a mirror. In: Proceedings of the European Conference on Artificial Intelligence (ECAI). pp. 2410–2418 (2020) 13. Mao, H., Alizadeh, M., Menache, I., Kandula, S.: Resource management with deep reinforcement learning. In: Proceedings of the ACM Workshop on Hot Topics in Networks (HotNets). pp. 50–56 (2016) 14. Mao, H., Schwarzkopf, M., Venkatakrishnan, S.B., Meng, Z., Alizadeh, M.: Learning scheduling algorithms for data processing clusters. In: Proceedings of the ACM SIGCOMM Conference. pp. 270–288 (2019) 15. McMahan, B., Moore, E., Ramage, D., Hampson, S., Arcas, B.A.: Communicationefficient learning of deep networks from decentralized data. Proceedings of the 20th International Conference on Artificial Intelligence and Statistics (AISTATS) pp. 1273–1282 (2017) 16. Pahl, C., Jamshidi, P., Zimmermann, O.: Microservices: A systematic mapping study. Journal of Systems and Software 137, 491–507 (2018) 17. Parr, T., Pezzulo, G., Friston, K.J.: Active Inference: The Free Energy Principle in Mind, Brain, and Behavior. MIT Press (2022) 18. Romero, F., Li, Q., Yadwadkar, N.J., Kozyrakis, C.: Infaas: Automated model-less inference serving. In: USENIX ATC. pp. 397–411 (2021) 19. Russo, D.J., Van Roy, B., Kazerouni, A., Osband, I., Wen, Z.: A tutorial on thompson sampling. Foundations and Trends in Machine Learning 11(1), 1–96 (2018) 20. Sedlak, B., Furutanpey, A., Wang, Z., Pujol, V.C., Dustdar, S.: Multi-dimensional Autoscaling of Processing Services: A Comparison of Agent-based Methods (2025) 21. Sedlak, B., Pujol, V.C., Morichetta, A., Donta, P.K., Dustdar, S.: Adaptive Stream Processing on Edge Devices through Active Inference (Sep 2024) 22. Snoek, J., Larochelle, H., Adams, R.P.: Practical bayesian optimization of machine learning algorithms. In: Proceedings of the Advances in Neural Information Processing Systems (NIPS). pp. 2951–2959 (2012) 23. Teerapittayanon, S., McDanel, B., Kung, H.T.: Distributed deep neural networks over the cloud, the edge and end devices. In: Proceedings of the IEEE International Conference on Distributed Computing Systems (ICDCS). pp. 328–339 (2017) 24. Tesauro, G., Jong, N.K., Das, R., Bennani, M.N.: A hybrid reinforcement learning approach to autonomic resource allocation. In: Proceedings of the IEEE International Conference on Autonomic Computing (ICAC). pp. 65–73 (2006) 25. Xiao, W., Bhardwaj, R., Ramjee, R., Sivathanu, M., Kwatra, N., Han, Z., Patel, P., Peng, X., Zhao, H., Zhang, Q., Yang, F., Zhou, L.: Gandiva: Introspective cluster scheduling for deep learning. In: USENIX OSDI. pp. 595–610 (2018) 26. Zhao, N., Liang, J., Dovrolis, C., Liu, M.: Self-adaptive microservice chains with deep reinforcement learning. In: IEEE/ACM International Symposium on Quality of Service (IWQoS). pp. 1–10 (2019) 27. Zhao, T., Zhou, S., Guo, X., Niu, Z.: Tasks scheduling and resource allocation in heterogeneous cloud for delay-bounded mobile edge computing. In: Proceedings of the IEEE International Conference on Communications (ICC). pp. 1–7 (2017) 28. Zhou, Z., Chen, X., Li, E., Zeng, L., Luo, K., Zhang, J.: Edge intelligence: Paving the last mile of artificial intelligence with edge computing. Proceedings of the IEEE 107(8), 1738–1762 (2019)

Record · ID 120477 · SHA-256 60e7259e06104b45
Conceptio Open Knowledge Archive — every document is proof-bundled with source, license, and retrieval metadata.