我们每周对我们的产品和 我们要求5种产品,他选择2种收藏夹。
我想知道brain.js如何了解这些选择,并为我提供在先前研究的基础上进行下一步研究的可能性。
研究链接: https://towardsdatascience.com/probability-fundamentals-of-machine-learning-part-1-a156b4703e69 https://towardsdatascience.com/machine-learning-probability-statistics-f830f8c09326
Json
{
"products" : [
{
"id": 1,
"name": "Product 1"
},
{
"id": 2,
"name": "Product 2"
},
{
"id": 3,
"name": "Product 3"
},
{
"id": 4,
"name": "Product 4"
},
{
"id": 5,
"name": "Product 5"
}
],
"data" : [
{
"choice": [1, 2]
},
{
"choice": [1, 5]
},
{
"choice": [3, 5]
},
{
"choice": [1, 4]
},
{
"choice": [4, 5]
},
{
"choice": [1, 2]
},
{
"choice": [1, 3]
},
{
"choice": [2, 5]
}
]
}
**我希望brain.js向我展示调查9中最有可能选择哪些产品? **