Alex Wang

Results 7 issues of Alex Wang

When I have a lda2vec model, how can I predit the vector of a document with this model. I couldn't find the prediction method in any of following files :...

While I modify the example code like this: ``` import torch from torch.optim.lr_scheduler import StepLR, ExponentialLR from torch.optim.sgd import SGD from warmup_scheduler import GradualWarmupScheduler if __name__ == '__main__': model =...

![image](https://user-images.githubusercontent.com/8745241/124419040-59b49200-dd8f-11eb-8405-6da411568c51.png)

Hi: The prepare_roidb method in roidb.py claimed to precompute the maximum overlap between each ROI and each ground-truth box. However, I didn't see any information about ROI calculation. And the...

public void testStreamAudioPlayer() throws Exception{ PipedAudioStream file = new PipedAudioStream("http://mp3.streampower.be/stubru-high.mp3"); TarsosDSPAudioInputStream stream = file.getMonoStream(44100, 0.0, -1); AudioDispatcher d; d = new AudioDispatcher(stream, 1024, 512); d.addAudioProcessor(new AudioPlayer(JVMAudioInputStream.toAudioFormat(d.getFormat()))); d.run(); } I run...

When I use four GPUs to training cosface model, exception occurs: ``` ValueError: Variable conv1_/conv2d/kernel already exists, disallowed. Did you mean to set reuse=True or reuse=tf.AUTO_REUSE in VarScope? Originally defined...

Hi, when I have done training a lda2vec model, how can I use this model to infer the vector of a new document. I couldn't find any inference function in...