frischzenger

Results 15 comments of frischzenger

which learning rate do you use? thanks

it report : AttributeError: 'VectorEnv' object has no attribute 'observation_space'

and I test many other pictures, but also 0 instance detected

and it hints some mode parameters are not in the checkpoint

i also test other COCO-InstanceSegmentation models, but nothing detected, what's the problem?

and i test official detectron2 it works well

the image GlobalDescriptor was not implemented.

you must support the details of platform which you use. such as python2, or python3, windows or fedora? i have met this problem under windows platform, python3. after look the...

``` def is_natural(hand): # Is this hand a natural blackjack? return sorted(hand) == [1, 10] ``` and i am also confused about natural, why here should be sorted?

``` def step(self, action): assert self.action_space.contains(action) if action: # hit: add a card to players hand and return self.player.append(draw_card(self.np_random)) if is_bust(self.player): terminated = True reward = -1.0 else: terminated =...