Guoqiang Zhang

Results 7 comments of Guoqiang Zhang

@kahing could you add a linux arm64 binary to the release? we want to be able to use goofys in Graviton2 Arm64-based EC2 instances. it is hard to compile as...

@davidsebfischer @grst @aidarripoll all, not sure if you saw this recent new package: https://github.com/lhe17/nebula This package provides a negative binomial distribution model for the random effect, which might be better...

> How would you like to manage authentication? You can also run in server mode without any authentication. We are a small group in a bigger organization. We’d like to...

> How about putting nginx or Apache in front of cirrocumulus and using basic authentication? This sounds better. Do the users need to make it to Static Websites? Does the...

Thanks @joshua-gould . I was able to setup cirrocumulus as a Static Website behind nginx. For those who are new to deploying web apps as me, here are a few...

after reading into the code, I just did this: ``` slide_path = 'xxx.svs' locations = np.load('path_to_the_index_file_of_the_feature.index.npz')['arr_0'] attention = np.load('path_to_the_attention_score_numpy_array_file._att.npz')['arr_0'] sf.util.location_heatmap( locations=locations, values=attention, slide=slide_path, tile_px=224, tile_um=112, filename='xxx.png' ) ``` I believe...