HyeokSuLee

Results 8 issues of HyeokSuLee

```rust let d = aview1(&[1., 2., 3., 4.]); let d = d.into_shape((2, 2)).unwrap(); println!("d shape {:?}", &d.shape()); let a = array![ [110., 120., 130., 140.,], [210., 220., 230., 240.,], [310.,...

I'm trying to implement a3c. There's one Global VarStore and each agent's local VarStores. My implementation is like > 1. agent action 2. get rewards 3. calc loss and grad...

I think this function should also needs to return error when target is empty. ```rust //make src varstore let vs = nn::VarStore::new(device); // src variables created let _ = model(&vs.root(),...

using bevy with tch-rs. Use bevy for a3c. struct `GlobalParam` for global weights. In thread function, collect actions with agent and send them to global. Then global update weights with...

I want to make `SliceInfo` for generic `ObsD` dimension. Like if `ObsD == Ix1` then `Array1::Slice_mut( sliceInfo_with_Ix1 )`, if `ObsD == Ix2` then `Array2::Slice_mut( sliceInfo_with_Ix2 )` `slice_mut` argument seems need...

Tested on Korean ttf file. "나뭇가지L.ttf"

### Description I need to remove title and default 3 buttons, but only resizable functionality alive. This is must have option for custom close,min,max buttons. ### Relevant platforms Windows

S - enhancement
DS - windows

![image](https://github.com/dimforge/bevy_rapier/assets/39656812/083d151f-f6a5-452c-87f9-3b743d4a5c4a) ```rust // setting Parent -> insert(TransformBundle::default()) Child -> insert(TransformBundle::default(), Collider::cuboid(1,1,1), **RigidBody::Fixed**) // **problem Parent = Transform [ scale(1,1,1), position(0,0,0) ] Child = Transform [ scale(1,1,1), position(-100, 100, 0) ]...

D-Medium
P-Medium
A-Integration