python 预测python中的颜色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 预测python中的颜色相关的知识,希望对你有一定的参考价值。

#object for predicting color sequences.

class ColorPredictor:
    
    def __init__(self, *colors):
        self.memo = []
        self.colors = set(colors)
        self.colorcount = {elem:0 for elem in colors}
    def __repr__(self):
        return str(self.colorcount)
    def read(self, elem):
        if elem not in self.colors:
            raise TypeError("Invalid color")
        self.memo.append(elem)
        self.colorcount[elem] += 1
        
    def readstring(self, string):
        for elem in string.split(" "):
            self.read(elem)
    def predict(self):
        pass

以上是关于python 预测python中的颜色的主要内容,如果未能解决你的问题,请参考以下文章

Opencv Python卡尔曼滤波器预测结果查询

使用python中的Prophet预测每个类别的值

决策树:python中的预测概率成反比

Python 是不是有类似于 R 包预测中的 nnetar 的模型?

python中的SVM(支持向量机)总是给出相同的预测

训练 LSTM 神经网络以预测 pybrain、python 中的时间序列