小编l80*_*l80的帖子

发送语音识别参数。结果作为UWP桌面桥程序包中的参数

我试图弄清楚,是否有可能using Windows.Media.SpeechRecognition; args.Result.Text作为参数从UWP发送到控制台应用程序。

例如,通过遵循以下方案,我将发送TextToSpeech(args.Result.Text);具有args.Result.Text;价值的值,其中using Windows.Media.SpeechSynthesis;每次出现时,文本语音转换都会发出识别结果args.Result.Text;textBlock2.Text = args.Result.Text;还显示结果:

 private async void ContinuousRecognitionSession_ResultGenerated(
            SpeechContinuousRecognitionSession sender, SpeechContinuousRecognitionResultGeneratedEventArgs args)
        {
            await dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
            {               
                textBlock1.Text = args.Result.Text;    

                TextToSpeech(args.Result.Text);               
            });
        }
Run Code Online (Sandbox Code Playgroud)

但如果我要发送args.Result.Text;作为参数传递给控制台应用程序,包括与UWP桌面桥包:

    private async void ContinuousRecognitionSession_ResultGenerated(
        SpeechContinuousRecognitionSession sender, SpeechContinuousRecognitionResultGeneratedEventArgs args)
    {
        await dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
        {                            
          textBlock1.Text = args.Result.Text; 

          SendTTSResult(args.Result.Text);
        });
    }
Run Code Online (Sandbox Code Playgroud)

到请求的功能:

 private async void SendTTSResult(string res)
    {
        await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () …
Run Code Online (Sandbox Code Playgroud)

c# events parameter-passing uwp desktop-bridge

6
推荐指数
1
解决办法
223
查看次数

PyTorch安装失败找不到满足要求的版本

我正在尝试在 Windows 10 专业版 64 位操作系统 PC 计算机上安装PyTorch和 PyCharm Community Edition 2020.2.3 x64 和 Python 3.9.0

我试过了:

pip install torch==1.7.0+cpu torchvision==0.8.1+cpu torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html
Run Code Online (Sandbox Code Playgroud)

和:

python -m pip install torch==1.7.0 -f https://download.pytorch.org/whl/torch_stable.html
Run Code Online (Sandbox Code Playgroud)

我是否应该降级Python版本,比如说Python 3.8.6或PyTorch版本,以使其工作,或者我是否除此之外错误地做了其他事情,也许错过了安装的东西,例如我没有选择CUDA,但看起来像它原因不同:

错误:找不到满足 torch==1.7.0+cpu 要求的版本(来自版本:0.1.2、0.1.2.post1、0.1.2.post2)错误:找不到 torch==1.7 的匹配发行版.0+CPU

pip3 install https://download.pytorch.org/whl/cpu//torch-1.7.0%2Bcpu-cp38-cp38-win_amd64.whl

错误:torch-1.7.0+cpu-cp38-cp38-win_amd64.whl 不是此平台上受支持的轮子。

pip install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html -vvv
Run Code Online (Sandbox Code Playgroud)

错误:找不到满足 torch==1.4.0+cpu 要求的版本(来自版本:0.1.2、0.1.2.post1、0.1.2.post2)错误:找不到 torch==1.4 的匹配发行版.0+CPU

任何建议、指南或示例都会有帮助

解决方案:

使用Python 3.8.6安装成功

python pip pytorch

5
推荐指数
1
解决办法
1万
查看次数

对私有 GitHub 存储库的只读访问权限

我想弄清楚,是否可以在 GitHub 上授予某人对特定私有存储库的只读访问权限,只允许查看内容,而无法协作以更改代码或自述文件标记

github repository readonly

5
推荐指数
1
解决办法
7595
查看次数

页面上的几个模态图像

我是 JS 新手,我正在尝试使用以下代码在同一页面上使用 2 个模态图像:

https://www.w3schools.com/howto/howto_css_modal_images.asp

使用此 HTML、JS 和 CSS 视图调整大小仅适用于一张图片,不确定如何使其适用于同一页面上的两张图片:

我有每个图像的第一个 html 代码两次:

HTML:

<img id="myImg" src="img_fjords.jpg" alt="Trolltunga, Norway" width="300" height="200">
<div id="myModal" class="modal">
  <span class="close">&times;</span>
  <img class="modal-content" id="img01">
  <div id="caption"></div>
</div> 
Run Code Online (Sandbox Code Playgroud)

big-picture.css 中的 CSS:

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: …
Run Code Online (Sandbox Code Playgroud)

html javascript css jquery bootstrap-modal

0
推荐指数
1
解决办法
1万
查看次数