Search found 3 matches

by dcuny
Thu Aug 05, 2021 6:55 am
Forum: Support and Development
Topic: Issue with RecordingDevice [RESOLVED]
Replies: 1
Views: 1789

Re: Issue with RecordingDevice

The issue was there was a mismatch between the sampling rate of the microphone. Windows had set it to the default quality of 48000 Hz, which didn't match the 44100 value I'd used in the code. Although OpenAL didn't throw an error, it didn't work properly , either. :| I've run across this with other ...
by dcuny
Wed Aug 04, 2021 3:25 am
Forum: Support and Development
Topic: Machine learning: Q table
Replies: 2
Views: 4022

Re: Machine learning: Q table

Getting to the point: how to construct a Q table when there are multiple 'concepts' a bot needs to check before taking an action? The Q Table doesn't know what any of the states or actions actually mean. A state can represent any concept you want it to - as long as you can test for it. Similarly, a...
by dcuny
Wed Aug 04, 2021 2:36 am
Forum: Support and Development
Topic: Issue with RecordingDevice [RESOLVED]
Replies: 1
Views: 1789

Issue with RecordingDevice [RESOLVED]

I've set up the microphone for recording with these settings: -- choose the first recording device local rdList = love.audio.getRecordingDevices() local rdIndex = 1 local rd = rdList[rdIndex] -- audio settings local SAMPLE_RATE = 44100 local BIT_DEPTH = 16 local CHANNEL_COUNT = 1 local BUFFER_SIZE =...