David Lenz

Results 13 comments of David Lenz

Experiencing the same issue on a Titan V ``` Traceback (most recent call last): File "map_embeddings.py", line 441, in main() File "map_embeddings.py", line 262, in main zw = xp.empty_like(z) File...

@jloveric In case you `make clean`, did you `make index` again before `make client_index d=10`? I forgot once and got stuck at `waiting channel to be ready...` -------------------- Having similar...

@hanxiao i think this is an truly amazing project, so you and your team are the ones to be thanked. Keep up the great work. I was able to successfully...

Hey @pxlong, did you manage to tune the learning rate? I tried ``` model.compile(loss='binary_crossentropy', metrics=['accuracy'], optimizer={{choice([RMSprop(lr={{uniform(0,1)}}), Adam(lr={{uniform(0,1)}}), SGD(lr={{uniform(0, 1)}})])}}) ``` but this returned ` File "temp_model.py", line 123 optimizer=space['optimizer']), Adam(lr=space['lr']),...

Hello @pianomanu, didnt get it to work yet, haven't had the time for much trying though. i did ``` adam = Adam(lr={{uniform(0,1)}}) model.compile(loss='binary_crossentropy', metrics=['accuracy'], optimizer={{choice([adam])}}) ``` but this says ```...

Thanks a lot @pianomanu ! This is acutally enough of a workaround for my usecase.

Thanks! example input (file called `test.txt` in the `./data/newspaper/` folder): `Amy Klobuchar's branded ice scraper.####Amy=O Klobuchar's=O branded=O ice=O scraper.=O` Code used for inference (am on windows): `work.bat` ``` set TASK_NAME="newspaper"...

I'm also very interested. Maybe try https://github.com/jwieting/para-nmt-50m dataset?