Vincent XU
Vincent XU
@wwlaoxi Hi, have you solved this problems ?
There's a well-trained model from http://gravis.dmi.unibas.ch/PMM/. I'm using this model to replace BFM09 for inference.
I use the BFM17 model and rewrote the IO. The model is from http://gravis.dmi.unibas.ch/PMM/data/overview/
> > I use the BFM17 model and rewrote the IO. The model is from http://gravis.dmi.unibas.ch/PMM/data/overview/ > > @VincentXWD Would you be willing to share your version of the IO...
Thank you @effigies . .get_data().copy() helps me a lot!
In fact, I tuned those 9 paramenter using codes from https://github.com/mohamed-ezz/saratan/blob/master/crf/crf_optimization.py wrote by Mohamed Ezz. But I couldn't reach even the result without CRF.
Once two tasks (suppose task A and task B) try to acquire one same semaphore and A may get the semaphore first and run for a long time. Currently task...
@bradphelan Could you please give some more details of this design you mentioned? The task will never give up the occupation of a thread because of using yield. The workload...
Hi @bradphelan thank you for your information. I'm talking about this possible semaphore design: ```c++ tf::Semaphore2 semaphore2 taskflow.emplace([&](tf::Runtime& rt){ // do something // ... tf.acquire(semaphore2); // do another thing //...