Git Product home page Git Product logo

Comments (3)

jparkhill avatar jparkhill commented on June 27, 2024

My number one desired feature is antithetic sampling as an option for sdeint. It's pretty cumbersome to achieve this without editing the package by changing the BrownianInterval's W.

from torchsde.

patrick-kidger avatar patrick-kidger commented on June 27, 2024

I've not filled in every detail, but I'd have thought something like this should work:

class AntitheticBrownian(BaseBrownian):
   def __init__(self, bm):
       self.bm = bm

    def __call__(self, ta, tb):
        return -self.bm(ta, tb)

bm = BrownianInterval(...)
ys = torchsde(bm=bm, ...)

abm = AntitheticBrownian(bm)
ays = torchsde(bm=abm, ...)

ys = torch.cat([ys, ays])

Does this approach fail / am I missing something / are you trying to achieve something beyond this?

from torchsde.

jparkhill avatar jparkhill commented on June 27, 2024

Does work, but it's still much uglier than it needs to be vs sdeint(...,antithetic=True). For innumerable financial applications of this library, this type of option is... priceless ;p Here's a filled in version in case anyone else is following along:

ts = tch.linspace(0,1.,365)
ntraj = 1000
bm = torchsde.BrownianInterval(ts[0], ts[-1], size=(ntraj,sde.brownian_size), levy_area_approximation='space-time')
ys_ = torchsde.sdeint(sde,sde.y0(ntraj=ntraj), ts, bm=bm)
class AntitheticBrownian(torchsde.BrownianInterval):
    def __init__(self, t0, t1, size, bm):
        super(AntitheticBrownian, self).__init__(t0,t1,size, levy_area_approximation='space-time')
        self.bm = bm
    def __call__(self, ta, tb=None, return_U=False, return_A=False):
        Z = self.bm(ta, tb, return_U, return_A)
        if return_U:
            if return_A:
                return -Z[0], Z[1], Z[2]
            else:
                return -Z[0], Z[1]
        else:
            if return_A:
                return -Z[0], Z[1]
            else:
                return -Z
abm = AntitheticBrownian(ts[0], ts[-1], (ntraj,sde.brownian_size), bm)
ays = torchsde.sdeint(sde,sde.y0(ntraj=ntraj), ts, bm=abm)
ys = torch.cat([ys_, ays],1)```

from torchsde.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.