mirror of
https://github.com/wassname/pytorch-ts.git
synced 2026-08-06 13:30:10 +08:00
18 lines
352 B
Python
18 lines
352 B
Python
from typing import List, Optional, Tuple, Union
|
|
|
|
import torch
|
|
import torch.nn as nn
|
|
from torch.distributions import Distribution
|
|
|
|
import numpy as np
|
|
|
|
from pts.modules import DistributionOutput, MeanScaler, NOPScaler, FeatureEmbedder
|
|
|
|
|
|
class DeepVARTrainingNetwork(nn.Module):
|
|
pass
|
|
|
|
|
|
class DeepVARPredictionNetwork(DeepVARTrainingNetwork):
|
|
pass
|