fastglow
fastglow t1_jbz854s wrote
This post does not specify the problem with ChatGPT as it purports to, nor does it solve anything.
fastglow t1_jby6lwk wrote
Reply to comment by Hootiehoo92 in [homemade] Roast-beef Sandwich by Hootiehoo92
Looks amazing. I will have to try that Calabrian chili sauce.
fastglow t1_jbupkr9 wrote
Reply to [P] Introducing confidenceinterval, the long missing python library for computing confidence intervals by jacobgil
Very cool. Thanks for making this.
fastglow t1_j6t6el1 wrote
"DL roles" have only existed for like a decade. Machine learning engineers will continue to be in demand, though the required skills will change.
fastglow t1_j0zqs33 wrote
Reply to comment by vprokopev in [D] Why are we stuck with Python for something that require so much speed and parallelism (neural networks)? by vprokopev
It sounds like your issues are more about PyTorch than Python itself. The need for vectorization is not specific to a language, though some libraries make it easier than others. If you want automatic vectorization, have a look at Jax, which has grown tremendously in the past couple years.
fastglow t1_j0zlqhj wrote
Reply to [D] Why are we stuck with Python for something that require so much speed and parallelism (neural networks)? by vprokopev
- Using libraries available in a given language does not mean you are not programming in that language.
- Python is a very popular, flexible, and easy language with a huge dev community. This drives development of ML tools for Python, which in turn increases adoption of Python for ML.
fastglow t1_iyf7w07 wrote
Reply to comment by Least_Pollution7078 in [D] Can area chair ask all reviewers to be in a meeting? by Least_Pollution7078
Ah! I did not know that (and have never done that as a reviewer). I can't say I agree with the new process, but you have your answer.
fastglow t1_iyeylms wrote
I agree with your concerns. ICLR's reviewer's guide states that "During the discussion phase, reviewers, authors and area chairs engage in asynchronous discussion, and authors are allowed to revise their submissions to address concerns that arise." Note the word asynchronous. I think everything should be done on OpenReview, not through outside, off-the-record discussions. I would express my concerns to the AC, and perhaps to the PCs if necessary.
fastglow t1_ivof1yp wrote
Reply to comment by natural_language_guy in [D] Is there anything like beam search with BERT? by natural_language_guy
Several recent papers on nested NER provide a code repo. This one uses the Transformers library: https://github.com/yahshibu/nested-ner-tacl2020-transformers
fastglow t1_ivlif23 wrote
Have you looked into nested NER? Various approaches exist, e.g. span-based, hypergraph-based, etc. Check this paper for example: https://arxiv.org/abs/2203.10545
fastglow t1_iutk2xp wrote
Reply to comment by DeepGamingAI in [D] What are the benefits of being a reviewer? by Signal-Mixture-4046
Marx answered this like 150 years ago.
fastglow t1_iusllds wrote
I see it mainly as one of my responsibilities as a researcher: I submit papers, so I should also review papers. If not us, then who?
But I think it does benefit me in that I have gotten better at distinguishing good research ideas from bad ones, and good experimental protocols from bad ones, good reporting from bad reporting, etc.
fastglow t1_iuj2yax wrote
Reply to comment by viln in [homemade] pizza by Robertobeekos
I can not imagine a better looking pizza. If I could make this, I would binge it hard.
fastglow t1_iuanmh5 wrote
Reply to comment by [deleted] in [I Ate] A New York slice by girouxfilms
Are you saying all critiques are valid?
fastglow t1_iuagitr wrote
Reply to comment by [deleted] in [I Ate] A New York slice by girouxfilms
Well, I guess you told OP. Well done.
fastglow t1_iuadj6c wrote
Reply to comment by [deleted] in [I Ate] A New York slice by girouxfilms
Who knows? OP does. And it was the one in Brooklyn. And they make a great slice of pizza.
fastglow t1_iuact59 wrote
Reply to comment by girouxfilms in [I Ate] A New York slice by girouxfilms
Great pizza place. Your pic made me salivate!
fastglow t1_iuabfnd wrote
Reply to comment by girouxfilms in [I Ate] A New York slice by girouxfilms
The one in Brooklyn?
fastglow t1_iuaazov wrote
Reply to comment by [deleted] in [I Ate] A New York slice by girouxfilms
Rosa's in Brooklyn?
fastglow t1_iu0n7n2 wrote
Reply to [i ate] pork chop over rice by puffpuffpa-puff
Is that rice or risotto? Anyway, looks delicious.
fastglow t1_iu08q1o wrote
I think that process is called called image stitching (if your data is images).
fastglow t1_itmotdk wrote
It's been applied to text-to-speech: https://arxiv.org/abs/2104.01409
fastglow t1_itlyz8a wrote
Reply to comment by ethereumturk in [D] Most efficient open source language model ? by Meddhouib10
SBert is for comparing sentences/phrases. No reason to use that over a regular transformer encoder-decoder for language modelling, and getting that to process 2000 tokens in less than 4 seconds would be challenging without efficiency-augmenting methods like quantization, pruning, distillation, etc.
fastglow t1_ithh6eu wrote
Reply to comment by idrajitsc in [D] Comprehension issues with papers from non-English speakers by Confused_Electron
>primitives cuDNN
That is not grammatical
fastglow t1_jc2xo03 wrote
Reply to [R] Stanford-Alpaca 7B model (an instruction tuned version of LLaMA) performs as well as text-davinci-003 by dojoteef
Nice work