I'm a co-founder of Snips https://snips.ai , we are building a 100% on-device Voice AI platform which protects your privacy as it does not rely on sending voice on servers like Google and Apple do You can use the platform for free (we will also open-source over time), it can run on Raspberry 3 and we added an integration with the amazing Home Assistant: https://home-assistant.io/components/snips
How are you able to improve the training over time if you aren't centralizing the data anywhere?
Home Assistant is an open-source home automation platform running on Python 3
81–90 of 178 posts
Re: Home Assistant is an open-source home automation platform running on Python 3
#82I'm a co-founder of Snips https://snips.ai , we are building a 100% on-device Voice AI platform which protects your privacy as it does not rely on sending voice on servers like Google and Apple do You can use the platform for free (we will also open-source over time), it can run on Raspberry 3 and we added an integration with the amazing Home Assistant: https://home-assistant.io/components/snips
> (we will also open-source over time) What portion of it is currently open source?
Re: Home Assistant is an open-source home automation platform running on Python 3
#83I'm a co-founder of Snips https://snips.ai , we are building a 100% on-device Voice AI platform which protects your privacy as it does not rely on sending voice on servers like Google and Apple do You can use the platform for free (we will also open-source over time), it can run on Raspberry 3 and we added an integration with the amazing Home Assistant: https://home-assistant.io/components/snips
Thank you. What is the accuracy of recognition? Does accuracy improve overtime, if so how?
Re: Home Assistant is an open-source home automation platform running on Python 3
#84Re: Home Assistant is an open-source home automation platform running on Python 3
#85I'm a co-founder of Snips https://snips.ai , we are building a 100% on-device Voice AI platform which protects your privacy as it does not rely on sending voice on servers like Google and Apple do You can use the platform for free (we will also open-source over time), it can run on Raspberry 3 and we added an integration with the amazing Home Assistant: https://home-assistant.io/components/snips
This is a blog post on how to create your own custom assistants https://medium.com/snips-ai/build-a-weather-assistant-with-s...
Re: Home Assistant is an open-source home automation platform running on Python 3
#86I'm a co-founder of Snips https://snips.ai , we are building a 100% on-device Voice AI platform which protects your privacy as it does not rely on sending voice on servers like Google and Apple do You can use the platform for free (we will also open-source over time), it can run on Raspberry 3 and we added an integration with the amazing Home Assistant: https://home-assistant.io/components/snips
Re: Home Assistant is an open-source home automation platform running on Python 3
#87Earlier quoted context omitted.
You would likely be better off using some other solution for your light control, and then talking to that over HTTP/MQTT. I use a version of this: https://www.stavros.io/posts/wifi-enabled-rgb-led-strip-cont... It integrates nicely with HA via MQTT.
Yeah, I’m trying to switch to an arduino-based solution, but I just really want to avoid WiFi. And building custom protocols isn’t that optimal either.
Re: Home Assistant is an open-source home automation platform running on Python 3
#88Is anyone else here completely confused at how much hype there is around automated light management systems? I don’t get it. Is it really that hard to turn on and off lights manually that people really need all this stuff? What am I not getting?
Re: Home Assistant is an open-source home automation platform running on Python 3
#89Earlier quoted context omitted.
Hey Baloob. I watched you talk at PyCon. How have your experiences been since you switched to asyncio?
asyncio is amazing. It has been way faster and more predictable. Home Assistant has a lot of small tasks running all the time with the occasional task taking a long time (ie. trying to reach a device which has been turned off). The number of tasks running simultaneously used to be limited by the size of the thread worker pool, which is no longer the case. A request taking a long time is now just a coroutine pending r…
I work with a large-fintech platform which is partially powered by Python. Our old server was based around threads, queues, and socket multiplexing but we are gradually starting new applications in asyncio.
I recently completed a project in aiohttp which has been fantastic. What are your thoughts on aiohttp vs tornado?
Re: Home Assistant is an open-source home automation platform running on Python 3
#90Is anyone else here completely confused at how much hype there is around automated light management systems? I don’t get it. Is it really that hard to turn on and off lights manually that people really need all this stuff? What am I not getting?
1 - outside lights - various lights which light our home's pathway or areas we prefer to have lit at night come on automatically at sundown and turn off at sun-up.
2 - scenes; with HA, we can click one button - a switch with scene control in our case - and have the lights in the room go to a specific set point, receiver come on, select sonos, and tune in to a particular station - an activity which would conventionally require several manual steps with various input devices.
3 - notifications; with HA, I get notifications when the front door or garage doors are opened/closed.
There are several things I plan to implement:
1 - using presence detection and adjusting temps/lights/etc based upon that
2 - fan control; we are heavy users of ceiling fans, and integrating them into home automation would be a significant upgrade. Haven't found a replacement for our Minka controllers which supports zwave (or anything else).
All of this has been possible for years - usually with single vendor solutions which are very costly; HA integrates nearly all automation platforms into a single system allowing each platform's features to work together relatively seamlessly. It's a moving target, but has become very stable/reliable with recent releases.