Alasdair Tran

Results 55 comments of Alasdair Tran

Yeah you're right! I had a go at running the experiment with `avg_outs` set to False, and it makes no difference to the loss (which makes sense since it's just...

Yes. If you don't want mixed precision training with apex, in the config file, just set `apex_opt_level` to `None`. Note that this will double the memory required in your GPU,...

Can you run `conda list | grep apex`? If it doesn't return anything, it means your apex installation has failed. If you scroll up a bit on the apex installation...

You can have a look at the [migration guide here](https://github.com/allenai/allennlp/releases/tag/v1.0.0). I believe the biggest change is in the dataloader API. In general, you can simply try to do an upgrade...

Yep you're right about the image folder. Those repeated log messages come from [here](https://github.com/alasdairtran/transform-and-tell/blob/c8da745646fbc4a823079cbe7bc8b75659b770b6/tell/data/dataset_readers/goodnews_flattened_glove.py#L76). Basically in the [for-loop](https://github.com/alasdairtran/transform-and-tell/blob/c8da745646fbc4a823079cbe7bc8b75659b770b6/tell/data/dataset_readers/goodnews_flattened_glove.py#L80) below it, if the program can't find any images, it will just...

When you call ``` tell train expt/goodnews/1_lstm_glove/config.yaml -f ``` that's really just a shortcut for ``` python -m tell.commands train expt/goodnews/1_lstm_glove/config.yaml -f ``` so the entry point of the program...

Do you use Anaconda Python? I think you can install mongo without admin access in Anaconda: conda install -c anaconda mongodb Otherwise I can give you a JSON dump if...

Ok sure. I'll extract and upload the JSON dump. It might take a few days. On Wed, 1 Jul 2020 at 22:57, Xuewen Yang wrote: > Yes, it works. I...

Cool good luck with setting up mongo then. The command to extract the JSON dump is easy, but it does probably take two or three days to upload the data...

I'm using mongod v4.2.15. It could be that your download is incomplete. The `nytimes-2020-04-21.gz` should be 61GB. The SHA256 is ```sh > shasum -a 256 nytimes-2020-04-21.gz 606e1a96c240a4ba574542d9fd2916172fe7625c88adc1d18613e059b4543aab nytimes-2020-04-21.gz ``` If...