如何在 BSV 上训练人工智能模型

Posted sCrypt 智能合约

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在 BSV 上训练人工智能模型相关的知识,希望对你有一定的参考价值。

之前,我们已经实现了一个单层感知器,可以在 BSV 上持续训练。当数据集很大并且需要多次迭代才能找到所需的权重时,这很快就会变得非常昂贵。

感知器

我们制定了外包训练的合约。这是一项公共赏金,任何提供正确权重的人都可以获得奖赏,这些权重可以使预测与所有训练数据集输入的输出相匹配。计算密集型的训练是在链下完成的,合约只验证训练是有效的,因此在 BSV 上训练感知器的成本效益显着提高。

contract Perceptron 
	// sample size
	static const int N = 100000;

	// training dataset
	// inputs
	Input[N] inputs;
	// outputs
	Output[N] outputs;

	// prediction for the i-th input
	function predict(int heightWeight, int weightWeight, int bias, int i) : int 
		int sum = bias;
		sum += this.inputs[i].height * heightWeight + this.inputs[i].weight * weightWeight;
		return stepActivate(sum);
	

	// whoever can find the correct weights and bias for the training dataset can take the bounty
	public function main(int heightWeight, int weightWeight, int bias) 
		// every dataset must match
		loop (N) : i 
			int prediction = this.predict(heightWeight, weightWeight, bias, i);
			// prediction must match actual
			require(this.outputs[i] == prediction);
		

        require(true);
    

	// binary step function
	static function stepActivate(int sum): int 
		return (sum >= 0 ? 1 : 0);
	

感知器外包合约

以上是关于如何在 BSV 上训练人工智能模型的主要内容,如果未能解决你的问题,请参考以下文章

BSV 上用于通用计算的隐私非交互式赏金

在BSV上运行深度神经网络

在BSV上运行深度神经网络

BSV 上基于智能合约的众筹

如何将PaddleDetection模型在树莓派4B上部署?

单层感知器