如何从有限列表中传递元素作为输入?

问题描述 投票:0回答:1

我有“石头剪刀布”游戏的状态列表。 我计划对这些类别进行编码,如下所示:

[1, 0, 0] - rock 
[0, 1, 0] - paper 
[0, 0, 1] - Rscissors

有方便的自动方式吗?

我使用了Embedding层,但我不确定它是否合适。

python deep-learning pytorch ml
1个回答
0
投票
index = 2
categories_length = 3

tensor = torch.nn.functional.one_hot(
    torch.LongTensor([index]),
    categories_length,
)
© www.soinside.com 2019 - 2024. All rights reserved.