Grant Wong

Results 36 comments of Grant Wong

> Are you deprecating tagged template literals? What is the purpose of your recommendation? Yeah A few reasons for this: * Tagged template literals are harder to statically analyse than...

Another example, with `width`: ``` const defaultPanelWidth = 480; const ProgressContainer = styled.div({ width: '230px', }); const OtherContainer = styled.div({ width: ({ panelWidth }) => `${panelWidth ?? defaultPanelWidth}px`, }); ```...

Hmm that's a good question - we recommend using JS to detect the hover on Button and store this in a variable, and then pass the variable value as a...

closing this PR as nobody is working on this at the moment, and changing the specificity is highly risky feel free to re-open if this feature is still needed though!

ooh good idea 👍 do you reckon it would be useful to also add this to the SSR styles that have the `data-cmpld="true"` attribute? (perhaps we can use `title="parcel-compiled"` instead...

> We already have some similar behaviour for the runtime, maybe we should match that? > > https://github.com/atlassian-labs/compiled/blob/44b13234d50889c1f610102ee2751c9839d2ae35/packages/react/src/runtime/style.tsx#L48 hmm yeah maybe we could keep `data-cmpld` for the SSR stuff and...

> Over arching question before sending it: Should this be under a config option so we can turn it off just in case things go wrong? good point yeah @itsdouges...

I'm having this same issue too - did you ever find a solution? @rcffc

Found the cause - I needed to complete the [Data Preparation section](https://github.com/dvlab-research/PointGroup#data-preparation) before evaluating the pre-trained model Silly me :smile:

嗯,把數據集放進去後,只要執行這些命令就可以吧 > cd dataset/scannetv2 > python prepare_data_inst.py --data_split train > python prepare_data_inst.py --data_split val > python prepare_data_inst.py --data_split test I haven't used this library for a long time though, so...