File size: 1,466 Bytes
7779efa
e3192e0
 
2cc08ea
e3192e0
dccd8ef
e3192e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2cc08ea
 
 
 
 
 
e3192e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using TorchSharp;

public class DDPM : IDisposable
{
    private torch.jit.ScriptModule _model;
    public torch.Device Device {get;}
    public DDPM(string modelPath, torch.Device device)
    {
        _model = TorchSharp.torch.jit.load(modelPath);
        Device = device;
        _model.to(Device);
        _model.eval();
    }

    public (torch.Tensor e_T_Uncondition, torch.Tensor e_T) DiffusionModel(torch.Tensor img, torch.Tensor condition, torch.Tensor unconditional_condition, torch.Tensor t)
    {
        var x_in = torch.cat(new[] { img, img });
        var condition_in = torch.cat(new[] { unconditional_condition, condition });
        var t_in = torch.cat(new[] { t, t });
        var res = _model.invoke<torch.Tensor>("diffusion_model", x_in, t_in, condition_in).chunk(2);
        return (res[0], res[1]);
    }

    public torch.Tensor QSample(torch.Tensor z, torch.Tensor t, torch.Tensor v)
    {
        return _model.invoke<torch.Tensor>("q_sample",z, t, v);
    }

    public torch.Tensor PredictEPSFromZANDV(torch.Tensor z, torch.Tensor t, torch.Tensor v)
    {
        return _model.invoke<torch.Tensor>("predict_eps_from_z_and_v", z, t, v);
    }

    public torch.Tensor PredictStartFromZANDV(torch.Tensor z, torch.Tensor t, torch.Tensor v)
    {
        return _model.invoke<torch.Tensor>("predict_start_from_z_and_v", z, t, v);
    }

    public void Dispose()
    {
        _model.Dispose();
        _model = null;
    }
}