Results 22 issues of bug404

npm WARN optional Skipping failed optional dependency /chokidar/fsevents: npm WARN notsup Not compatible with your operating system or architecture: [email protected] 使用的是win10 ubuntu18.04子系统

Hello, author , I used Matlab robotics toolbox to make this GUI, https://github.com/borninfreedom/matlab-robotics-GUI-tool. It is convenient for users who are accustomed to using GUI. Can you merge this GUI into...

The shape of my input `images` variable is `torch Size ([16, 3, 416, 416])` . When executing code `model_trt=torch2trt(model,[images])`, the errors will be reported as: ```bash Traceback (most recent call...

/home/eric/catkin_ws/src/pick-place-robot/kuka_arm/src/trajectory_sampler.cpp: In constructor ‘TrajectorySampler::TrajectorySampler(ros::NodeHandle)’: /home/eric/catkin_ws/src/pick-place-robot/kuka_arm/src/trajectory_sampler.cpp:180:43: error: cannot convert ‘moveit::planning_interface::MoveItErrorCode’ to ‘bool’ in initialization bool success = move_group.plan(my_plan); ^

```python img = img[:, :, 0] * 0.399 + img[:, :, 1] * 0.587 + \ img[:, :, 2] * 0.114 ```

If my observation is an image of shape (4, 84, 84), and action dim is 3, so how to modify the code below? ```python if __name__ == '__main__': states =...

I printed the model structure. ```python (bbox_head): SCRFDHead( (loss_cls): QualityFocalLoss() (loss_bbox): DIoULoss() (relu): ReLU(inplace=True) (cls_stride_convs): ModuleDict( ((8, 8)): ModuleList( (0): DepthwiseSeparableConvModule( (depthwise_conv): ConvModule( (conv): Conv2d(24, 24, kernel_size=(3, 3), stride=(1, 1),...

当出现这个错误时一定要注意,不要以为文件夹是灰色只是不能点击这么简单,就算你git clone下来,那个文件夹里也没有东西,所以第一次git push完了一定要去github看一下。 一般从github上clone下来的文件,开发者在维护的时候都会有一个.git文件和缓存,所以clone下来一个新的项目后,建议先执行下面的操作,去掉开发者留下的.git cached ,不然就容易在自己的项目git push时是灰色的无法点击。 解决方法: ``` 去到/工作空间/src 在编译之前 cd 文件夹 ls -ah rm .git cd .. git rm -r --cached 文件夹名字 git add . git commit -m...