我尝试使用基本的 Clarifai.FACE_DETECT_MODEL 构建一个简单的 React 应用程序,但现在我想将其更改为更高级的“人口统计”,也许有人知道怎么做?我知道我必须更改澄清模型,但我知道该怎么做
onButtonClick = () =>{
this.setState({imageUrl: this.state.input});
app.modelsw
.predict(
Clarifai.FACE_DETECT_MODEL,
this.state.input)
.then(response =>this.displayFaceBox(this.calculateFaceLocation(response)))
.catch(err => console.log("OOOOOOPS fix me!!!!"));}````