tacit0428

Results 10 comments of tacit0428

您好,第一块代码是子组件,第二块代码是使用该子组件。我这边的问题是当创建组件时,options.options3d.enableView3dTransform设置为false,点击rotate希望触发更新该值为true,但图表没有任何反应。 定义AreaChart: ``` import React, { useState } from 'react'; import { VChart } from '@visactor/react-vchart'; function AreaChart(props) { const [spec, setSpec] = useState({ type: 'area', data: props.dataConfig.data, xField: props.dataConfig.xField,...

> @tacit0428 options 和 `spec` 不一致,不支持更新,只能初始化的时候设置一次 > > 建议你可以在`enable3d ` 切换的时候,给`` 添加不同的key,实现创建新的实例的效果 > > ``` > key={props.enable3d ? '3dChart' : '2dChart'} > spec={spec} > options={options} > className={props.chartname} > /> >...

> > > @tacit0428 options 和 `spec` 不一致,不支持更新,只能初始化的时候设置一次 > > > 建议你可以在`enable3d ` 切换的时候,给`` 添加不同的key,实现创建新的实例的效果 > > > ``` > > > > > key={props.enable3d ? '3dChart' : '2dChart'} >...

@xile611 @neuqzxy 你好,我的使用方法是这样的,但是点击change后,我发现图表并没有更新 ``` function AreaChart(props) { const [spec, setSpec] = useState({ type: 'area', data: { values: [ { type: 'Nail polish', country: 'Africa', value: 4229 }, { type: 'Nail...

> @xile611 @neuqzxy 你好,我的使用方法是这样的,但是点击change后,我发现图表并没有更新 > > ``` > function AreaChart(props) { > const [spec, setSpec] = useState({ > type: 'area', > data: { > values: [ > { type: 'Nail...

> 如果github不好消息沟通,可以加飞书群沟通 @tacit0428 请问怎么加飞书群呢

I have the same problem. I tried to train the motion module to fit a small dataset(about 3000 clips), but the loss didn't decrease. I trained 30 epochs, but the...

Hi, can you tell me your learning rate and train dataset? I also tried to train the motion module on a small dataset. I set batch size =4 and lr=3e-5,...

It seems good. I can use inference v2 and mm-15_v2. But I can't turn on unet_use_cross_frame_attention either. I don't know if it's essential. Did you turn on this parameter in...

Yes, I agree. I think that the provided motion module looks the same like your results. I tried the author's model weights, the generated animate motion is also slight. I...