gpt4 book ai didi

vowpalwabbit - 如何让vovpal wabbit 使用更多的观察

转载 作者:行者123 更新时间:2023-12-04 04:00:11 30 4
gpt4 key购买 nike

我是 vawpal wabbit 的新手,所以有一些关于它的问题。

我将数据集传递给 vw 并拟合模型并获得样本内预测,使用 -f 保存模型。到现在为止还挺好。我知道如何使用模型并对不同的数据集进行预测。但我想知道如何向模型添加更多观察并更新它。

主要目标:使用一些数据块首先让 vw 在线学习,然后使用该模型来预测一些数据。然后使用新数据更新模型。然后使用更新的数据来预测另一个新的观察结果,这个过程应该继续下去。

正如我所说,我是一个新手,所以请尽量原谅这个问题的琐碎

最佳答案

vw -i existing.model -f new.model more_observations.dat

助记符:
  • -i初始
  • -f最后

  • 您甚至可以在 -i 中使用相同的模型文件名。和 -f更新“就地”,因为它不是真的就地。模型替换以原子方式在运行结束时发生(将临时文件重命名为最终文件),如下面的 strace 所示。输出(添加注释):
    $ strace -e open,close,rename vw --quiet -i zz.model -f zz.model f20-315.tt.gz
    # loading the initial (-i zz.model) model into memory
    open("zz.model", O_RDONLY) = 3
    # done loading, so we can close it
    close(3) = 0
    # Now reading the data-set and learning in memory
    open("f20-315.tt.gz", O_RDONLY) = 3
    # data read complete. write the updated model into a temporary file
    open("zz.model.writing", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 4
    close(4) = 0
    # and rename atomically to the final (-f zz.model) model file
    rename("zz.model.writing", "zz.model") = 0
    ...
    close(4) = 0
    close(3) = 0
    +++ exited with 0 +++

    关于vowpalwabbit - 如何让vovpal wabbit 使用更多的观察,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31310201/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com