Computer83 ChatGPT ChatGPT, 지나가는 유행일지 breakthrough일지 아직까지 잘 모르겠다. 확실한 것은 사람인지 기계인지 모를 정도의 답변이 나오고 있고 이제는 대부분의 사람들이 ChatGPT를 알고 있다는 점이다. 시간이 되는대로 관련된 정보를 정리하기 위해 ChatGPT 카테고리를 만들었다. 기술적인 부분부터 사용과 관련된 부분까지 관심있는 정보들을 정리할 예정이다. 첨부 이미지 출처: https://www.bing.com/search?q=Bing+AI&showconv=1&FORM=hpcodx 2023. 3. 7. python editdistance library 속도 비교(timeit) python editdistance library를 검색하면 다양한 라이브러리가 나옵니다. 그중 editditsance, python-Levenshtein에 대해 속도 비교한 내용입니다. timeit을 배우려고 timeit으로 속도 비교를 해봤습니다. 참고 1, editdistance, https://github.com/roy-ht/editdistance 참고 2, python-Levenshtein, https://maxbachmann.github.io/Levenshtein/ 참고 3, timeit, https://docs.python.org/ko/3/library/timeit.html [timeit — 작은 코드 조각의 실행 시간 측정 — Python 3.11.1 문서 timeit — 작은 코드 조각의.. 2022. 12. 8. Bert Examples 1) huggingface bert를 많이 사용 huggingface.co/transformers/notebooks.html 🤗 Transformers Notebooks You can find here a list of the official notebooks provided by Hugging Face. Also, we would like to list here interesting content created by the community. I... huggingface.co 2) best practice: bert를 classification에 사용 colab.research.google.com/github/huggingface/notebooks/blob/master/examples/text_cla.. 2021. 4. 30. symbolic link 깨져 있는지 확인하기 symbolic link가 깨져 있는 경우에는 다음과 같이 확인하면 됨 BROKEN_LINK=$(find /path/to -type l -xtype l | wc -l) if [ $BROKEN_LINK -gt 0 ]; then echo -e "CHECK BROKEN_LINK:\t$/path/to" error fi ref : https://www.commandlinefu.com/commands/view/8260/find-broken-symlinks 2018. 10. 1. 이전 1 2 3 4 5 6 7 ··· 21 다음