Yap Boon Peng

Results 17 comments of Yap Boon Peng

HI, thanks for your question. For other language, you would need: 1. A checkpoint of BERT pretrained on a corpus of your desired language; 2. Training and testing dataset in...

Hi Kevin, thanks for noticing and narrowing down the version incompatibility issue! So after doing some detective work, here's what I think happened to the tokenizers in different version of...

Hi Jamie, One way to do it is to first download the weights, vocab and config file to a local folder then set the `--model_name_or_path` flag to the path of...

You will only need the `pytorch_model.bin` along with `vocab.txt` and `config.json` under the same directory. It seems that the links for the vocab and config files are broken in the...

@freakboy3742 Thanks for your feedback! I finished the project description and added a risks section, let me know what you think 😄

@freakboy3742 I did some research this afternoon and have identified parts of asyncio library that I think could be reused: - `asyncio.base_futures` / `asyncio.futures` - `asyncio.base_tasks` / `asyncio.tasks` For the...

Updated proposal. 😄 @freakboy3742 It seems Java socket class does not support Unix domain address family. Support for it requires a third party library. I'm thinking to support only the...

## Week 1 Update ## (Temporary on hold due to schedule change) ### Goal ### Complete asyncio.coroutines implementations in voc [#788 Work in Progress] ### Relevant source codes ### -...

## Week 2 Update ## ### Goal ### Understands and implements exception related to asyncio [#817] ### Relevant source codes ### - [concurrent.futures._base.py](https://github.com/python/cpython/blob/3.6/Lib/concurrent/futures/_base.py) - [asyncio.base_futures.py](https://github.com/python/cpython/blob/3.6/Lib/asyncio/base_futures.py) - [asyncio.futures.py](https://github.com/python/cpython/blob/3.6/Lib/asyncio/futures.py) ### Summary ###...

Hi @rockobonaparte , I'm currently working on bringing in features specified in PEP 342 and PEP 380 to voc and it will take a while before I start event loop...