├── .gitignore ├── LLM_note ├── 20240913_sequence_parallel.md ├── 20250406_attn_expert_dist.md ├── 20250411_rtp_llm.md └── 20250413_megascale_infer.md ├── ML_in_action ├── 03-decision-tree.ipynb ├── 04cumsum.py ├── 05-logistic-regression.ipynb ├── 05parzenWindow.py ├── 06-svm.ipynb ├── 07-adaboost.ipynb ├── 09TreeRegression.ipynb ├── classifierStorage.txt ├── ex0.txt ├── ex00.txt ├── ex2.txt ├── ex2test.txt ├── horseColicTest.txt ├── horseColicTest2.txt ├── horseColicTraining.txt ├── horseColicTraining2.txt ├── lenses.txt ├── p06liziqun.py ├── p07gauss2dim.py ├── p08spectualRefl.py ├── p09mySpectral.py ├── p10testForsklearn.py ├── p13dezhouPuke.py ├── p14kNN.py ├── p15_decision_Tree.py ├── readme.md ├── testSet.txt └── testSet_svm.txt ├── README.md ├── cuda_snippet ├── 001_cuda_instruct_issue.md ├── 002_bank_conflict.md ├── 003_gemm.md ├── 004_cud_usage.md ├── 004_reduce.md ├── 004_reduce_benchmark │ ├── CMakeLists.txt │ ├── Makefile │ ├── reduce_sum.cu │ ├── reduce_sum.ptx │ ├── reduce_sum3.cu │ ├── reduce_sum_triton.py │ ├── reduce_sum_triton2.py │ ├── run.sh │ ├── utils.cc │ └── utils.h ├── 005_transpose │ ├── MakeFile │ ├── transpose.cu │ └── transpose_triton.py ├── 006_topk_gating_and_grouped_topk │ ├── grouped_topk_fused.cu │ ├── sgl_grouped_topk.py │ ├── topk_gating.py │ └── topk_gating_triton.py ├── call_eval.py └── call_openai.py ├── cv_python ├── 01usePIL.py ├── 02circleMap.py ├── 03useNumpy.py ├── GuiTest.py ├── digits.png ├── imageSearch │ ├── colordescriptor.py │ ├── dataset │ │ └── 100000.png │ ├── index.csv │ ├── index.py │ ├── queries │ │ └── 103100.png │ ├── readme.md │ ├── search.py │ ├── searcher.py │ └── structuredescriptor.py ├── imtools.py ├── knn_handwritedata.npz ├── lena.jpg ├── matplotTest.py ├── opencv-python.ipynb ├── opencvTest (2).py ├── opencvTest.py ├── p11imgSegBySpectual.py ├── p12KLtrans.py ├── readme.md ├── 图像ROI.py ├── 图像的基本操作.py └── 物体跟踪.py ├── data_analyse └── readme.md ├── gaussData.txt ├── mxnet ├── DenseNet.ipynb ├── NetworkInNetwork.ipynb ├── alexnet.md.ipynb ├── batch_norm.md ├── googLenet.ipynb ├── readme.md ├── resnet.ipynb └── vggnet.ipynb ├── myTools.py ├── my_deep_learning_lib ├── backward.py ├── network2.py └── readme.md ├── nlp_read_list.md ├── sample.txt └── 禅宗与阳明心学 ├── 六祖坛经 └── 阳明心学.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/.gitignore -------------------------------------------------------------------------------- /LLM_note/20240913_sequence_parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/LLM_note/20240913_sequence_parallel.md -------------------------------------------------------------------------------- /LLM_note/20250406_attn_expert_dist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/LLM_note/20250406_attn_expert_dist.md -------------------------------------------------------------------------------- /LLM_note/20250411_rtp_llm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/LLM_note/20250411_rtp_llm.md -------------------------------------------------------------------------------- /LLM_note/20250413_megascale_infer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/LLM_note/20250413_megascale_infer.md -------------------------------------------------------------------------------- /ML_in_action/03-decision-tree.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/03-decision-tree.ipynb -------------------------------------------------------------------------------- /ML_in_action/04cumsum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/04cumsum.py -------------------------------------------------------------------------------- /ML_in_action/05-logistic-regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/05-logistic-regression.ipynb -------------------------------------------------------------------------------- /ML_in_action/05parzenWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/05parzenWindow.py -------------------------------------------------------------------------------- /ML_in_action/06-svm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/06-svm.ipynb -------------------------------------------------------------------------------- /ML_in_action/07-adaboost.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/07-adaboost.ipynb -------------------------------------------------------------------------------- /ML_in_action/09TreeRegression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/09TreeRegression.ipynb -------------------------------------------------------------------------------- /ML_in_action/classifierStorage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/classifierStorage.txt -------------------------------------------------------------------------------- /ML_in_action/ex0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/ex0.txt -------------------------------------------------------------------------------- /ML_in_action/ex00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/ex00.txt -------------------------------------------------------------------------------- /ML_in_action/ex2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/ex2.txt -------------------------------------------------------------------------------- /ML_in_action/ex2test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/ex2test.txt -------------------------------------------------------------------------------- /ML_in_action/horseColicTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/horseColicTest.txt -------------------------------------------------------------------------------- /ML_in_action/horseColicTest2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/horseColicTest2.txt -------------------------------------------------------------------------------- /ML_in_action/horseColicTraining.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/horseColicTraining.txt -------------------------------------------------------------------------------- /ML_in_action/horseColicTraining2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/horseColicTraining2.txt -------------------------------------------------------------------------------- /ML_in_action/lenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/lenses.txt -------------------------------------------------------------------------------- /ML_in_action/p06liziqun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/p06liziqun.py -------------------------------------------------------------------------------- /ML_in_action/p07gauss2dim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/p07gauss2dim.py -------------------------------------------------------------------------------- /ML_in_action/p08spectualRefl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/p08spectualRefl.py -------------------------------------------------------------------------------- /ML_in_action/p09mySpectral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/p09mySpectral.py -------------------------------------------------------------------------------- /ML_in_action/p10testForsklearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/p10testForsklearn.py -------------------------------------------------------------------------------- /ML_in_action/p13dezhouPuke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/p13dezhouPuke.py -------------------------------------------------------------------------------- /ML_in_action/p14kNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/p14kNN.py -------------------------------------------------------------------------------- /ML_in_action/p15_decision_Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/p15_decision_Tree.py -------------------------------------------------------------------------------- /ML_in_action/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/readme.md -------------------------------------------------------------------------------- /ML_in_action/testSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/testSet.txt -------------------------------------------------------------------------------- /ML_in_action/testSet_svm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/ML_in_action/testSet_svm.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/README.md -------------------------------------------------------------------------------- /cuda_snippet/001_cuda_instruct_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/001_cuda_instruct_issue.md -------------------------------------------------------------------------------- /cuda_snippet/002_bank_conflict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/002_bank_conflict.md -------------------------------------------------------------------------------- /cuda_snippet/003_gemm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/003_gemm.md -------------------------------------------------------------------------------- /cuda_snippet/004_cud_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_cud_usage.md -------------------------------------------------------------------------------- /cuda_snippet/004_reduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_reduce.md -------------------------------------------------------------------------------- /cuda_snippet/004_reduce_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_reduce_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /cuda_snippet/004_reduce_benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_reduce_benchmark/Makefile -------------------------------------------------------------------------------- /cuda_snippet/004_reduce_benchmark/reduce_sum.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_reduce_benchmark/reduce_sum.cu -------------------------------------------------------------------------------- /cuda_snippet/004_reduce_benchmark/reduce_sum.ptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_reduce_benchmark/reduce_sum.ptx -------------------------------------------------------------------------------- /cuda_snippet/004_reduce_benchmark/reduce_sum3.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_reduce_benchmark/reduce_sum3.cu -------------------------------------------------------------------------------- /cuda_snippet/004_reduce_benchmark/reduce_sum_triton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_reduce_benchmark/reduce_sum_triton.py -------------------------------------------------------------------------------- /cuda_snippet/004_reduce_benchmark/reduce_sum_triton2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_reduce_benchmark/reduce_sum_triton2.py -------------------------------------------------------------------------------- /cuda_snippet/004_reduce_benchmark/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_reduce_benchmark/run.sh -------------------------------------------------------------------------------- /cuda_snippet/004_reduce_benchmark/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_reduce_benchmark/utils.cc -------------------------------------------------------------------------------- /cuda_snippet/004_reduce_benchmark/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/004_reduce_benchmark/utils.h -------------------------------------------------------------------------------- /cuda_snippet/005_transpose/MakeFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/005_transpose/MakeFile -------------------------------------------------------------------------------- /cuda_snippet/005_transpose/transpose.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/005_transpose/transpose.cu -------------------------------------------------------------------------------- /cuda_snippet/005_transpose/transpose_triton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/005_transpose/transpose_triton.py -------------------------------------------------------------------------------- /cuda_snippet/006_topk_gating_and_grouped_topk/grouped_topk_fused.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/006_topk_gating_and_grouped_topk/grouped_topk_fused.cu -------------------------------------------------------------------------------- /cuda_snippet/006_topk_gating_and_grouped_topk/sgl_grouped_topk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/006_topk_gating_and_grouped_topk/sgl_grouped_topk.py -------------------------------------------------------------------------------- /cuda_snippet/006_topk_gating_and_grouped_topk/topk_gating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/006_topk_gating_and_grouped_topk/topk_gating.py -------------------------------------------------------------------------------- /cuda_snippet/006_topk_gating_and_grouped_topk/topk_gating_triton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/006_topk_gating_and_grouped_topk/topk_gating_triton.py -------------------------------------------------------------------------------- /cuda_snippet/call_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/call_eval.py -------------------------------------------------------------------------------- /cuda_snippet/call_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cuda_snippet/call_openai.py -------------------------------------------------------------------------------- /cv_python/01usePIL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/01usePIL.py -------------------------------------------------------------------------------- /cv_python/02circleMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/02circleMap.py -------------------------------------------------------------------------------- /cv_python/03useNumpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/03useNumpy.py -------------------------------------------------------------------------------- /cv_python/GuiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/GuiTest.py -------------------------------------------------------------------------------- /cv_python/digits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/digits.png -------------------------------------------------------------------------------- /cv_python/imageSearch/colordescriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/imageSearch/colordescriptor.py -------------------------------------------------------------------------------- /cv_python/imageSearch/dataset/100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/imageSearch/dataset/100000.png -------------------------------------------------------------------------------- /cv_python/imageSearch/index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/imageSearch/index.csv -------------------------------------------------------------------------------- /cv_python/imageSearch/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/imageSearch/index.py -------------------------------------------------------------------------------- /cv_python/imageSearch/queries/103100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/imageSearch/queries/103100.png -------------------------------------------------------------------------------- /cv_python/imageSearch/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/imageSearch/readme.md -------------------------------------------------------------------------------- /cv_python/imageSearch/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/imageSearch/search.py -------------------------------------------------------------------------------- /cv_python/imageSearch/searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/imageSearch/searcher.py -------------------------------------------------------------------------------- /cv_python/imageSearch/structuredescriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/imageSearch/structuredescriptor.py -------------------------------------------------------------------------------- /cv_python/imtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/imtools.py -------------------------------------------------------------------------------- /cv_python/knn_handwritedata.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/knn_handwritedata.npz -------------------------------------------------------------------------------- /cv_python/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/lena.jpg -------------------------------------------------------------------------------- /cv_python/matplotTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/matplotTest.py -------------------------------------------------------------------------------- /cv_python/opencv-python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/opencv-python.ipynb -------------------------------------------------------------------------------- /cv_python/opencvTest (2).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/opencvTest (2).py -------------------------------------------------------------------------------- /cv_python/opencvTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/opencvTest.py -------------------------------------------------------------------------------- /cv_python/p11imgSegBySpectual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/p11imgSegBySpectual.py -------------------------------------------------------------------------------- /cv_python/p12KLtrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/p12KLtrans.py -------------------------------------------------------------------------------- /cv_python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/readme.md -------------------------------------------------------------------------------- /cv_python/图像ROI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/图像ROI.py -------------------------------------------------------------------------------- /cv_python/图像的基本操作.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/图像的基本操作.py -------------------------------------------------------------------------------- /cv_python/物体跟踪.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/cv_python/物体跟踪.py -------------------------------------------------------------------------------- /data_analyse/readme.md: -------------------------------------------------------------------------------- 1 | python数据分析 2 | -------------------------------------------------------------------------------- /gaussData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/gaussData.txt -------------------------------------------------------------------------------- /mxnet/DenseNet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/mxnet/DenseNet.ipynb -------------------------------------------------------------------------------- /mxnet/NetworkInNetwork.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/mxnet/NetworkInNetwork.ipynb -------------------------------------------------------------------------------- /mxnet/alexnet.md.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/mxnet/alexnet.md.ipynb -------------------------------------------------------------------------------- /mxnet/batch_norm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/mxnet/batch_norm.md -------------------------------------------------------------------------------- /mxnet/googLenet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/mxnet/googLenet.ipynb -------------------------------------------------------------------------------- /mxnet/readme.md: -------------------------------------------------------------------------------- 1 | mxnet的一些应用 2 | -------------------------------------------------------------------------------- /mxnet/resnet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/mxnet/resnet.ipynb -------------------------------------------------------------------------------- /mxnet/vggnet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/mxnet/vggnet.ipynb -------------------------------------------------------------------------------- /myTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/myTools.py -------------------------------------------------------------------------------- /my_deep_learning_lib/backward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/my_deep_learning_lib/backward.py -------------------------------------------------------------------------------- /my_deep_learning_lib/network2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/my_deep_learning_lib/network2.py -------------------------------------------------------------------------------- /my_deep_learning_lib/readme.md: -------------------------------------------------------------------------------- 1 | 用python实现的部分深度学习的功能性代码 2 | 3 | test 4 | -------------------------------------------------------------------------------- /nlp_read_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/nlp_read_list.md -------------------------------------------------------------------------------- /sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/sample.txt -------------------------------------------------------------------------------- /禅宗与阳明心学/六祖坛经: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/禅宗与阳明心学/六祖坛经 -------------------------------------------------------------------------------- /禅宗与阳明心学/阳明心学.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonFive/cv_nlp_deeplearning/HEAD/禅宗与阳明心学/阳明心学.md --------------------------------------------------------------------------------