我正试图在一个AI上工作,它构成了可能获胜的。然而,我不知道我应该如何对待这种方式的人工智能。例如,我制作了简单的人工智能,可以检测人类和动物之间的差异,但这个人工智能要复杂得多。
我应该使用哪种人工智能模型?,我不认为线性回归和K-最近邻会在这种情况下起作用。我试着用神经网络做实验,但我对它们没有任何经验。
让事情变得更清楚一些。
市场=下注的一种方式,例如:主场赢,客场赢,两队得分
我也有一个集合,其中包含有关的信息,联盟的预测是最准确的。
,我将如何创建这个AI。所有的数据都以一种非常体面的形式出现,我只是不知道如何开始。例如,什么AI模型使用,什么输入使用。另外,我将如何保存AI模型,并使用进入的新数据对其进行培训?(我有多个cron作业,在MongoDB中插入数据)
注意:
发布于 2019-12-08 22:04:34
因为没有“正确”的方法可以做到这一点,我将告诉您最通用的方法。您首先要弄清楚的是模型的目标:
- convert categorical values using one-hot encoding.
- standardise between 0~1 the values of numeric features.
- Remove all of the non relevant values: that has very low [entropy](https://en.wikipedia.org/wiki/Entropy_(information_theory%29) over the whole dataset or very high entropy within each of the labels.
- try to extract logical features from the raw data that might help the classifier distinguish between the classes.
https://stackoverflow.com/questions/59239239
复制相似问题