Nick Gerner
Nick Gerner
I'm taking a crack at implementing bi-directional communication for my own purposes. I'm curious about the thinking with `ifFreq` and `SourceManager::TuningMode::PANADAPTER` hereish: https://github.com/AlexandreRouma/SDRPlusPlus/blame/master/core/src/signal_path/source.h#L53 it's used in tune hereish: https://github.com/AlexandreRouma/SDRPlusPlus/blob/master/core/src/signal_path/source.cpp#L88 It...
But this implementation of `ifFreq` isn't reflecting what the radio's IF frequency is. And I don't think that rigctl exposes that information. So it's not clear to me how we'd...
I should add, this is a great project, very useful for radio operators. Thank you!
Ok, thanks for the info. If there's interest in what I'm doing, I can post back. I look forward to your progress.
I also made similar changes (i.e. treat rsp1b as if it behaves exactly the same as rsp1a) and it appears to work for me on Ubuntu 20.04 AMD64.
@thebrunx sdrplay support isn't turned on in the release build. you need to build from source and include the build option for sdrplay. You can check out the readme for...
@thebrunx try the discord server, maybe someone there can help you: https://discord.gg/aFgWjyD
I should also point out that on the data set I'm actually using, finding the target neighbors takes way longer than training the metric. And in my case the current...
Sure, `ReservoirSampler` is a better name. I like your idea about configuration. Are you suggesting making `reservoir` a choice for the same parameter? As in, `list | sparse | reservoir`...
here's a performance comparison on the iris dataset. Notice I picked a very small number of max_impostors to (hopefully) ensure we actually do sampling: ```python samplers = ['uniform', 'reservoir'] scores...