You Jiacheng

Results 101 comments of You Jiacheng

I figure out a workaround as the following: ```bash # CWD is the parent of the file that executes wandb.init mkdir wandb # can be skipped if there is one...

@Trinkle23897 Now gym#3019 merged. Maybe restrict

@hedy14 Hi. Trinkle's advice is brilliant and elegant. If you didn't fully understand, I can give some explanation in detail. # Solution TL, DR: Create your env whose `step` method...

Use `accelerate launch --num_processes -1 ...` can solve this problem. See also https://github.com/microsoft/DeepSpeed/pull/2347 NOTE: after accelerate-0.13.0, you can't set `--num_processes -1`.

@pacman100 I tested that v0.13.0 solves this problem.

I know `flet` is aiming for imperative programming model. It combines smaller "widgets" to ready-to-use "controls" to construct UI with less nesting levels, which is suitable for imperative UI model....

Can we just leverage flutter's performant rebuild system? I don't know whether on-demand data transfer is a pre-mature optimization or not. Do you have any benchmark result? Maybe for `UserControl`...

A common solution is to create a temporal file with name given by the main process, and write pid into file. Here is an example that the subprocess use a...

`Text` `size=20` + `ListTile` `height=40` has NO problem.

Replace `ListTile` with `Container` has NO problem. It seems that this is a `ListTile` bug.