cgsavard

Results 4 comments of cgsavard

Yes, the variable trkMVA1() is always available. It is a part of the TTTrack class and has a default value even if the MVA is not run. @srimanob @epalencia

Yes, I used "python -m pip install ." to make sure it installed with my current python version (python 3.6.8). Then running "python examples/sklearn_to_hls.py" gives the same error "no module...

I have solved the issue by changing all the inplace operations [here](https://github.com/hqucms/weaver/blob/master/utils/nn/model/ParticleNet.py#L183-L184) and [here](https://github.com/hqucms/weaver/blob/master/utils/nn/model/ParticleNet.py#L265-L272) to non-inplace. Essentially the change is var1 \*= var2 was changed to var1 = var1\*var2. Should...

Yes, this occurred after I installed pytorch in this way "conda install pytorch torchvision torchaudio cudatoolkit=11.6 -c pytorch -c conda-forge" because I was working on a different GPU (K40) with...