You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: improve graceful shutdown and timed execution handling.
* fix: improve graceful shutdown and timed execution handling.
* Removed unused exception and improved exception management for some cases by avoiding blind
* fix: improve error logging in inbound and outbound connection threads
* fix: update string formatting in stop_program function for consistency
* fix: increase timeout for queue retrieval and improve stop method for graceful exit
---------
Co-authored-by: Andrea Lacava <a.lacava@northeastern.edu>
parser.add_argument('--num-subcarrier-spacing', type=int, default=30, help="Subcarrier spacing in kHz (FR1 is 30)")
106
110
parser.add_argument('--e', action='store_true', default=False, help="Set if 3/4 sampling for FFT size is set on the gNB (-E option on OAI)")
107
111
parser.add_argument('--center-freq', type=float, default=3.6192e9, help="Center frequency in Hz")
108
-
parser.add_argument('--timed', action='store_true', default=False, help="Run with a 5-minute time limit")
112
+
parser.add_argument('--timed', type=int, default=0, metavar='SECONDS', help="Run with a time limit (in seconds). 0 means no limit.")
109
113
parser.add_argument('--model', type=str, default='', help="Path to the CNN model file to be used")
110
114
parser.add_argument('--time-window', type=int, default=5, help="Number of input vectors to pass to the CNN model.")
111
115
parser.add_argument('--moving-avg-window', type=int, default=30, help="Window size (in samples) for the moving average used to detect energy peaks in the spectrum.")
0 commit comments