본문 바로가기

Computer55

[pandas] pd.isna() 사용 시 주의점: is False와 is not True의 차이점 ~ is not True ~ is False 위 두 개 statement는 파이썬에서 동일한 의미를 갖는 것으로 생각하기 쉽다, 그렇지만 pandas DataFrame의 메소드가 아니라, pandas에서 제공하는 기본 함수로서의 isna()를 사용할 때에는 주의가 필요하다. https://pandas.pydata.org/docs/reference/api/pandas.isna.html pandas.isna — pandas 1.4.4 documentation For scalar input, returns a scalar boolean. For array input, returns an array of boolean indicating whether each corresponding element is mis.. 2022. 9. 15.
[ipynb] 쥬피터 노트북에서 %와 !의 차이 https://stackoverflow.com/questions/45784499/what-is-the-difference-between-and-in-jupyter-notebooks What is the difference between ! and % in Jupyter notebooks? Both ! and % allow you to run shell commands from a Jupyter notebook. % is provided by the IPython kernel and allows you to run "magic commands", many of which include well-known shell stackoverflow.com ! calls out to a shell (in a new .. 2022. 9. 15.
[ML] 머신러닝 모델에서의 head, backbone이란? 태스크 : 주어진 텍스트를, HuggingFace에 serving되고 있는 Sentence Transformer를 활용하여 embedding 후, 분류하라 -> HuggingFace의 틀에 맞춰서 모델이 들어가 있으니, HuggingFace 사이트에서 각각 class와 attribute 등에 대한 문서를 살펴보도록 하자 -> HuggingFace의 'pipeline'기능은 모델 전체 기능을 활용하기보다, 선별적으로 사용하고 싶을 때 유용하다. 예를 들어 어떤 모델에서 ner(named entity recognition) 기능만 가져다 쓰고 싶다거나, 감성분석만 하고 싶다거나... 그래서 HuggingFace의 Feature Extraction Pipeline을 사용하려고 문서를 찾아보니... https:.. 2022. 8. 29.
Sequential Model 이란? model = Sequential() python - What is meant by sequential model in Keras - Stack Overflow What is meant by sequential model in Keras I have recently started working Tensorflow for deep learning. I found this statement model = tf.keras.models.Sequential() bit different. I couldn't understand what is actually meant and is there any stackoverflow.com There are two ways to build Keras models: sequen.. 2022. 7. 1.
[스크랩] jaehyeong 님의 Basic NLP [Basic NLP] Sequence-to-Sequence with Attention (velog.io) [Basic NLP] Sequence-to-Sequence with Attention Intro최근 몇 년간 Transformer 모델의 등장 이후 BERT, GPT, RoBERTa, XLNet, ELECTRA, BART 등과 같은 언어 모델(Language Model)이 매해 새로운 SOTA를 달성하며 등장하고 있다. 특히 언어모델의 경우 self-s velog.io [Basic NLP] Transformer (Attention Is All You Need) (velog.io) [Basic NLP] Transformer (Attention Is All You Need) Intro지난 포스트인 Seq.. 2022. 6. 27.
[스크랩] monologg님의 KoELECTRA 개발기 2주 간의 KoELECTRA 개발기 - 1부 - Monologg Blog 2주 간의 KoELECTRA 개발기 - 1부 2주 간의 KoELECTRA 개발을 마치고, 그 과정을 글로 남기려고 한다. 이 글을 읽으신 분들은 내가 했던 삽질(?)을 최대한 덜 하길 바라는 마음이다:) 1부에는 실제 학습을 돌리기 전까지의 과정을 다룰 monologg.kr 2주 간의 KoELECTRA 개발기 - 2부 - Monologg Blog 2주 간의 KoELECTRA 개발기 - 2부 2주 간의 KoELECTRA 개발을 마치고, 그 과정을 글로 남기려고 한다. 이 글을 읽으신 분들은 내가 했던 삽질(?)을 최대한 덜 하길 바라는 마음이다:) 2부에는 Pretraining, Finetuning 등을 다룰 예정이다. Gith mo.. 2022. 6. 27.