xyang2013
xyang2013
It is a very nice project. Out of curiosity, how hard would it be to port it to Rust? Thank you.
Context: 1. Install gym-sokoban from the source: ```python install -e .``` 2. Running the following code in a Jupyter notebook: ``` import gym import gym_sokoban env = gym.make('Sokoban-v0') #env.reset() env.render(mode='human')...
Should soft_negatives defined as follow instead? ``` def deranged_shuffle(original): while True: shuffled = original.copy() random.shuffle(shuffled) if all(o != s for o, s in zip(original, shuffled)): return shuffled mnli = mnli.filter(lambda...
Could you please let me know what '4-way' means in the following article - like '24.4 (4-way)'? https://github.com/kvcache-ai/ktransformers/blob/main/doc/en/AMX.md Thanks
I experienced warnings and errors when executing the sample code: code: ``` for proc in procs: out, _ = proc.communicate() print(out[-10:]) ``` issues: ``` b'\x9f\x81\xdd\xbe\x99\x0e\x8ck|a' b'P\x8a\x8d\xc5\xc4\xf4\x0c\xd3\x9e\x03' b'\xe6\xb8?\xef\xf4\x10\x10\xe4\xd6\xf8' *** WARNING :...