我正在编码神经网络模型,并且训练需要很长时间才能运行,所以我想做其他事情,然后在单元运行完毕后立即返回。
已经有一种跟踪此方法的方法,因为“忙碌”时“标签”图标为灰色,完成后为“黄色”。但是我在音频通知旁边找不到其他东西。
答案 0 :(得分:2)
在单元完成时添加音频通知是两条线。例如,
@bot.message_handler(commands=['addproduct'])
def handle_text(message):
cid = message.chat.id
msgPrice = bot.send_message(cid, 'Set your price:')
bot.register_next_step_handler(msgPrice , step_Set_Price)
def step_Set_Price(message):
cid = message.chat.id
userPrice= message.text
这是一个示例笔记本: https://colab.research.google.com/drive/1jrEy5V7FjzAq8Ydg22E1L72xZYsEQWlM
答案 1 :(得分:0)
Google Colab构建在Jupyter Notebook的顶部,因此此代码可以正常工作:
import IPython.display as display
display.Audio(url="https://yoursound.com/sound.mp3", autoplay=True)
我发现的一个错误是,如果我的Web浏览器(Chrome)窗口被最小化到我的Mac OS计算机上的扩展坞中,则声音不会不播放。但是,它将在其他情况下播放,例如当窗口打开但不在前台时。
您可以找到有用的英语单词音频,例如“完成”或“完成”以发出警报。使用具有可听发音的在线词典(例如Google或Dictionary.com),搜索所需的单词,使用网络浏览器的“检查”工具查看HTML来源,然后在HTML中搜索“ mp3”。
这是我喜欢的一些东西
https://static.sfdict.com/audio/C07/C0702600.mp3
https://ssl.gstatic.com/dictionary/static/pronunciation/2019-10-21/audio/do/done_en_us_1.mp3
https://ssl.gstatic.com/dictionary/static/sounds/20180430/complete--_us_1.mp3
您还可以使用!wget URL
将音频文件下载到Google Colab文件系统中,然后使用本地文件名从Colab播放声音。