问题列表 - 第280949页

如何将以下张量流代码传输到pytorch

我想重新实现嵌入此处的单词

这是原始的tensorflow代码(版本:0.12.1)

import tensorflow as tf


class Network(object):
    def __init__(
        self, user_length,item_length, num_classes, user_vocab_size,item_vocab_size,fm_k,n_latent,user_num,item_num,
        embedding_size, filter_sizes, num_filters, l2_reg_lambda=0.0,l2_reg_V=0.0):


 # Skip the embedding
    pooled_outputs_u = []

    for i, filter_size in enumerate(filter_sizes):
        with tf.name_scope("user_conv-maxpool-%s" % filter_size):
            # Convolution Layer
            filter_shape = [filter_size, embedding_size, 1, num_filters]
            W = tf.Variable(tf.truncated_normal(filter_shape, stddev=0.1), name="W")
            b = tf.Variable(tf.constant(0.1, shape=[num_filters]), name="b")
            conv = tf.nn.conv2d(
                self.embedded_users,
                W,
                strides=[1, 1, 1, 1],
                padding="VALID",
                name="conv")
            # Apply nonlinearity
            h = tf.nn.relu(tf.nn.bias_add(conv, b), name="relu")
            # Maxpooling over the outputs
            pooled …
Run Code Online (Sandbox Code Playgroud)

python tensorflow pytorch

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

如何使用phpspreadsheet保护单个单元格

我想保护特定的单元格内容不被修改。当我试图保护整张纸时,没问题。

$sheet->getProtection()->setSheet(true)->setDeleteRows(true);
Run Code Online (Sandbox Code Playgroud)

但是,无法为单个单元格设置保护。我尝试了以下代码。

1

$sheet->protectCellsByColumnAndRow(0, 1, 100, 100, 'asdf');
Run Code Online (Sandbox Code Playgroud)

2

$sheet->protectCells('A1','password',false);
Run Code Online (Sandbox Code Playgroud)

提前致谢。

phpoffice phpspreadsheet

2
推荐指数
1
解决办法
2536
查看次数

hyperledger indy-sdk和Libvcx有什么区别?

我一直在研究hyperledger indy框架,我想开始构建一个应用程序以开始使用,但是我注意到有使用Libindy的SDK,但是在Libindy之上还有Libvcx,但我不知道哪个一个可以使用,因为它们似乎都一样。

python hyperledger-indy

2
推荐指数
1
解决办法
252
查看次数

如何在azure逻辑应用程序中将浮点数四舍五入为小数点后两位?

在天蓝色逻辑应用程序中,我将千克转换为磅,我需要将该结果四舍五入为两位小数。

在此输入图像描述

Expression : mul(float(variables('total_weight')) , 2.20462262185)

Result :  1.102311310925
Expected Result : 1.10
Run Code Online (Sandbox Code Playgroud)

rounding azure azure-logic-apps

2
推荐指数
1
解决办法
6331
查看次数

Error toDate() InvalidPipeArgument: '无法转换时间戳.. Firebase

我在 Firestore 中有以下字段: 在此处输入图片说明

当我尝试在我的应用程序中获取它时,例如:

<p>{{ fechaInicio | date }}</p> 得到以下错误:

错误错误:InvalidPipeArgument:“无法将“时间戳(秒=1553230800,纳秒=0)”转换为管道“DatePipe”的日期

然后我看到添加toDate()据说可以解决问题:

<p>{{ fechaInicio.toDate() | date }}</p>

这正确显示了日期,但是我收到以下错误:

错误类型错误:无法读取未定义的属性“toDate”

我该如何解决?

firebase angular google-cloud-firestore

4
推荐指数
2
解决办法
2554
查看次数

通过在 React 中使用 useRef 钩子获取另一个组件的宽度来调整一个组件的大小

我正在尝试通过在 React 中使用 useRef 钩子来设置组件的宽度,但我显然没有理解这种模式。代码沙盒可以在这里找到:https ://codesandbox.io/s/vqn5jyv9y5 。谢谢!

import React, {useRef} from "react";
import ReactDOM from "react-dom";

import "./styles.css";

function App() {
  return (
    <div className="App">
      <h1>Hello CodeSandbox</h1>
      <h2>Start editing to see some magic happen!</h2>
      <Foo />
    </div>
  );
}

