Explorar el Código

Refine classifier rules with temporal hints

master
Jan Svabenik hace 4 días
padre
commit
1365b00343
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. +7
    -0
      internal/classifier/rules.go

+ 7
- 0
internal/classifier/rules.go Ver fichero

@@ -22,6 +22,13 @@ func RuleClassify(feat Features) Classification {
if flat > 0.7 {
second = ClassNoise
}
case bw >= 2000 && bw < 3000:
// candidate for FT8/WSPR (very rough): low env variance, narrow BW
if feat.EnvVariance < 0.5 && feat.InstFreqStd < 0.7 {
best = ClassUnknown
second = ClassUnknown
conf = 0.5
}
case bw >= 500 && bw < 3e3:
if sym > 0.2 {
best = ClassSSBUSB


Cargando…
Cancelar
Guardar