ag1le / morse.py

Python based Morse decoder
25 stars 3 forks source link

-.--. defind twice #1

Open cxgreat2014 opened 7 years ago

cxgreat2014 commented 7 years ago
'-.--.' : '<KN>'
'-.--.' : '('
ag1le commented 7 years ago

good catch!

NobleLee commented 6 years ago

hello, I read your mosre.py code. Its performance far exceeds my expectations. Can you give me some reference document about your algorithm?

ag1le commented 6 years ago

You can find some information on my ham radio blog ag1le.blogspot.com

luDyduL commented 6 years ago

Hello, your morse.py is great. And I read your blog ag1le.blogspot.com. But I found only neural network-related algorithms. What is the algorithm that uses probability in morse.py/test.py? I mainly read test.py.

ag1le commented 6 years ago

test.py is still works-in-progress code. The algorithm is based on this paper: https://archive.org/download/optimalbayesiane00bell/optimalbayesiane00bell.pdf

luDyduL commented 6 years ago

Thank you.

luDyduL commented 6 years ago

Hello, your morse.py/morse.py does not use the Bayesian algorithm. And I can't find morse.py/morse.py's algorithm in your ham radio blog ag1le.blogspot.com. Is it a newer algorithm? I really want to learn this algorithm.

ag1le commented 6 years ago

Hi luDyduL, morse.py algorithm is a collection of tricks I have learned and documented in my ham radio blog. Best way to learn how it works is to study the source code and doing some experiments with real audio files.

luDyduL commented 6 years ago

Okay, thank you very much.