본문 바로가기

분류 전체보기

(86)
Docker container 이미지로 만들고 다른 사람과 파일로 공유하기 docker container를 image로 만들어서 다른 사람과 공유하기 container를 image로 만들기 $ docker stop 컨테이너이름 ## 사용하던 container 중지 $ docker commit [OPTIONS] 컨테이너이름 [이미지이름:TAG] https://yoo11052.tistory.com/144 만들어진 도커 이미지 다른사람과 공유하기 github에 올려서 공유, docker registry에 올려서 공유 등등 다양한 방법이 있음 도커 이미지 ‘파일’로 만들어서 다른사람과 공유하는 방법 $ docker save -o [파일이름.tar] [이미지이름] tar.gz도 가능 도커(Docker) : 이미지 공유하기 만약 “Error: open /tmp/docker-import-1..
[메일] 외국 논문 저자에게 메일 보내기 https://powerofsummary.tistory.com/178
[c++] undefined reference to 에러 Microsoft SEAL을 기반으로 작성한 Classification 코드를 컴파일하고 실행하려는 도중, 다음과 같은 에러가 발생했다. /usr/bin/ld: CMakeFiles/my_test.dir/secMLClass.cpp.o: in function `NB_BreastC_ServerCentric(int, int, std::shared_ptr, seal::GaloisKeys&, seal::Decryptor&, seal::BatchEncoder&, seal::Encryptor&, seal::Evaluator&, std::vector, int, std::vector const&, std::basic_ofstream&)': secMLClass.cpp:(.text+0x4980): undefined refer..
.Net 이란 Microsoft SEAL을 설치하는데, readme 파일에 .NET 뭐시기... 뭐 또 설치하라고 나와있어서 이게 뭔가 하고 살펴봤다. Microsoft SEAL provides a .NET Standard library that wraps the functionality in Microsoft SEAL for use in .NET development. .Net?이란 무엇인가요? - 닷넷 설명 - AWS 개발 용이성 .NET은 개발자 작업을 용이하게 하는 많은 도구를 포함하기 때문에 개발자들이 선호합니다. 예를 들어, 개발자는 Visual Studio 제품군을 사용하여 코드를 더 빠르게 작성하고, 효율적으 aws.amazon.com
C드라이브 용량이 부족할 때 1. 용량정리 https://www.youtube.com/watch?v=2TePF-gClh8
[Git] 특정 repository에 폴더 push https://may9noy.tistory.com/709
Another git process seems to be running in this repository, e.g.an editor opened by 'git commit'. Please make sure all processesare terminated then try again. If it still fails, a git processmay have crashed in this repository earlier:remove the file ma.. https://joycestudios.tistory.com/98
[Transformer] OSError: [E941] Can't find model 'en'. [에러 전문] OSError: [E941] Can't find model 'en'. It looks like you're trying to load a model from a shortcut, which is obsolete as of spaCy v3.0. To load the model, use its full name instead: nlp = spacy.load("en_core_web_sm") [해결 방법] spacy_en = spacy.load('en') 대신에 spacy_en = spacy.load('en_core_web_sm') 사용하기 아마 버전이 업그레이드 되면서 이런 오류가 뜬 것 같다.