Skip to content
This repository has been archived by the owner on Jul 14, 2024. It is now read-only.

Commit

Permalink
Merge pull request #54 from probml/test-fix
Browse files Browse the repository at this point in the history
Remove unnecessary path munging.
  • Loading branch information
murphyk authored May 17, 2022
2 parents 25c6f68 + 157afaf commit 76d557e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions jsl/lds/kalman_filter_test.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))

from jax import random
from jax import numpy as jnp
import numpy as np
import tensorflow as tf
import tensorflow_probability as tfp

tfd = tfp.distributions
from kalman_filter import LDS, kalman_filter
from jsl.lds.kalman_filter import LDS, kalman_filter

def tfp_filter(timesteps, A, transition_noise_scale, C, observation_noise_scale, mu0, x_hist):
""" Perform filtering using tensorflow probability """
Expand Down

0 comments on commit 76d557e

Please sign in to comment.