-
Please consider to fix the typo and missing package (flash_attn) in the requirement.txt
The correct should be
```
einops==0.8.0
flash-attn==2.6.3
```
Also please consider to give the sample command …
-
Hi
Thank you for your great work. My Image size is 112x112 and the head is 12 and my window size is 7. It does not work for me.
Traceback
```
File "/raid/khawar/PycharmProjects/thesis/vit_p…
-
Upon heavy reshaping and dimension manipulations, it is necessary from time to time to call .contiguous() on the resulting tensors to straighten out the memory layout. Does einops account for this au…
-
-
In the file `cldm/cldm.py`, line 420~422,
```
glyphs[i] = einops.rearrange(glyphs[i], 'b h w c -> b c h w')
gly_line[i] = einops.rearrange(gly_line[i], 'b h w c -> b c h …
yuetz updated
10 months ago
-
I have installed mmtrack.
```
mmcv version is 1.7.1
mmdet version is 2.28.0
mmtrack version is 0.14.0.
```
When run demo command as
`python demo/demo_mot_vis.py configs/mot/deepsort/sort_faste…
-
It seems that decord is causing issues with completing installation. How can I rectify this?
When I try to run:
pip install -e ".[train]"
I get the following:
Obtaining file:///Users/bill/Doc…
-
It is missing einops and timms.
-
Numpy and many other libraries have introduced additional aggregation functions that ignore 𝙽𝚊𝙽-values, for instance:
- `numpy.nan[sum, mean, min, max, argmin, argmax, median, std, var, prod, quant…
-
I think it should be considered to have a requirements file, as a couple libraries need to be pinned to specific versions to function (mostly for training so far), whereas the current method installs …