Eugene Yang
Eugene Yang
Suggest closing this issue.
@Arsennnic Just try catch the exception will do the job as well :) ```python from win10toast import ToastNotifier toaster = ToastNotifier() try: toaster.show_toast("Test", "Hello world!", duration=None) except TypeError: pass ```...
As the structure of this collection will be very similar to HC4, should we just reuse `HC4Doc` defined in `./datasets/hc4.py`?
@seanmacavaney For the directory and namespace structure, do you think `neuclir/22` would be better (both `neuclir` and `neuclir/22` are dummy levels)? This could accommodate future datasets/topics to be under neuclir...
Sure thing!
@luyug I'm wondering how long are these spans? From what I understand, you were using `$MAX_LENGTH` in the scripts for setting the length. Can you share the values you used...
Here is the way to reproduce the exception. I first start training from the model downloaded from huggingface. ``` HF_DATASETS_CACHE="/expscratch/eyang/cache/datasets" TOKENIZERS_PARALLELISM="false"\ python run_co_pre_training.py \ --output_dir ./test/bert-base-cased/ \ --model_name_or_path bert-base-cased \...
Thank you for the reply! Isn't setting `model_path=None` basically telling the trainer to start from scratch and ignore the checkpoint?
Would it makes more sense to put the path of the checkpoint we want to resume from at [here](https://github.com/luyug/Condenser/blob/abf9894aab30b0e9c227bed56d4713d3e545dc3a/run_co_pre_training.py#L166) (like `./test/bert-base-cased/checkpoint-1` in the example) and leave the rest of the...
I think use w2v is a good option. Is it possible to create make the REST API more like a proxy instance for the python API? In that case you...