Jixun Yao

Results 3 issues of Jixun Yao

https://github.com/ljpzzz/machinelearning/blob/master/reinforcement-learning/policy_gradient.py 直接复制运行 episode: 0 Evaluation Average Reward: 15.0 episode: 100 Evaluation Average Reward: 10.2 episode: 200 Evaluation Average Reward: 9.2 episode: 300 Evaluation Average Reward: 9.3 episode: 400 Evaluation Average...

I download the montreal-forced-aligner_linux.tar.gz instead of using conda, and then I run this commend: `../../tools/montreal-forced-aligner/bin/mfa_align dataset/wav16/ lexicon/librispeech-lexicon.txt ../../tools/montreal-forced-aligner/pretrained_models/english.zipdataset/TextGrid/ -j 10 -v` after running, I find the TextGrid is empty

I try to test gym+mujoco using this code ``` import gym env = gym.make('Walker2d-v1') for i_episode in range(20): observation = env.reset() for t in range(100): env.render() action = env.action_space.sample() observation,...