Jan Trienes
Jan Trienes
I agree with @grusky that it would be quite important to let the user remove the `-m` flag from the set of options, if needed. For example when evaluating languages...
I can confirm that this issue occurs. My upload works just fine as well. However, the delete callback returns `true` although the file is still present at the S3. My...
I ended up using the AWS sdk method for this: ``` javascript S3.aws.deleteObject({ Bucket: 'bucket', Key: 'objectKey' }, function(err, data) { if (err) { console.log(err); } console.log(data); }); ``` The...
Could you please try a `pip install -U deduce>=1.0.2,
We are interested in cleaning cached models which were not accessed in the past N days. Would it make sense to provide an option like `--last_access N` which returns all...
Hi @LuJunru thanks for your reply. ROUGE, SARI and BLEU have several parameters and results depend on the preprocessing. So I think we have to do a bit of guesswork...
I noticed TSAR is not listed as colocated workshop on the EMNLP contents and also does not have DOIs, yet. https://aclanthology.org/volumes/2022.tsar-1/
We ended up creating a cron job for this. ``` # Ensure huggingface cache files being group-writeable */10 * * * * root chmod -R g+rwxs [HF_HUB_CACHE] >> /var/log/cron 2>&1...
Is there any update on this? To return a `StreamingResponse` from a FastAPI endpoint, our current workaround directly uses the generator of `AsyncOpenAI` client. Ideally, we’d love to have this...