Ciao
Ciao
```golang func sortedListToBST(head *ListNode) *TreeNode { if head == nil { return nil } if head != nil && head.Next == nil { return &TreeNode{Val: head.Val, Left: nil, Right: nil}...
> I have same problem, and I find the reason is that the opencv verion provided in zzopencv.sh is too low(4.3.0), so downloading opencv 4.5.2 and recompiling opencv 4.5.2 and...
Hi everyone, I have compiled opencv 4.5.2/4.3 many times, but I always encounter the below problem. So, how can I solve it? If you have any ideas, please tell me....
> install libtiff? Very thanks @innerlee , I will check it :)
Check this link https://github.com/VisionLearningGroup/R-C3D/blob/master/preprocess/thumos14/Class_Index_Detection.txt
👍 I like the tutorial too. By the way, I have sended a PR https://github.com/codecrafters-io/build-your-own-x/pull/751 .
> word版笔记54页,html版week2,4.7正规方程及不可逆性中=1/2 (θ^T X^T Xθ-θ^T X^T y-y^T Xθ-y^T y)应为=1/2 (θ^T X^T Xθ-θ^T X^T y-y^T Xθ+y^T y) 复议:负负得正.y^T y前应为正号.
Hi @hello-jinwoo, Thanks for your reply. But I have a question now. How did you pretrain TSP features on ActivityNet? Could you share the details with us?
Thanks for your reply. I will check this link soon.
Hi @frostinassiky, Thanks for your wonderful work. I have read your code, but I didn't figure out how you classified the proposals generated by your framework. Could you share with...