Memoisation – 伯努利数

huangapple go评论102阅读模式
英文:

Memoisation - Bernoulli numbers

问题

我理解你只需要对代码进行翻译,以下是代码的翻译部分:

  1. from fractions import Fraction
  2. from scipy.special import comb
  3. import numpy as np
  4. # 缓存
  5. bernoulli_cache = {}
  6. def bernoulli(n: float):
  7. # 检查输入,如果存在则返回值
  8. if n in bernoulli_cache:
  9. return bernoulli_cache[n]
  10. # 当输入为0或1时
  11. if n == 0:
  12. value = Fraction(1)
  13. else:
  14. value = Fraction(1)
  15. for k in range(n):
  16. value -= Fraction(comb(n, k)) * Fraction(bernoulli(k), (n - k + 1))
  17. # 写入缓存
  18. bernoulli_cache[n] = value
  19. # 分数部分用于输出
  20. numerator = value.numerator
  21. denominator = value.denominator
  22. return numerator, denominator
  23. # 测试是否有效 - 缓存中已有部分
  24. bernoulli_cache = {}
  25. bernoulli(0) # 1
  26. bernoulli(1) # 1/2
  27. bernoulli(2) # 1/6
  28. bernoulli(3) # 0
  29. bernoulli(4) # −1/30
  30. bernoulli(5) # 0
  31. bernoulli(6) # 1/42
  32. bernoulli(7) # 0
  33. bernoulli(8) # -1/30
  34. # 这个不会有效 - 缓存中没有部分
  35. bernoulli_cache = {}
  36. bernoulli(8) # -1/30

希望这对你有所帮助!

英文:

I am trying to compute some Bernoulli numbers and am trying to use memoisation. In the example below, I can get the Bernoulli number for 8 when I run 1-7 before it, but not if the cache is clear. What changes would I need to make to run it when the cache is clear?

  1. from fractions import Fraction
  2. from scipy.special import comb
  3. import numpy as np
  4. # memoisation
  5. bernoulli_cache = {}
  6. def bernoulli(n: float):
  7. # check input, if it exists, return value
  8. if n in bernoulli_cache:
  9. return bernoulli_cache[n]
  10. # when input is 0 or 1
  11. if n == 0:
  12. value = Fraction(1)
  13. else:
  14. value = Fraction(1)
  15. for k in range(n):
  16. value -= Fraction(comb(n, k)) * Fraction(bernoulli(k), (n - k + 1))
  17. # write to cache
  18. bernoulli_cache[n] = value
  19. # fraction parts for output
  20. numerator = value.numerator
  21. denominator = value.denominator
  22. return numerator, denominator
  23. # test this works- bits in cache aleady
  24. bernoulli_cache = {}
  25. bernoulli(0) # 1
  26. bernoulli(1) # 1/2
  27. bernoulli(2) # 1/6
  28. bernoulli(3) # 0
  29. bernoulli(4) # −1/30
  30. bernoulli(5) # 0
  31. bernoulli(6) # 1/42
  32. bernoulli(7) # 0
  33. bernoulli(8) # -1/30
  34. # this doesn't - bits not in cache
  35. bernoulli_cache = {}
  36. bernoulli(8) # -1/30

答案1

得分: 1

Your cache is storing a Fraction so when you have a cache hit you're returning a Fraction. When you have a cache miss you're returning a tuple. You can fix this by changing return numerator, denominator to return Fraction(numerator, denominator).

英文:

Your cache is storing a Fraction so when you have a cache hit you're returning a Fraction. When you have a cache miss you're returning a tuple. You can fix this by changing return numerator, denominator to return Fraction(numerator, denominator).

huangapple
  • 本文由 发表于 2023年1月6日 10:45:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/75026447.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定