Skip to content

Commit

Permalink
fix missing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
misko committed Dec 20, 2023
1 parent 94f71ae commit d207aa1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion spf/model_training_and_inference/utils/spf_generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def generate_session(args_and_session_idx):
if args.detector_noise < 0:
detector_noise = np.random.uniform(low=0.0, high=-args.detector_noise)

beamformer_f = beamformer_numba if args.numba else beamformer
beamformer_f = beamformer

if args.array_type == "linear":
d = ULADetector(
Expand Down
5 changes: 2 additions & 3 deletions spf/sdrpluto/01_phase_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@

import adi

# ;import matplotlib.pyplot as plt
import matplotlib.pyplot as plt
import numpy as np
from math import lcm
from sdr import *

from spf.rf import ULADetector, beamformer

c = 3e8
fc0 = int(200e3)
Expand Down

0 comments on commit d207aa1

Please sign in to comment.