본문 바로가기
반응형

전체 글209

[Linux/Unix] find 의 고급기능 파일을 찾을 때 find 명령어와 xargs 명령어를 파이프(|)로 묶어서 여러가지 기능을 사용을 했었는데 find 명령어에 대해서 자세히 찾아보니 다른 블로그에서 쉽게 보지 못했던 기능들이 있어서 정리를 해둔다. find 는 기본적으로 다음의 방법으로 사용을 한다. // 문법 $ find path operators // 현재 디렉토리(하위포함 이후 표현 동일함)에서 이름이 *.c 에 해당하는 결과 $ find . -name *.c // 루트(/) 디렉토리에서 최근 3일 이내에 수정된 자료의 결과 $ find / -mtime -3 // 사이즈가 512byte 보다 큰 결과 $ find . -size +512 // .o 로 끝나는 파일을 찾아서 모두 삭제 $ find . -name "*.o" -exec r.. 2022. 1. 8.
exec와 xargs 차이 exec와 xargs 차이 find . -name H* -exec ls -l {} \; executes the command ls -l on each individual file. find . -name H* | xargs ls -l constructs an argument list from the output of the find commend and passes it to ls. consider if the ouput of the find command produced: H1 H2 H3 the first command would execute ls -l H1 ls -l H2 ls -l H3 but the second would execute ls -l H1 H2 H3 2022. 1. 8.
이진 분류 알고리즘 Two Class Classification Algorithm https://www.youtube.com/watch?v=8hxewuzAhnc&list=PLV__TJh4WgdCI-qAyw6Jcnl4oIoY5Vj02&index=9 2021. 12. 12.
How to select algorithms for Azure Machine Learning A common question is “Which machine learning algorithm should I use?” The algorithm you select depends primarily on two different aspects of your data science scenario: What you want to do with your data? Specifically, what is the business question you want to answer by learning from your past data? What are the requirements of your data science scenario? Specifically, what is the accuracy, trai.. 2021. 12. 12.
반응형