Skip to content

Commit

Permalink
FFT_for_period
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg DeVosNouri committed Sep 26, 2024
1 parent 63b1358 commit d9a0299
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions darts/tests/models/forecasting/test_times_net_model.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import numpy as np
import pandas as pd
import pytest
import torch

from darts import TimeSeries
from darts.models.forecasting.times_net_model import FFT_for_Period, TimesNetModel
from darts.tests.conftest import TORCH_AVAILABLE, tfm_kwargs
from darts.utils import timeseries_generation as tg
import torch

if not TORCH_AVAILABLE:
pytest.skip(
Expand Down Expand Up @@ -122,7 +122,6 @@ def test_prediction_with_custom_encoders(self):


class TestT_FFT_for_Period:

sample_input = (
torch.sin(torch.linspace(0, 4 * torch.pi, 100)).unsqueeze(0).unsqueeze(-1)
)
Expand Down

0 comments on commit d9a0299

Please sign in to comment.