我对Tensorflow文档越来越感到烦恼和沮丧.我在谷歌搜索有关的文档
tf.reshape
Run Code Online (Sandbox Code Playgroud)
我正被定向到这里的通用页面.我想查看tf.reshape文档的详细信息,而不是整个文档.
我在这里做错了吗?
我按照angular.io入门项目使用种子结构.到目前为止一切都还可以.
现在我想更改顶部组件以从分离的文件中获取视图,然后我遇到了麻烦.工作代码是:
import {Component, View} from 'angular2/core';
@Component({
selector: 'my-app',
template: '<h1>Angular2</h1>',
directives: []
})
export class AppComponent {
constructor() {
}
}
Run Code Online (Sandbox Code Playgroud)
然后我将模板更改为templateUrl,如下所示:
templateUrl: 'app.component.html',
我在这个文件中的代码与以前完全相同
<h1>Angular2</h1>
工作似乎很明显,但事实并非如此.它没有吐出错误,但除了"loading ...."消息之外,它没有显示任何内容,如在入门演示中那样
谢谢你的帮助
彼得
我正在https://www.tensorflow.org/versions/master/tutorials/image_recognition/index.html上进行教学
在Python API部分,我启动了
python classify_image.py
在这里,我得到这样的错误消息:
A protocol message was rejected because it was too big (more than 67108864 bytes). To increase the limit (or to disable these warnings), see CodedInputStream::SetTotalBytesLimit() in google/protobuf/io/coded_stream.h.
因此,我尝试访问文件coded_stream.h,但由于目录树使我无法访问google / protobuf,因此无法访问它。没有io目录。关于我现在应该做什么的任何提示?
谢谢彼得