grep searching only a specified data type
Such as only search python files
grep -ri "hello_world" --include=*.py
grep searching only a specified data type
Such as only search python files
grep -ri "hello_world" --include=*.py
Using the following command on linux Ubuntu
taskset --cpu-list 1-1 python XXX.py
The MAE paper from AI research of Meta is open sourced. This paper is interesting as it is the the BERT in CV.
Check it out from HERE if you are interested.
Below are from [1] to help locate the python package location:
When you install using conda install -c conda-forge folium
, the package will be placed in:
./anaconda3/envs/[name env]/lib/python3.7/site-packages/folium
When you install using pip (with a anaconda env activated), pip install folium
, the package will be placed in:
./anaconda3/lib/python3.7/site-packages/folium
[1]https://stackoverflow.com/questions/39811929/package-installed-by-conda-python-cannot-find-it
Just found a book in arxiv about DL interviewing questions (I did not realize that arxiv can publish such type of book. Pretty interesting to know). Well written. Share it here for anyone who want to improve your understanding about the ML/DL concepts or wants to prepare ML interviews.