REVIEW 3 major objections 7 minor 50 references
Goal-Oriented Skill Abstraction for Offline Multi-Task Reinforcement Learning
T0 review · 3 major / 7 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read GO-Skill claims that distilling offline trajectories into a discrete library of goal-oriented skills and selecting among them with a hierarchical policy improves average episode return on MetaWorld relative to action-level…
desk verdict A solid empirical skill-abstraction method with a real ambiguity in the state-difference representation and some evaluation gaps, but worth a serious referee. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the goal-oriented skill, defined as a fixed-horizon state transition $s_{t+H} - s_t$ encoded by a goal encoder $G$ into an embedding $z_{t,H} = G(s_{t+H} - s_t)$, then quantized against a codebook $\mathcal{Z} = \{\hat{z}^{(1)}, \ldots, \hat{z}^{(M)}\}$ via vector quantization. This codebook is the discrete skill library; a skill decoder $P$ reconstructs actions from the skill embedding plus the reached-goal history, and a skill-based decision transformer selects skill indices at $H$-step intervals. The goal representation excludes rewards and action sequences, which the paper argues makes skills transferable across tasks whose reward functions differ despite identical trajectories.
What would settle it
Train GO-Skill on a pair of MetaWorld tasks where the same state displacement corresponds to different required contacts (for example, a task that needs a grasp and a task that needs a push from the same start and end positions), and check whether the learned codebook assigns the same skill index to both sub-trajectories and whether evaluation return drops relative to a model that includes object identity in the goal. If performance does not degrade, the state-difference assumption is sufficient for that setting; if it does, the claim that state differences are task-agnostic skills is falsified.
Extended reading notes
Core claim
The paper's central discovery is that goal-oriented skill abstraction—encoding an $H$-horizon behavior by the change in state it produces rather than by its action sequence—lets an offline agent extract reusable, task-agnostic skills from mixed-quality multi-task data, and that a hierarchical policy acting in the resulting discrete skill space solves more tasks better than action-level sequence models. The authors show that a Transformer-based skill decoder conditioned on a quantized goal embedding can reproduce the actions of an $H$-step sub-trajectory, and that a high-level skill-based decision transformer can learn to chain these skills. On MetaWorld MT30 and MT50, GO-Skill achieves the highest average episode return among the compared offline multi-task methods in both Near-Optimal and Sub-Optimal data settings, and its margin over baselines widens from 30 to 50 tasks. The evidence used to support this includes ablations showing that removing the reached-goal history, replacing discrete vector quantization with a continuous skill space, or replacing goal-based encoding with action-based encoding each lowers performance.
Load-bearing premise
The method assumes that the state difference over a fixed horizon is a sufficient, task-agnostic description of a reusable skill; if two behaviors with the same state difference require different actions or different task context, the skill codebook and the policy built on it can be misspecified.
Editorial extensions
If this is right
- GO-Skill reports higher average episode return than six offline multi-task baselines on MetaWorld MT30 and MT50 under both Near-Optimal and Sub-Optimal data, and the advantage grows as the task count increases.
- The method extracts useful skill fragments from sub-optimal trajectories, so lower-quality offline data still yields transferable skills for other tasks.
- Ablations show that each component contributes: reached-goal history, discrete vector quantization, goal-based encoding, resampling during skill enhancement, and focal loss during policy learning all matter for the reported performance.
- In the ML45 fine-tuning setup, GO-Skill reaches higher episode return after only 3,000 fine-tuning iterations on five new tasks than MTDT and PromptDT.
- Because the skill-based policy makes decisions at $H$-step intervals instead of every time step, the decision horizon shortens, which the paper argues simplifies policy learning and improves sample efficiency.
Reading between the lines
- Beyond the paper, the state-difference goal representation could be tested against goal representations that include object identity or contact features; the paper itself notes that more robust goal-oriented representations remain an open direction.
- A testable extension is whether the same learned skill codebook transfers across different benchmarks or embodiments without fine-tuning, since the paper only demonstrates re-use through fine-tuning within MetaWorld.
- Because the paper identifies the predefined skill set size and skill horizon as limitations, an adaptive or growing codebook is a natural follow-up that could reduce sensitivity to these two hyper-parameters.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes GO-Skill, a hierarchical offline multi-task reinforcement learning method. A skill model encodes H-step sub-trajectories through the state difference s_{t+H} - s_t, maps them to a latent goal embedding, and vector-quantizes these embeddings into a discrete skill codebook. A Transformer-based skill decoder reconstructs actions conditioned on the skill embedding, the state history, and the reached-goal history, and a skill enhancement phase resamples skill classes to address class imbalance. A high-level skill-based Decision Transformer, trained with focal loss, selects skill indices at intervals of H steps. The method is evaluated on MetaWorld MT30/MT50 with near-optimal and sub-optimal offline datasets, compared against six baselines, and ablated on its components and hyperparameters; a fine-tuning experiment on ML45 is also reported.
Significance. If the performance claims hold, the paper makes a useful contribution by showing that state-difference-based skill abstraction with vector quantization can serve as an effective hierarchical inductive bias for offline multi-task RL, with strong aggregate results on MT30/MT50. The evaluation is broad and includes five seeds, component ablations, hyperparameter sweeps, skill visualizations, and per-task results for the proposed method. The method is empirical rather than a theoretical derivation, so the main claims are falsifiable benchmark comparisons rather than parameter-free predictions. The paper also provides a clear and actionable design: reward-free goal encoding, discrete codebook, class-imbalance mitigation, and a Prompt-DT-style high-level policy.
major comments (3)
- [Section 5.2, Figure 5] The headline claim that GO-Skill achieves superior performance compared to existing state-of-the-art approaches is not supported by any significance testing. The reported error bars overlap for some of the comparisons, particularly in the MT30 Sub-Optimal setting, and only five seeds are used; Table 6 shows very large per-task standard deviations (for example, assembly-v2 at 2366.7±1082.3 and pick-place-v2 at 358.6±409.1 in the Near-Optimal setting). The aggregate mean differences may therefore not be statistically reliable. Please add paired significance tests across tasks (for example, a Wilcoxon signed-rank test of GO-Skill against each baseline per task) or bootstrap confidence intervals over tasks and seeds, and provide per-task results for all baselines rather than only for GO-Skill.
- [Section 3.1, Equations (4) and (7)] The skill representation is a potential misspecification risk that is load-bearing for the claimed transfer mechanism. The goal encoder maps the H-horizon sub-trajectory to only s_{t+H} - s_t, and at the first step of a skill the decoder conditions on the skill code, the current state, and an empty reached-goal and action history. Consequently, two H-step segments with the same start state and the same endpoint difference but different intermediate states or actions receive the same skill code, and the MSE action-reconstruction objective in Algorithm 1 must fit a single action distribution to potentially incompatible behaviors. The paper's motivation that different action sequences can lead to the same transfer outcome is only one side of this conflation. The AE ablation in Table 1, row 4, provides a relevant check, but it is confounded because that row also removes reached-goal history. Please add a controlled comparison in which both the goal-based and action-based encoders are evaluated with reached-goal history, and report codebook purity or per-skill action-reconstruction error to demonstrate that the learned skill codes are behaviorally coherent.
- [Section 5.3, Figure 6] The hyperparameters H, M, |Z|, and t_e are selected via ablations on the same MT50 Near-Optimal setup that is subsequently used for the main results, meaning the reported margins over baselines include selection on the evaluation tasks. This is a particular concern because the differences over the best baselines in Figure 5 are not large relative to the seed noise. Please either fix the hyperparameters before evaluating on the final task sets, report results on a held-out validation split, or show that the relative ranking of GO-Skill against the baselines is stable across the swept hyperparameter range.
minor comments (7)
- [Tables 1 and 2] The checkmark and cross symbols in the ablation tables are not defined in the captions; please add an explicit legend.
- [Algorithm 2] The symbol T' is used in the focal loss computation before it is defined; clarify that it denotes the decision point at which the skill index is predicted.
- [Figure 5] Because the error bars overlap and the plotted values are difficult to read, please also provide a numeric table of mean and standard deviation for every method and setting.
- [Section 5.2, MH-GO-Skill] The multi-head variant of GO-Skill is described only briefly; please specify the number of heads, where they are inserted in the skill model, and how they are trained and combined.
- [Section 5.5, Figure 8] The fine-tuning result is presented as single learning curves without error bars or per-task breakdowns; please report mean and standard deviation over seeds and a table for the five new tasks.
- [Conclusion and Discussion] The Limitations paragraph identifies the reliance on a predefined skill horizon and skill set size, but it does not discuss the sufficiency or ambiguity of the state-difference representation in Section 3.1; acknowledging this would help readers calibrate the scope of the claims.
- [Reproducibility] The paper does not include a code availability statement; releasing the implementation and random seeds would substantially aid reproducibility.
Circularity Check
No significant circularity: GO-Skill's effectiveness is established by external benchmarks, and its skill-abstraction design choices are not fitted inputs renamed as predictions.
full rationale
GO-Skill is an empirical method, not a derivation. The central claim—superior performance on MetaWorld MT30/MT50 under Near-Optimal and Sub-Optimal data—is evaluated against external baselines (MTDT, PromptDT, MTDIFF-P, HarmoDT, etc.), so the outcome is not an input to the method. The goal-oriented skill representation in Eq. 4 (zt,H = G(st+H − st)) is a design choice, not a fitted parameter whose value is later reported as a prediction. The skill codebook is learned by vector quantization, the decoder is trained with an action-reconstruction MSE loss, and the high-level policy selects discrete skill indices; each stage is a genuine learning step rather than a rename of the data. Self-citations to He et al. (2024a, 2024b) appear only in related work and in stating the common MTRL setting, and they are not load-bearing for the paper's claims. The ablation against an action-based skill encoder (Table 1) and the external benchmark comparisons provide independent evidence for the design choices. Therefore, no circular step can be exhibited from the paper's equations or citations.
Assumptions & free parameters
free parameters (6)
- Skill horizon H =
10
- Codebook size M =
16
- Goal embedding size |Z| =
64
- Skill extraction iterations t_e =
30000 (30%)
- Focal loss focusing parameter gamma =
2
- VQ loss weight alpha =
not specified
assumptions (4)
- domain assumption All tasks in the offline MTRL setting share the same state and action spaces.
- domain assumption The state difference over an H-horizon is a sufficient and task-agnostic representation of a reusable skill.
- domain assumption A fixed finite codebook (M=16) can represent all behavior needed for the task set.
- standard math The stop-gradient VQ loss (Eq. 3) from Van Den Oord et al. (2017) trains a stable discrete codebook.
Cite this review
Pith. "Pith review of Goal-Oriented Skill Abstraction for Offline Multi-Task Reinforcement Learning." pith.science (2026). https://pith.science/paper/YZXSX3XY
@misc{pith2026250706628,
author = {Pith},
title = {Pith review of: Goal-Oriented Skill Abstraction for Offline Multi-Task Reinforcement Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/YZXSX3XY}},
note = {Machine review of arXiv:2507.06628}
}
read the original abstract
Offline multi-task reinforcement learning aims to learn a unified policy capable of solving multiple tasks using only pre-collected task-mixed datasets, without requiring any online interaction with the environment. However, it faces significant challenges in effectively sharing knowledge across tasks. Inspired by the efficient knowledge abstraction observed in human learning, we propose Goal-Oriented Skill Abstraction (GO-Skill), a novel approach designed to extract and utilize reusable skills to enhance knowledge transfer and task performance. Our approach uncovers reusable skills through a goal-oriented skill extraction process and leverages vector quantization to construct a discrete skill library. To mitigate class imbalances between broadly applicable and task-specific skills, we introduce a skill enhancement phase to refine the extracted skills. Furthermore, we integrate these skills using hierarchical policy learning, enabling the construction of a high-level policy that dynamically orchestrates discrete skills to accomplish specific tasks. Extensive experiments on diverse robotic manipulation tasks within the MetaWorld benchmark demonstrate the effectiveness and versatility of GO-Skill.
Figures
Figures from the paper (5 more)
Reference graph
Works this paper leans on
-
[1]
Bellman, R. Dynamic programming. Science, 153 0 (3731): 0 34--37, 1966
work page 1966
-
[2]
End-to-end object detection with transformers
Carion, N., Massa, F., Synnaeve, G., Usunier, N., Kirillov, A., and Zagoruyko, S. End-to-end object detection with transformers. In Proceedings of European Conference on Computer Vision, pp.\ 213--229, 2020
work page 2020
-
[3]
Caruana, R. Multitask learning. Machine Learning, 28: 0 41--75, 1997
work page 1997
-
[4]
Offline reinforcement learning via high-fidelity generative behavior modeling
Chen, H., Lu, C., Ying, C., Su, H., and Zhu, J. Offline reinforcement learning via high-fidelity generative behavior modeling. In Proceedings of International Conference on Learning Representations, pp.\ 1--12, 2023
work page 2023
-
[5]
Decision transformer: Reinforcement learning via sequence modeling
Chen, L., Lu, K., Rajeswaran, A., Lee, K., Grover, A., Laskin, M., Abbeel, P., Srinivas, A., and Mordatch, I. Decision transformer: Reinforcement learning via sequence modeling. In Advances in Neural Information Processing Systems, pp.\ 15084--15097, 2021
work page 2021
-
[6]
Gradnorm: Gradient normalization for adaptive loss balancing in deep multitask networks
Chen, Z., Badrinarayanan, V., Lee, C.-Y., and Rabinovich, A. Gradnorm: Gradient normalization for adaptive loss balancing in deep multitask networks. In Proceedings of International Conference on Machine Learning, pp.\ 794--803, 2018
work page 2018
-
[7]
Sharing knowledge in multi-task deep reinforcement learning
D'Eramo, C., Tateo, D., Bonarini, A., Restelli, M., and Peters, J. Sharing knowledge in multi-task deep reinforcement learning. In Proceedings of International Conference on Learning Representations, pp.\ 1--11, 2020
work page 2020
-
[8]
BERT : Pre-training of deep bidirectional transformers for language understanding
Devlin, J., Chang, M.-W., Lee, K., and Toutanova, K. BERT : Pre-training of deep bidirectional transformers for language understanding. In Proceedings of the Conference of the North A merican Chapter of the Association for Computational Linguistics: Human Language Technologies , pp.\ 4171--4186, 2019
work page 2019
Show all 50 references
-
[9]
Behavior retrieval: Few-shot imitation learning by querying unlabeled datasets
Du, M., Nair, S., Sadigh, D., and Finn, C. Behavior retrieval: Few-shot imitation learning by querying unlabeled datasets. CoRR, abs/2304.08742, 2023
2023 arXiv
-
[10]
Off-policy deep reinforcement learning without exploration
Fujimoto, S., Meger, D., and Precup, D. Off-policy deep reinforcement learning without exploration. In Proceedings of International Conference on Machine Learning, pp.\ 2052--2062, 2019
2019
-
[11]
Offline rl policies should be trained to be adaptive
Ghosh, D., Ajay, A., Agrawal, P., and Levine, S. Offline rl policies should be trained to be adaptive. In Proceedings of International Conference on Machine Learning, pp.\ 7513--7530, 2022
2022
-
[12]
D., Avoli, M., and Pineau, J
Guez, A., Vincent, R. D., Avoli, M., and Pineau, J. Adaptive treatment of epilepsy via batch-mode reinforcement learning. In Proceedings of the AAAI Conference on Artificial Intelligence, pp.\ 1671--1678, 2008
2008
-
[13]
Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor
Haarnoja, T., Zhou, A., Abbeel, P., and Levine, S. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. In Proceedings of International Conference on Machine Learning, pp.\ 1856--1865, 2018
2018
-
[14]
Hierarchical few-shot imitation with skill transition models
Hakhamaneshi, K., Zhao, R., Zhan, A., Abbeel, P., and Laskin, M. Hierarchical few-shot imitation with skill transition models. In Proceedings of International Conference on Learning Representations, pp.\ 1--12, 2021
2021
-
[15]
Diffusion model is an effective planner and data synthesizer for multi-task reinforcement learning
He, H., Bai, C., Xu, K., Yang, Z., Zhang, W., Wang, D., Zhao, B., and Li, X. Diffusion model is an effective planner and data synthesizer for multi-task reinforcement learning. In Advances in Neural Information Processing Systems, pp.\ 64896--64917, 2023
2023
-
[16]
Efficient multi-task reinforcement learning with cross-task policy guidance
He, J., Li, K., Zang, Y., Fu, H., Fu, Q., Xing, J., and Cheng, J. Efficient multi-task reinforcement learning with cross-task policy guidance. In Advances in Neural Information Processing Systems, pp.\ 117997--118024, 2024 a
2024
-
[17]
Not all tasks are equally difficult: Multi-task deep reinforcement learning with dynamic depth routing
He, J., Li, K., Zang, Y., Fu, H., Fu, Q., Xing, J., and Cheng, J. Not all tasks are equally difficult: Multi-task deep reinforcement learning with dynamic depth routing. In Proceedings of the AAAI Conference on Artificial Intelligence, pp.\ 12376--12384, 2024 b
2024
-
[18]
Harmodt: Harmony multi-task decision transformer for offline reinforcement learning
Hu, S., Fan, Z., Shen, L., Zhang, Y., Wang, Y., and Tao, D. Harmodt: Harmony multi-task decision transformer for offline reinforcement learning. In Proceedings of International Conference on Machine Learning, pp.\ 19182--19197, 2024
2024
-
[19]
B., and Levine, S
Janner, M., Du, Y., Tenenbaum, J. B., and Levine, S. Planning with diffusion for flexible behavior synthesis. In Proceedings of International Conference on Machine Learning, pp.\ 9902--9915, 2022
2022
-
[20]
Scalable deep reinforcement learning for vision-based robotic manipulation
Kalashnikov, D., Irpan, A., Pastor, P., Ibarz, J., Herzog, A., Jang, E., Quillen, D., Holly, E., Kalakrishnan, M., Vanhoucke, V., and Levine, S. Scalable deep reinforcement learning for vision-based robotic manipulation. In Proceedings of Conference on Robot Learning, pp.\ 651...
2018
-
[21]
Mt-opt: Continuous multi-task robotic reinforcement learning at scale
Kalashnikov, D., Varley, J., Chebotar, Y., Swanson, B., Jonschkowski, R., Finn, C., Levine, S., and Hausman, K. Mt-opt: Continuous multi-task robotic reinforcement learning at scale. CoRR, abs/2104.08212, 2021
2021 arXiv
-
[22]
W., Zhang, H., Subramanian, J., Fatemi, M., and Ghassemi, M
Killian, T. W., Zhang, H., Subramanian, J., Fatemi, M., and Ghassemi, M. An empirical study of representation learning for reinforcement learning in healthcare. CoRR, abs/2011.11235, 2020
2011 arXiv
-
[23]
Offline reinforcement learning with implicit q-learning
Kostrikov, I., Nair, A., and Levine, S. Offline reinforcement learning with implicit q-learning. In Proceedings of International Conference on Learning Representations, pp.\ 1--11, 2021
2021
-
[24]
Conservative q-learning for offline reinforcement learning
Kumar, A., Zhou, A., Tucker, G., and Levine, S. Conservative q-learning for offline reinforcement learning. In Advances in Neural Information Processing Systems, pp.\ 1179--1191, 2020
2020
-
[25]
S., Lee, L., Freeman, D., Guadarrama, S., Fischer, I., Xu, W., Jang, E., Michalewski, H., et al
Lee, K.-H., Nachum, O., Yang, M. S., Lee, L., Freeman, D., Guadarrama, S., Fischer, I., Xu, W., Jang, E., Michalewski, H., et al. Multi-game decision transformers. In Advances in Neural Information Processing Systems, pp.\ 27921--27936, 2022
2022
-
[26]
End-to-end training of deep visuomotor policies
Levine, S., Finn, C., Darrell, T., and Abbeel, P. End-to-end training of deep visuomotor policies. The Journal of Machine Learning Research, 17 0 (1): 0 1334--1373, 2016
2016
-
[27]
Offline reinforcement learning: Tutorial, review, and perspectives on open problems
Levine, S., Kumar, A., Tucker, G., and Fu, J. Offline reinforcement learning: Tutorial, review, and perspectives on open problems. CoRR, abs/2005.01643, 2020
2005 arXiv
-
[28]
P., Hunt, J
Lillicrap, T. P., Hunt, J. J., Pritzel, A., Heess, N., Erez, T., Tassa, Y., Silver, D., and Wierstra, D. Continuous control with deep reinforcement learning. In Proceedings of International Conference on Learning Representations, pp.\ 1--10, 2016
2016
-
[29]
Focal loss for dense object detection
Lin, T.-Y., Goyal, P., Girshick, R., He, K., and Dollar, P. Focal loss for dense object detection. In Proceedings of the IEEE International Conference on Computer Vision, pp.\ 2999--3007, 2017
2017
-
[30]
Conflict-averse gradient descent for multi-task learning
Liu, B., Liu, X., Jin, X., Stone, P., and Liu, Q. Conflict-averse gradient descent for multi-task learning. In Advances in Neural Information Processing Systems, pp.\ 18878--18890, 2021
2021
-
[31]
J., Kumar, V., Zhang, A., Bastani, O., and Jayaraman, D
Ma, Y. J., Kumar, V., Zhang, A., Bastani, O., and Jayaraman, D. Liv: language-image representations and rewards for robotic control. In Proceedings of International Conference on Machine Learning, pp.\ 23301--23320, 2023
2023
-
[32]
A., Veness, J., Bellemare, M
Mnih, V., Kavukcuoglu, K., Silver, D., Rusu, A. A., Veness, J., Bellemare, M. G., Graves, A., Riedmiller, M. A., Fidjeland, A., Ostrovski, G., Petersen, S., Beattie, C., Sadik, A., Antonoglou, I., King, H., Kumaran, D., Wierstra, D., Legg, S., and Hassabis, D. Human-level cont...
2015
-
[33]
R3m: a universal visual representation for robot manipulation
Nair, S., Rajeswaran, A., Kumar, V., Finn, C., and Gupta, A. R3m: a universal visual representation for robot manipulation. In Proceedings of Conference on Robot Learning, pp.\ 892--909, 2022
2022
-
[34]
Learning and retrieval from prior data for skill-based imitation learning
Nasiriany, S., Gao, T., Mandlekar, A., and Zhu, Y. Learning and retrieval from prior data for skill-based imitation learning. In Proceedings of Conference on Robot Learning, pp.\ 2181--2204, 2023
2023
-
[35]
Accelerating reinforcement learning with learned skill priors
Pertsch, K., Lee, Y., and Lim, J. Accelerating reinforcement learning with learned skill priors. In Proceedings of Conference on Robot Learning, pp.\ 188--204, 2021
2021
-
[36]
Pertsch, K., Lee, Y., Wu, Y., and Lim, J. J. Demonstration-guided reinforcement learning with learned skills. In Proceedings of Conference on Robot Learning, pp.\ 729--739, 2022
2022
-
[37]
Puterman, M. L. Markov Decision Processes: Discrete Stochastic Dynamic Programming. John Wiley & Sons, 2014
2014
-
[38]
Hierarchical and interpretable skill acquisition in multi-task reinforcement learning
Shu, T., Xiong, C., and Socher, R. Hierarchical and interpretable skill acquisition in multi-task reinforcement learning. In Proceedings of International Conference on Learning Representations, pp.\ 1--11, 2018
2018
-
[39]
Multi-task reinforcement learning with context-based representations
Sodhani, S., Zhang, A., and Pineau, J. Multi-task reinforcement learning with context-based representations. In Proceedings of International Conference on Machine Learning, pp.\ 9767--9779, 2021
2021
-
[40]
MuJoCo : A physics engine for model-based control
Todorov, E., Erez, T., and Tassa, Y. MuJoCo : A physics engine for model-based control. In Proceedings of IEEE/RSJ International Conference on Intelligent Robots and Systems, pp.\ 5026--5033, 2012
2012
-
[41]
Neural discrete representation learning
Van Den Oord, A., Vinyals, O., et al. Neural discrete representation learning. In Advances in Neural Information Processing Systems, pp.\ 6306--6315, 2017
2017
-
[42]
N., Kaiser, L
Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A. N., Kaiser, L. u., and Polosukhin, I. Attention is all you need. In Advances in Neural Information Processing Systems, pp.\ 5998--6008, 2017
2017
-
[43]
J., and Zhou, M
Wang, Z., Hunt, J. J., and Zhou, M. Diffusion policies as an expressive policy class for offline reinforcement learning. In Proceedings of International Conference on Learning Representations, pp.\ 1--12, 2023
2023
-
[44]
Prompting decision transformer for few-shot policy generalization
Xu, M., Shen, Y., Zhang, S., Lu, Y., Zhao, D., Tenenbaum, J., and Gan, C. Prompting decision transformer for few-shot policy generalization. In Proceedings of International Conference on Machine Learning, pp.\ 24631--24645, 2022
2022
-
[45]
Q-learning decision transformer: Leveraging dynamic programming for conditional sequence modelling in offline rl
Yamagata, T., Khalil, A., and Santos-Rodriguez, R. Q-learning decision transformer: Leveraging dynamic programming for conditional sequence modelling in offline rl. In Proceedings of International Conference on Machine Learning, pp.\ 38989--39007, 2023
2023
-
[46]
Multi-task reinforcement learning with soft modularization
Yang, R., Xu, H., Wu, Y., and Wang, X. Multi-task reinforcement learning with soft modularization. In Advances in Neural Information Processing Systems, pp.\ 4767--4777, 2020
2020
-
[47]
Mastering complex control in MOBA games with deep reinforcement learning
Ye, D., Liu, Z., Sun, M., Shi, B., Zhao, P., Wu, H., Yu, H., Yang, S., Wu, X., Guo, Q., Chen, Q., Yin, Y., Zhang, H., Shi, T., Wang, L., Fu, Q., Yang, W., and Huang, L. Mastering complex control in MOBA games with deep reinforcement learning. In Proceedings of the AAAI Confere...
2020
-
[48]
Gradient surgery for multi-task learning
Yu, T., Kumar, S., Gupta, A., Levine, S., Hausman, K., and Finn, C. Gradient surgery for multi-task learning. In Advances in Neural Information Processing Systems, pp.\ 5824--5836, 2020 a
2020
-
[49]
Meta-World : A benchmark and evaluation for multi-task and meta reinforcement learning
Yu, T., Quillen, D., He, Z., Julian, R., Hausman, K., Finn, C., and Levine, S. Meta-World : A benchmark and evaluation for multi-task and meta reinforcement learning. In Proceedings of the Conference on Robot Learning, pp.\ 1094--1100, 2020 b
2020
-
[50]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.