gpt4 book ai didi

javascript - 无法在 angularjs 应用程序中加载 @tensorflow/tfjs

转载 作者:行者123 更新时间:2023-12-05 07:34:39 25 4
gpt4 key购买 nike

我正在关注来自 here 的 Youtube 视频了解如何构建基本的 tensorflowjs 应用程序。我目前在视频的 3:22。我检查了控制台,控制台说了以下内容

ERROR in src/app/app.component.ts(2,21): error TS2307: Cannot find module '@tensorflow/tfjs'.

src/app/app.component.ts(10,14): error TS2420: Class 'AppComponent' incorrectly implements interface 'OnInit'.

Property 'ngOnInit' is missing in type 'AppComponent'.

我确实严格按照视频看的,我不明白为什么会出现这个错误。这是我的 app.component.ts

import { Component, ViewChild, OnInit } from '@angular/core';
import * as tf from '@tensorflow/tfjs';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})

export class AppComponent implements OnInit {
title = 'app';
}

如何消除错误?

最佳答案

第一个错误意味着您尚未在您正在使用的项目中安装 tensorflow 库。要解决该问题,请使用终端进入项目目录并发出 npm install @tensorflow/tfjs 安装库的命令。

第二个错误是因为您的AppComponent 实现了OnInit,但是组件中没有ngOnInit 函数。您必须添加一个 ngOnInit 函数(它可以是一个空函数)或删除 implements OnInit

关于javascript - 无法在 angularjs 应用程序中加载 @tensorflow/tfjs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50026629/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com