Zeyi Wang
Zeyi Wang
In my experience, when chex reports max traces exceeded, it's usually because of me passing parameters to the function with different shapes or data types. Is it possible for chex...
```python import trio import pickle pickle.dumps(trio) ``` gives ```python TypeError: cannot pickle '_ModuleWithDeprecations' object --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /tmp/ipykernel_9132/1773362268.py in 2 import pickle 3 ----> 4 pickle.dumps(trio)...
I read `subsync/subsync.py` and it seems there's too much processing in that. Maybe we should extract a Python API layer between the CLI and core code so users can choose...
## ❓Question I have hundreds of runs everyday and aim becomes fairly laggy quickly. What's the best way to clean up old runs?
I want to play an animation and wait until it finishes. I checked the docs and tutorials and I did not find an API that returns a promise or something....
I am currently using this script to setup my model: ```python import haiku as hk import jax import numpy as np import jax.numpy as jnp key = jax.random.PRNGKey(1) class MyModule(hk.Module):...
First of all, I want to thank the developers for this awesome project! It's simple, clean yet powerful. I really enjoyed playing with it. I'm currently studying at the University...
https://github.com/emina/rosette
The script looks roughly like follows: ```python graph = pygraphviz.AGraph(directed=True, imagepath=image_dir, dpi=72) graph.node_attr.update( imagescale=True, shape="box", imagepos="tc", fixed_size=True, labelloc="b", fontname="Courier New", ) graph.edge_attr.update(fontname="Courier New") graph.add_node(0, label="some label", width=2.5, height=4, image="image_path") #...
## General information ## Basic examination - [x] I have read through the [README](https://github.com/jeffreytse/zsh-vi-mode) page - [x] I have the latest version of zsh-vi-mode - [ ] I have tested...