小编Kev*_*zke的帖子

Tensorflow:元组列表作为占位符

我想使用compute_gradients并生成局部渐变。这些梯度将与其他机器的多个局部梯度求平均值,之后apply_gradients将被调用。我在第二个中使用2 session.runsfeed_dict接受渐变。由于apply_gradients期望有元组列表,因此我正在寻找一种有效的方法来执行此操作。

这就是我生成元组占位符列表的方式:

grads  = cifar10.train_part1(loss, global_step)

xx = [tf.placeholder(tf.float32, shape=grads[0][0].shape) for i in range(10)]
yy = [tf.placeholder(tf.float32, shape=grads[0][0].shape) for i in range(10)]


xyz = zip(xx,yy)

train_op = cifar10.train_part2(loss,global_step, xyz)
Run Code Online (Sandbox Code Playgroud)

我收到以下错误:

NotImplementedError: ('Trying to optimize unsupported type ', tf.Tensor 'Placeholder_10:0' shape=(5, 5, 3, 64) dtype=float32)
Run Code Online (Sandbox Code Playgroud)

machine-learning python-2.7 deep-learning tensorflow

5
推荐指数
0
解决办法
637
查看次数

设置 | G Suite + Sendgrid 用于交易电子邮件

我目前正试图解决我们商店的电子邮件设置问题。到目前为止,我们使用 G Suite 处理与我们域相关的所有电子邮件abc.com

#历史:#

我们的 WooCommerce 商店利用wp_mail()PHP-Mail 功能来发送我们的网站托管商发送的交易电子邮件(例如收到的订单、创建的帐户等)。当我们面临越来越多的电子邮件被发送到我们的客户垃圾邮件文件夹时,我们决定转向 SMTP 提供商。

# 新设置:#

我们为 Wordpress安装了WP SMTP 邮件插件,并选择 Sendgrid 作为 SMTP 提供商。我们按照说明操作并能够连接所有三个:我们的 WooCommerce 商店、WP Mail SMTP 和 Sendgrid。

# 问题: #

现在我们已经运行了新的设置,事情似乎有些混乱。我读到混合 .mx 的 MX 记录设置是不允许/不好的做法abc.com。但这正是我所做的 - 我必须做的 - 使 Sendgrid 和 G Suite 都能正常工作。

尽管Sendgrid在其活动仪表板中列出了来自shop@abc.com 的出站电子邮件,但实际的电子邮件是由Gmail 的默认 DKIM 域密钥:签名的,这不应该是这种情况,对吧?d=*.gappssmtp.com

# 目标:#

  • 使用Sendgridshop@abc.com发送出站电子邮件
  • 使用G Suite接收发往 …

email smtp mx-record sendgrid google-workspace

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

使用PCL迭代最近点进行点云注册

我尝试用PCL执行ICP,

pcl::transformPointCloud不起作用.这是我的代码:

int
 main ()
{
   pcl::PointCloud<pcl::PointXYZI>::Ptr cloudIn (new pcl::PointCloud<pcl::PointXYZI>);
   pcl::PointCloud<pcl::PointXYZI>::Ptr cloudOut (new pcl::PointCloud<pcl::PointXYZI>);
   pcl::PointCloud<pcl::PointXYZI> finalCloud ;
   pcl::PointCloud<pcl::PointXYZI> finalCloud1 ;
   pcl::PointCloud<pcl::PointXYZI>::Ptr cloudOut_new (new pcl::PointCloud<pcl::PointXYZI>) ;

   if(pcl::io::loadPCDFile ("/ICP_PCL/000.pcd", *cloudIn)==-1)
   {
     PCL_ERROR ("Couldn't read first file! \n");
     return (-1);
   }

   if(pcl::io::loadPCDFile ("/ICP_PCL/001.pcd", *cloudOut)==-1)
   {
     PCL_ERROR ("Couldn't read second input file! \n");
     return (-1);
   }

  pcl::IterativeClosestPoint<pcl::PointXYZI, pcl::PointXYZI> icp;
  icp.setInputCloud(cloudOut);
  icp.setInputTarget(cloudIn);
  icp.setMaximumIterations (500);
  icp.setTransformationEpsilon (1e-9);
  icp.setMaxCorrespondenceDistance (0.05);
  icp.setEuclideanFitnessEpsilon (1);
  icp.setRANSACOutlierRejectionThreshold (1.5);

  icp.align(finalCloud);

  if (icp.hasConverged())
  {
      std::cout << "ICP converged." << std::endl
                << …
Run Code Online (Sandbox Code Playgroud)

transform c++11 point-cloud-library

3
推荐指数
2
解决办法
6525
查看次数

使用C++中的特定更改复制向量的最快方法

我想在将elements属性设置为零时复制矢量.我有一个std::vector<PLY>包含特定数量的以下struct元素的向量:

struct PLY{
    float x;
    float y;
    float z;
}
Run Code Online (Sandbox Code Playgroud)

什么是创建这个载体,其中每一层元素有一个副本的最快方法z-value0?有没有更快的方法然后创建向量的副本,然后迭代每个元素以设置新的z值?

c++ vector

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

Speedtest高优先级:启用浏览器缓存

我正在使用Magento 1.7,我最近将我的商店改为新的云计算主机.为了检查我的商店表现,我运行了几个pagespeed测试.每个结果都给了我相同的高优先级:启用浏览器缓存!

到目前为止,我已经在System - > Cache中激活了每个缓存.所以我不知道为什么我的商店不使用浏览器缓存.

通过切换到新的Hoster,我删除了存储在/var目录中的文件.在将Magento商店切换到服务器的简短教程中提到了这一点.

有谁知道如何解决这个问题?

谢谢!

caching magento browser-cache e-commerce

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