Spaces:
Running
Running
Amlan-109
feat: Initial commit of LocalAI Amlan Edition with premium branding and personalization
750bbe6
| package sound | |
| import ( | |
| "encoding/binary" | |
| "math" | |
| ) | |
| func BytesFloat32(bytes []byte) float32 { | |
| bits := binary.LittleEndian.Uint32(bytes) | |
| float := math.Float32frombits(bits) | |
| return float | |
| } | |