const Foo = () => {
  const { current: btn } = useRef(null);
  return (
    <React.Fragment>
      <button ref={btn}>buuuuttttoooon</button>
      <div style={{ width: btn.style.width, backgroundColor: 'pink', height: '50px' }} />
    </React.Fragment>
  )
}


const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
Run Code Online (Sandbox Code Playgroud)

javascript reactjs

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

如何比较Makefile中的两个字符串变量

我有以下代码:

LOCAL_VERSION := $(shell some_binary -v | head -n 1)
REMOTE_VERSION := $(shell curl -s https://example.com/key)

all:
    ifeq($(REMOTE_VERSION), $(LOCAL_VERSION))
        @echo yes
    endfi
Run Code Online (Sandbox Code Playgroud)

但我得到了这个:

user:tmp user$ make
ifeq(v0.11.1, v0.11.1)
/bin/sh: -c: line 0: syntax error near unexpected token `v0.11.1,'
/bin/sh: -c: line 0: `ifeq(v0.11.1, v0.11.1)'
make: *** [all] Error
Run Code Online (Sandbox Code Playgroud)

我在 Mac OSX 上,但无论如何它都在使用 GNU Make。

makefile

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

Swift 4 - 扩展中的私有方法

我正在寻找一种在扩展中编写私有函数的方法。

例如:

class A: UIViewController {
    override viewDidLoad() {
        privateFoo()
    }
}

private extension A {
    func foo() { 
        privateFoo()
    }

    private func privateFoo() { //Helper function for foo(), expected to be called inside the scope of this extension only

    }
}
Run Code Online (Sandbox Code Playgroud)

但是,即使我将 privateFoo() 声明为private,我仍然可以从扩展外部调用它,这不是我所期望的。

你能帮助我如何实现我的目标吗?

methods private swift

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

与 Typescript 反应 - Type { } 缺少 type 中的以下属性

我正在尝试使用 TypeScript 学习 React,但我似乎一直遇到有点模糊的 TS 错误。

我在下面的三个文件中编写了代码,在编译和运行时可以正常工作。我只是不断收到 TypeScript 抛出的这个超级烦人的错误

“类型 '{ id: any; key: any; }' 缺少类型 'ProfileCardProps' 中的以下属性:登录名”

// 表格.tsx

import * as React from 'react';
import Axios from 'axios';

export default class Form extends React.Component<any,any>{
  constructor(props: any){
    super(props);
    this.state = { userName: ""};
  }

  handleSubmit = (event: React.FormEvent<EventTarget>): void => {
    event.preventDefault();

   //get request...
    .then(resp => {
        this.props.onSubmit(resp.data);
    console.log(resp.data);
    this.setState({userName: ''});
  };

  public render() {
    return(
      <div>
        <div className="col-sm-12">
          <form onSubmit={this.handleSubmit}>
            <label>Run lookup:<br />
              <input type="text"
                value = …
Run Code Online (Sandbox Code Playgroud)

types typescript reactjs

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

传单divIcon未以角度显示在地图上

我正在尝试在角度传单中添加一个 divicon 标记。

组件.css:

.leaflet-div-icon2
{
    background: #e5001a;
    border:5px solid rgba(255,255,255,0.5);
    color:blue;
    font-weight:bold;
    text-align:center;
    border-radius:50%;
    line-height:30px;
}
Run Code Online (Sandbox Code Playgroud)

组件.ts:

var map = L.map('map', {
        attributionControl: false,
        crs: L.CRS.Simple
});

var bounds = [[0,0], [1000,1000]];
var image = L.imageOverlay('cust_image.png', bounds).addTo(map);
var customMarkerIcon = L.divIcon({className: 'leaflet-div-icon2'});

var m3 = L.latLng([ 348,278.2]);
L.marker(m3, {icon: customMarkerIcon }).addTo(map);
Run Code Online (Sandbox Code Playgroud)

我在控制台中没有收到任何错误,但无法查看地图上的标记。

它适用于带 css 和 js 的基本 html 页面,但不适用于 angular。

我在这里错过了什么吗?

markers leaflet typescript angular

3
推荐指数
1
解决办法
1263
查看次数