Installing LaTex 1. Download Tex Livehttps://mirrors.tuna.tsinghua.edu.cn/ 2. Click install-tl-windows3. Test1xelatex -v 4. bin/win32 path5.Tip: 123\usepackage{xeCJK} % 添加 xeCJK 包\setCJKmainfont{ 2024-05-07 #LaTex
MySQL Common Operations and Problems About INDEX ERROR 1071 (42000): Specified key was too long; max key length is 3072 bytes 1.2 1.1 Add index 2024-02-05
Python Concurrency: Multi-threading and Multi-processing In Python, ThreadPoolExecutor and ProcessPoolExecutor are part of the concurrent.futures module, which provides a high-level interface for asynchronously executing callables. These executors are desig 2024-01-30
Find Free Datasets Raw : https://careerfoundry.com/en/blog/data-analytics/where-to-find-free-datasets/ Google Dataset Search Kaggle Data.Gov Datahub.io UCI Machine Learning Repository Earth Data CERN Open Data Portal G 2023-12-20
Intensive Reading - MoCo Papers Notes Momentum Contrast for Unsupervised Visual Representation Learning ForewordIn contrast learning, there is a massive demand for negative samples.In a search scenario, we will try to construct as many ne 2023-11-27
Python removes illegal filename characters in Windows 12345def clean_filename(filename, replace='_'): illegal_chars = '<>:"/\\|?*' for char in illegal_chars: filename = filename.replace(char, replace) return 2023-11-26
Visual Studio Code - Python(Notebook) Related Questions 0. ForewordOriginal Article: https://stackoverflow.com/questions/72019083/how-do-i-solve-the-pylancereportmissingimports https://stackoverflow.com/questions/44515769/conda-is-not-recognized-as-intern 2023-11-19 #conda #Visual Studio Code