Evgeniy Simonenko
Evgeniy Simonenko
I'll try to make time for that next week
https://github.com/Tiikara/vertx_sql_client_issue1369/blob/master/src/main/java/bug/reproduce/vertx/sql/client/issue1369/ReproduceVerticle.java I tried to reproduce the error, but in pure Java the system doesn't hang on commit. Unfortunately, I could not get the same behavior as in Kotlin. But nevertheless,...
I understand that the training of the representation network occurs through predicting the next latent state and calculating the error for this predicted state. Is my understanding correct? I'm still...
I've made some progress in understanding the system's functionality. It appears that the default gym environment doesn't natively support multiplayer capabilities. In light of this, I'm currently working on integrating...
Thank you for your response. I attempted to set the observation_shape to (3, 128, 128) in both the env and model configurations. However, I encountered an error with the following...
Thank you for your detailed response. I'd like to propose a potential enhancement to the network architecture, focusing on the flexibility of channel counts in convolutional layers. While the current...
Thank you for your prompt reply. Indeed, in my experiments, I observed negative values for perceptual loss in TensorBoard. Upon examining the code, I believe these values are derived from...
@ruiheng123 Thank you for your explanation. I'd like to clarify a few points. Does the orange line represent training from scratch? It's intriguing to see that the network converged to...
We encountered the same problem. It seems to us that inferring from defaultValues only is not convenient and not obvious. We end up writing more code than we'd like to....
@LeCarbonator We're currently experimenting with this implementation approach. Here's what we're getting now: ``` useForm({ defaultValues: { name: '', case1: '', }, validators: { onMount: z.object({ name: z.string().min(1), case1: z.string().nullable()...