From c27ca2838cf2d0d877b812c95693ac588b24d7b2 Mon Sep 17 00:00:00 2001 From: zcxboy <48000909+zcxboy@users.noreply.github.com> Date: Tue, 27 Jun 2023 02:54:56 +0000 Subject: [PATCH 01/10] =?UTF-8?q?=E6=96=B0=E5=BB=BAjupyter=20notebook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Exercises/1.1.ipynb | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Exercises/1.1.ipynb diff --git a/Exercises/1.1.ipynb b/Exercises/1.1.ipynb new file mode 100644 index 0000000..2be17a3 --- /dev/null +++ b/Exercises/1.1.ipynb @@ -0,0 +1,45 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n" + ] + } + ], + "source": [ + "a = 10\n", + "\n", + "print(a)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.8" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 4d223de1d3296fe644903968118de694200e5bd8 Mon Sep 17 00:00:00 2001 From: zcxboy <48000909+zcxboy@users.noreply.github.com> Date: Tue, 27 Jun 2023 02:57:27 +0000 Subject: [PATCH 02/10] add --- Exercises/1.1.ipynb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Exercises/1.1.ipynb b/Exercises/1.1.ipynb index 2be17a3..2b1be42 100644 --- a/Exercises/1.1.ipynb +++ b/Exercises/1.1.ipynb @@ -1,8 +1,16 @@ { "cells": [ + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 引言" + ] + }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 2, "metadata": {}, "outputs": [ { From 5dba8b23f49cde1f5e13965454f66ff2337be964 Mon Sep 17 00:00:00 2001 From: zcxboy <48000909+zcxboy@users.noreply.github.com> Date: Wed, 28 Jun 2023 02:43:45 +0000 Subject: [PATCH 03/10] 1 --- Exercises/1.1.ipynb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Exercises/1.1.ipynb b/Exercises/1.1.ipynb index 2b1be42..9a6a833 100644 --- a/Exercises/1.1.ipynb +++ b/Exercises/1.1.ipynb @@ -8,6 +8,12 @@ "# 引言" ] }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [] + }, { "cell_type": "code", "execution_count": 2, From a2ff871d29d7e09c4fec56077dab22136084d291 Mon Sep 17 00:00:00 2001 From: zcxboy <48000909+zcxboy@users.noreply.github.com> Date: Fri, 14 Jul 2023 10:00:32 +0000 Subject: [PATCH 04/10] submit --- DataStructure-BeautyOfAlgorithm | 1 + Exercises/1.1.ipynb | 60 +++++++++++++++++++++++++++++++-- 2 files changed, 58 insertions(+), 3 deletions(-) create mode 160000 DataStructure-BeautyOfAlgorithm diff --git a/DataStructure-BeautyOfAlgorithm b/DataStructure-BeautyOfAlgorithm new file mode 160000 index 0000000..d57e17b --- /dev/null +++ b/DataStructure-BeautyOfAlgorithm @@ -0,0 +1 @@ +Subproject commit d57e17b939171f3fe461e05ad7870336887babad diff --git a/Exercises/1.1.ipynb b/Exercises/1.1.ipynb index 9a6a833..d080dd9 100644 --- a/Exercises/1.1.ipynb +++ b/Exercises/1.1.ipynb @@ -23,14 +23,68 @@ "name": "stdout", "output_type": "stream", "text": [ - "10\n" + "预测2023年全国高考录取率为: 45.64666666666653\n", + "预测2023年湖北省本科录取率为: 45.64666666666653\n", + "预测2023年湖北省一本录取率为: 16.953333333333333\n", + "预测2023年湖北省211录取率为: 5.280000000000001\n", + "预测2023年湖北省985录取率为: 2.153333333333336\n", + "预测2023年湖北省本科录取人数为: 219103.99999999936\n", + "预测2023年湖北省一本录取人数为: 81376.0\n", + "预测2023年湖北省211录取人数为: 25344.000000000004\n", + "预测2023年湖北省985录取人数为: 10336.000000000013\n" ] } ], "source": [ - "a = 10\n", + "import pandas as pd\n", + "from sklearn.linear_model import LinearRegression\n", "\n", - "print(a)" + "# 假设您已经获得了2020-2022年的湖北高考录取率数据,存储在一个Pandas DataFrame中\n", + "data = {'年份': [2020, 2021, 2022],\n", + " '本科录取率': [42.1, 45.14, 44],\n", + " '一本录取率': [15.8, 18.9, 15.89],\n", + " '211录取率': [5.2, 5.6, 5.16],\n", + " '985录取率': [2.1, 2.1, 2.14]}\n", + "df = pd.DataFrame(data)\n", + "\n", + "# 使用线性回归模型拟合数据\n", + "X = df[['年份']]\n", + "y1 = df['本科录取率']\n", + "y2 = df['一本录取率']\n", + "y3 = df['211录取率']\n", + "y4 = df['985录取率']\n", + "model1 = LinearRegression().fit(X, y1)\n", + "model2 = LinearRegression().fit(X, y2)\n", + "model3 = LinearRegression().fit(X, y3)\n", + "model4 = LinearRegression().fit(X, y4)\n", + "\n", + "# 预测2023年的录取率\n", + "this_year = pd.DataFrame({'年份': [2023]})\n", + "predicted_本科录取率 = model1.predict(this_year)[0]\n", + "predicted_一本录取率 = model2.predict(this_year)[0]\n", + "predicted_211录取率 = model3.predict(this_year)[0]\n", + "predicted_985录取率 = model4.predict(this_year)[0]\n", + "\n", + "# 计算全国录取率\n", + "全国高考报名人数 = 12910000\n", + "湖北高考人数 = 480000\n", + "全国录取人数 = 全国高考报名人数 * predicted_本科录取率 / 100\n", + "湖北本科录取人数 = 湖北高考人数 * predicted_本科录取率 / 100\n", + "湖北一本录取人数 = 湖北高考人数 * predicted_一本录取率 / 100\n", + "湖北211录取人数 = 湖北高考人数 * predicted_211录取率 / 100\n", + "湖北985录取人数 = 湖北高考人数 * predicted_985录取率 / 100\n", + "全国录取率 = 全国录取人数 / 全国高考报名人数 * 100\n", + "\n", + "# 输出结果\n", + "print('预测2023年全国高考录取率为:', 全国录取率)\n", + "print('预测2023年湖北省本科录取率为:', predicted_本科录取率)\n", + "print('预测2023年湖北省一本录取率为:', predicted_一本录取率)\n", + "print('预测2023年湖北省211录取率为:', predicted_211录取率)\n", + "print('预测2023年湖北省985录取率为:', predicted_985录取率)\n", + "print('预测2023年湖北省本科录取人数为:', 湖北本科录取人数)\n", + "print('预测2023年湖北省一本录取人数为:', 湖北一本录取人数)\n", + "print('预测2023年湖北省211录取人数为:', 湖北211录取人数)\n", + "print('预测2023年湖北省985录取人数为:', 湖北985录取人数)" ] } ], From f036734fac684bec72343436dab80a1ae2c32383 Mon Sep 17 00:00:00 2001 From: zcxboy <48000909+zcxboy@users.noreply.github.com> Date: Fri, 14 Jul 2023 10:03:52 +0000 Subject: [PATCH 05/10] a --- DataStructure-BeautyOfAlgorithm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataStructure-BeautyOfAlgorithm b/DataStructure-BeautyOfAlgorithm index d57e17b..643dbe4 160000 --- a/DataStructure-BeautyOfAlgorithm +++ b/DataStructure-BeautyOfAlgorithm @@ -1 +1 @@ -Subproject commit d57e17b939171f3fe461e05ad7870336887babad +Subproject commit 643dbe4652827107c67b1fa9aac1e34b713d4214 From 724017de22f5e00aa1be17b3d2d765aa8b596c5a Mon Sep 17 00:00:00 2001 From: zcxboy <48000909+zcxboy@users.noreply.github.com> Date: Fri, 14 Jul 2023 10:10:39 +0000 Subject: [PATCH 06/10] a --- DeepLearning-500-questions | 1 + .gitignore => source/.gitignore | 0 1.1.md => source/1.1.md | 0 1.2.md => source/1.2.md | 0 1.3.md => source/1.3.md | 0 1.4.md => source/1.4.md | 0 1.5.md => source/1.5.md | 0 1.6.md => source/1.6.md | 0 2.1.md => source/2.1.md | 0 2.2.md => source/2.2.md | 0 2.3.md => source/2.3.md | 0 2.4.md => source/2.4.md | 0 2.5.md => source/2.5.md | 0 2.6.md => source/2.6.md | 0 2.7.md => source/2.7.md | 0 3.1.md => source/3.1.md | 0 3.2.md => source/3.2.md | 0 3.3.md => source/3.3.md | 0 3.4.md => source/3.4.md | 0 3.5.md => source/3.5.md | 0 3.6.md => source/3.6.md | 0 {Exercises => source/Exercises}/1.1.ipynb | 0 README.md => source/README.md | 0 SUMMARY.md => source/SUMMARY.md | 0 ch1.md => source/ch1.md | 0 ch2.md => source/ch2.md | 0 ch3.md => source/ch3.md | 0 ch4.md => source/ch4.md | 0 ch5.md => source/ch5.md | 0 cover.jpg => source/cover.jpg | Bin {img => source/img}/20160907175856.jpg | Bin {img => source/img}/barriers.png | Bin {img => source/img}/clientserver.png | Bin {img => source/img}/constraints.png | Bin {img => source/img}/coroutine.png | Bin {img => source/img}/curves.png | Bin {img => source/img}/deadlock.png | Bin {img => source/img}/eval_apply.png | Bin {img => source/img}/evaluate_square.png | Bin {img => source/img}/evaluate_sum_squares_0.png | Bin {img => source/img}/evaluate_sum_squares_1.png | Bin {img => source/img}/evaluate_sum_squares_3.png | Bin {img => source/img}/expression_tree.png | Bin {img => source/img}/fact.png | Bin {img => source/img}/factorial_machine.png | Bin {img => source/img}/fib.png | Bin {img => source/img}/fib_env.png | Bin {img => source/img}/function_abs.png | Bin {img => source/img}/function_print.png | Bin {img => source/img}/getitem_rlist_0.png | Bin {img => source/img}/getitem_rlist_1.png | Bin {img => source/img}/getitem_rlist_2.png | Bin {img => source/img}/global_frame.png | Bin {img => source/img}/global_frame_assignment.png | Bin {img => source/img}/global_frame_def.png | Bin {img => source/img}/interface.png | Bin {img => source/img}/iter_improve_apply.png | Bin {img => source/img}/iter_improve_global.png | Bin {img => source/img}/lists.png | Bin {img => source/img}/logo_apply.png | Bin {img => source/img}/logo_eval.png | Bin {img => source/img}/multiple_inheritance.png | Bin {img => source/img}/nested_pairs.png | Bin {img => source/img}/newton.png | Bin {img => source/img}/nonlocal_assign.png | Bin {img => source/img}/nonlocal_call.png | Bin {img => source/img}/nonlocal_call2.png | Bin {img => source/img}/nonlocal_corefer.png | Bin {img => source/img}/nonlocal_def.png | Bin {img => source/img}/nonlocal_def2.png | Bin {img => source/img}/nonlocal_recall.png | Bin {img => source/img}/pair.png | Bin {img => source/img}/pi_sum.png | Bin {img => source/img}/pig_latin.png | Bin {img => source/img}/produce-filter-consume.png | Bin {img => source/img}/qr_alipay.png | Bin {img => source/img}/read-match-coroutine.png | Bin {img => source/img}/scope.png | Bin {img => source/img}/sequence.png | Bin {img => source/img}/set_trees.png | Bin {img => source/img}/sier.png | Bin {img => source/img}/square_root.png | Bin {img => source/img}/square_root_update.png | Bin {img => source/img}/star.png | Bin {img => source/img}/subroutine.png | Bin {img => source/img}/tree.png | Bin {img => source/img}/universal_machine.png | Bin {img => source/img}/vector-math1.png | Bin {img => source/img}/vector-math2.png | Bin {img => source/img}/vector-math3.png | Bin {styles => source/styles}/ebook.css | 0 91 files changed, 1 insertion(+) create mode 160000 DeepLearning-500-questions rename .gitignore => source/.gitignore (100%) rename 1.1.md => source/1.1.md (100%) rename 1.2.md => source/1.2.md (100%) rename 1.3.md => source/1.3.md (100%) rename 1.4.md => source/1.4.md (100%) rename 1.5.md => source/1.5.md (100%) rename 1.6.md => source/1.6.md (100%) rename 2.1.md => source/2.1.md (100%) rename 2.2.md => source/2.2.md (100%) rename 2.3.md => source/2.3.md (100%) rename 2.4.md => source/2.4.md (100%) rename 2.5.md => source/2.5.md (100%) rename 2.6.md => source/2.6.md (100%) rename 2.7.md => source/2.7.md (100%) rename 3.1.md => source/3.1.md (100%) rename 3.2.md => source/3.2.md (100%) rename 3.3.md => source/3.3.md (100%) rename 3.4.md => source/3.4.md (100%) rename 3.5.md => source/3.5.md (100%) rename 3.6.md => source/3.6.md (100%) rename {Exercises => source/Exercises}/1.1.ipynb (100%) rename README.md => source/README.md (100%) rename SUMMARY.md => source/SUMMARY.md (100%) rename ch1.md => source/ch1.md (100%) rename ch2.md => source/ch2.md (100%) rename ch3.md => source/ch3.md (100%) rename ch4.md => source/ch4.md (100%) rename ch5.md => source/ch5.md (100%) rename cover.jpg => source/cover.jpg (100%) rename {img => source/img}/20160907175856.jpg (100%) rename {img => source/img}/barriers.png (100%) rename {img => source/img}/clientserver.png (100%) rename {img => source/img}/constraints.png (100%) rename {img => source/img}/coroutine.png (100%) rename {img => source/img}/curves.png (100%) rename {img => source/img}/deadlock.png (100%) rename {img => source/img}/eval_apply.png (100%) rename {img => source/img}/evaluate_square.png (100%) rename {img => source/img}/evaluate_sum_squares_0.png (100%) rename {img => source/img}/evaluate_sum_squares_1.png (100%) rename {img => source/img}/evaluate_sum_squares_3.png (100%) rename {img => source/img}/expression_tree.png (100%) rename {img => source/img}/fact.png (100%) rename {img => source/img}/factorial_machine.png (100%) rename {img => source/img}/fib.png (100%) rename {img => source/img}/fib_env.png (100%) rename {img => source/img}/function_abs.png (100%) rename {img => source/img}/function_print.png (100%) rename {img => source/img}/getitem_rlist_0.png (100%) rename {img => source/img}/getitem_rlist_1.png (100%) rename {img => source/img}/getitem_rlist_2.png (100%) rename {img => source/img}/global_frame.png (100%) rename {img => source/img}/global_frame_assignment.png (100%) rename {img => source/img}/global_frame_def.png (100%) rename {img => source/img}/interface.png (100%) rename {img => source/img}/iter_improve_apply.png (100%) rename {img => source/img}/iter_improve_global.png (100%) rename {img => source/img}/lists.png (100%) rename {img => source/img}/logo_apply.png (100%) rename {img => source/img}/logo_eval.png (100%) rename {img => source/img}/multiple_inheritance.png (100%) rename {img => source/img}/nested_pairs.png (100%) rename {img => source/img}/newton.png (100%) rename {img => source/img}/nonlocal_assign.png (100%) rename {img => source/img}/nonlocal_call.png (100%) rename {img => source/img}/nonlocal_call2.png (100%) rename {img => source/img}/nonlocal_corefer.png (100%) rename {img => source/img}/nonlocal_def.png (100%) rename {img => source/img}/nonlocal_def2.png (100%) rename {img => source/img}/nonlocal_recall.png (100%) rename {img => source/img}/pair.png (100%) rename {img => source/img}/pi_sum.png (100%) rename {img => source/img}/pig_latin.png (100%) rename {img => source/img}/produce-filter-consume.png (100%) rename {img => source/img}/qr_alipay.png (100%) rename {img => source/img}/read-match-coroutine.png (100%) rename {img => source/img}/scope.png (100%) rename {img => source/img}/sequence.png (100%) rename {img => source/img}/set_trees.png (100%) rename {img => source/img}/sier.png (100%) rename {img => source/img}/square_root.png (100%) rename {img => source/img}/square_root_update.png (100%) rename {img => source/img}/star.png (100%) rename {img => source/img}/subroutine.png (100%) rename {img => source/img}/tree.png (100%) rename {img => source/img}/universal_machine.png (100%) rename {img => source/img}/vector-math1.png (100%) rename {img => source/img}/vector-math2.png (100%) rename {img => source/img}/vector-math3.png (100%) rename {styles => source/styles}/ebook.css (100%) diff --git a/DeepLearning-500-questions b/DeepLearning-500-questions new file mode 160000 index 0000000..6087a06 --- /dev/null +++ b/DeepLearning-500-questions @@ -0,0 +1 @@ +Subproject commit 6087a06b112c3c28b885ab2f794535c19a9e4326 diff --git a/.gitignore b/source/.gitignore similarity index 100% rename from .gitignore rename to source/.gitignore diff --git a/1.1.md b/source/1.1.md similarity index 100% rename from 1.1.md rename to source/1.1.md diff --git a/1.2.md b/source/1.2.md similarity index 100% rename from 1.2.md rename to source/1.2.md diff --git a/1.3.md b/source/1.3.md similarity index 100% rename from 1.3.md rename to source/1.3.md diff --git a/1.4.md b/source/1.4.md similarity index 100% rename from 1.4.md rename to source/1.4.md diff --git a/1.5.md b/source/1.5.md similarity index 100% rename from 1.5.md rename to source/1.5.md diff --git a/1.6.md b/source/1.6.md similarity index 100% rename from 1.6.md rename to source/1.6.md diff --git a/2.1.md b/source/2.1.md similarity index 100% rename from 2.1.md rename to source/2.1.md diff --git a/2.2.md b/source/2.2.md similarity index 100% rename from 2.2.md rename to source/2.2.md diff --git a/2.3.md b/source/2.3.md similarity index 100% rename from 2.3.md rename to source/2.3.md diff --git a/2.4.md b/source/2.4.md similarity index 100% rename from 2.4.md rename to source/2.4.md diff --git a/2.5.md b/source/2.5.md similarity index 100% rename from 2.5.md rename to source/2.5.md diff --git a/2.6.md b/source/2.6.md similarity index 100% rename from 2.6.md rename to source/2.6.md diff --git a/2.7.md b/source/2.7.md similarity index 100% rename from 2.7.md rename to source/2.7.md diff --git a/3.1.md b/source/3.1.md similarity index 100% rename from 3.1.md rename to source/3.1.md diff --git a/3.2.md b/source/3.2.md similarity index 100% rename from 3.2.md rename to source/3.2.md diff --git a/3.3.md b/source/3.3.md similarity index 100% rename from 3.3.md rename to source/3.3.md diff --git a/3.4.md b/source/3.4.md similarity index 100% rename from 3.4.md rename to source/3.4.md diff --git a/3.5.md b/source/3.5.md similarity index 100% rename from 3.5.md rename to source/3.5.md diff --git a/3.6.md b/source/3.6.md similarity index 100% rename from 3.6.md rename to source/3.6.md diff --git a/Exercises/1.1.ipynb b/source/Exercises/1.1.ipynb similarity index 100% rename from Exercises/1.1.ipynb rename to source/Exercises/1.1.ipynb diff --git a/README.md b/source/README.md similarity index 100% rename from README.md rename to source/README.md diff --git a/SUMMARY.md b/source/SUMMARY.md similarity index 100% rename from SUMMARY.md rename to source/SUMMARY.md diff --git a/ch1.md b/source/ch1.md similarity index 100% rename from ch1.md rename to source/ch1.md diff --git a/ch2.md b/source/ch2.md similarity index 100% rename from ch2.md rename to source/ch2.md diff --git a/ch3.md b/source/ch3.md similarity index 100% rename from ch3.md rename to source/ch3.md diff --git a/ch4.md b/source/ch4.md similarity index 100% rename from ch4.md rename to source/ch4.md diff --git a/ch5.md b/source/ch5.md similarity index 100% rename from ch5.md rename to source/ch5.md diff --git a/cover.jpg b/source/cover.jpg similarity index 100% rename from cover.jpg rename to source/cover.jpg diff --git a/img/20160907175856.jpg b/source/img/20160907175856.jpg similarity index 100% rename from img/20160907175856.jpg rename to source/img/20160907175856.jpg diff --git a/img/barriers.png b/source/img/barriers.png similarity index 100% rename from img/barriers.png rename to source/img/barriers.png diff --git a/img/clientserver.png b/source/img/clientserver.png similarity index 100% rename from img/clientserver.png rename to source/img/clientserver.png diff --git a/img/constraints.png b/source/img/constraints.png similarity index 100% rename from img/constraints.png rename to source/img/constraints.png diff --git a/img/coroutine.png b/source/img/coroutine.png similarity index 100% rename from img/coroutine.png rename to source/img/coroutine.png diff --git a/img/curves.png b/source/img/curves.png similarity index 100% rename from img/curves.png rename to source/img/curves.png diff --git a/img/deadlock.png b/source/img/deadlock.png similarity index 100% rename from img/deadlock.png rename to source/img/deadlock.png diff --git a/img/eval_apply.png b/source/img/eval_apply.png similarity index 100% rename from img/eval_apply.png rename to source/img/eval_apply.png diff --git a/img/evaluate_square.png b/source/img/evaluate_square.png similarity index 100% rename from img/evaluate_square.png rename to source/img/evaluate_square.png diff --git a/img/evaluate_sum_squares_0.png b/source/img/evaluate_sum_squares_0.png similarity index 100% rename from img/evaluate_sum_squares_0.png rename to source/img/evaluate_sum_squares_0.png diff --git a/img/evaluate_sum_squares_1.png b/source/img/evaluate_sum_squares_1.png similarity index 100% rename from img/evaluate_sum_squares_1.png rename to source/img/evaluate_sum_squares_1.png diff --git a/img/evaluate_sum_squares_3.png b/source/img/evaluate_sum_squares_3.png similarity index 100% rename from img/evaluate_sum_squares_3.png rename to source/img/evaluate_sum_squares_3.png diff --git a/img/expression_tree.png b/source/img/expression_tree.png similarity index 100% rename from img/expression_tree.png rename to source/img/expression_tree.png diff --git a/img/fact.png b/source/img/fact.png similarity index 100% rename from img/fact.png rename to source/img/fact.png diff --git a/img/factorial_machine.png b/source/img/factorial_machine.png similarity index 100% rename from img/factorial_machine.png rename to source/img/factorial_machine.png diff --git a/img/fib.png b/source/img/fib.png similarity index 100% rename from img/fib.png rename to source/img/fib.png diff --git a/img/fib_env.png b/source/img/fib_env.png similarity index 100% rename from img/fib_env.png rename to source/img/fib_env.png diff --git a/img/function_abs.png b/source/img/function_abs.png similarity index 100% rename from img/function_abs.png rename to source/img/function_abs.png diff --git a/img/function_print.png b/source/img/function_print.png similarity index 100% rename from img/function_print.png rename to source/img/function_print.png diff --git a/img/getitem_rlist_0.png b/source/img/getitem_rlist_0.png similarity index 100% rename from img/getitem_rlist_0.png rename to source/img/getitem_rlist_0.png diff --git a/img/getitem_rlist_1.png b/source/img/getitem_rlist_1.png similarity index 100% rename from img/getitem_rlist_1.png rename to source/img/getitem_rlist_1.png diff --git a/img/getitem_rlist_2.png b/source/img/getitem_rlist_2.png similarity index 100% rename from img/getitem_rlist_2.png rename to source/img/getitem_rlist_2.png diff --git a/img/global_frame.png b/source/img/global_frame.png similarity index 100% rename from img/global_frame.png rename to source/img/global_frame.png diff --git a/img/global_frame_assignment.png b/source/img/global_frame_assignment.png similarity index 100% rename from img/global_frame_assignment.png rename to source/img/global_frame_assignment.png diff --git a/img/global_frame_def.png b/source/img/global_frame_def.png similarity index 100% rename from img/global_frame_def.png rename to source/img/global_frame_def.png diff --git a/img/interface.png b/source/img/interface.png similarity index 100% rename from img/interface.png rename to source/img/interface.png diff --git a/img/iter_improve_apply.png b/source/img/iter_improve_apply.png similarity index 100% rename from img/iter_improve_apply.png rename to source/img/iter_improve_apply.png diff --git a/img/iter_improve_global.png b/source/img/iter_improve_global.png similarity index 100% rename from img/iter_improve_global.png rename to source/img/iter_improve_global.png diff --git a/img/lists.png b/source/img/lists.png similarity index 100% rename from img/lists.png rename to source/img/lists.png diff --git a/img/logo_apply.png b/source/img/logo_apply.png similarity index 100% rename from img/logo_apply.png rename to source/img/logo_apply.png diff --git a/img/logo_eval.png b/source/img/logo_eval.png similarity index 100% rename from img/logo_eval.png rename to source/img/logo_eval.png diff --git a/img/multiple_inheritance.png b/source/img/multiple_inheritance.png similarity index 100% rename from img/multiple_inheritance.png rename to source/img/multiple_inheritance.png diff --git a/img/nested_pairs.png b/source/img/nested_pairs.png similarity index 100% rename from img/nested_pairs.png rename to source/img/nested_pairs.png diff --git a/img/newton.png b/source/img/newton.png similarity index 100% rename from img/newton.png rename to source/img/newton.png diff --git a/img/nonlocal_assign.png b/source/img/nonlocal_assign.png similarity index 100% rename from img/nonlocal_assign.png rename to source/img/nonlocal_assign.png diff --git a/img/nonlocal_call.png b/source/img/nonlocal_call.png similarity index 100% rename from img/nonlocal_call.png rename to source/img/nonlocal_call.png diff --git a/img/nonlocal_call2.png b/source/img/nonlocal_call2.png similarity index 100% rename from img/nonlocal_call2.png rename to source/img/nonlocal_call2.png diff --git a/img/nonlocal_corefer.png b/source/img/nonlocal_corefer.png similarity index 100% rename from img/nonlocal_corefer.png rename to source/img/nonlocal_corefer.png diff --git a/img/nonlocal_def.png b/source/img/nonlocal_def.png similarity index 100% rename from img/nonlocal_def.png rename to source/img/nonlocal_def.png diff --git a/img/nonlocal_def2.png b/source/img/nonlocal_def2.png similarity index 100% rename from img/nonlocal_def2.png rename to source/img/nonlocal_def2.png diff --git a/img/nonlocal_recall.png b/source/img/nonlocal_recall.png similarity index 100% rename from img/nonlocal_recall.png rename to source/img/nonlocal_recall.png diff --git a/img/pair.png b/source/img/pair.png similarity index 100% rename from img/pair.png rename to source/img/pair.png diff --git a/img/pi_sum.png b/source/img/pi_sum.png similarity index 100% rename from img/pi_sum.png rename to source/img/pi_sum.png diff --git a/img/pig_latin.png b/source/img/pig_latin.png similarity index 100% rename from img/pig_latin.png rename to source/img/pig_latin.png diff --git a/img/produce-filter-consume.png b/source/img/produce-filter-consume.png similarity index 100% rename from img/produce-filter-consume.png rename to source/img/produce-filter-consume.png diff --git a/img/qr_alipay.png b/source/img/qr_alipay.png similarity index 100% rename from img/qr_alipay.png rename to source/img/qr_alipay.png diff --git a/img/read-match-coroutine.png b/source/img/read-match-coroutine.png similarity index 100% rename from img/read-match-coroutine.png rename to source/img/read-match-coroutine.png diff --git a/img/scope.png b/source/img/scope.png similarity index 100% rename from img/scope.png rename to source/img/scope.png diff --git a/img/sequence.png b/source/img/sequence.png similarity index 100% rename from img/sequence.png rename to source/img/sequence.png diff --git a/img/set_trees.png b/source/img/set_trees.png similarity index 100% rename from img/set_trees.png rename to source/img/set_trees.png diff --git a/img/sier.png b/source/img/sier.png similarity index 100% rename from img/sier.png rename to source/img/sier.png diff --git a/img/square_root.png b/source/img/square_root.png similarity index 100% rename from img/square_root.png rename to source/img/square_root.png diff --git a/img/square_root_update.png b/source/img/square_root_update.png similarity index 100% rename from img/square_root_update.png rename to source/img/square_root_update.png diff --git a/img/star.png b/source/img/star.png similarity index 100% rename from img/star.png rename to source/img/star.png diff --git a/img/subroutine.png b/source/img/subroutine.png similarity index 100% rename from img/subroutine.png rename to source/img/subroutine.png diff --git a/img/tree.png b/source/img/tree.png similarity index 100% rename from img/tree.png rename to source/img/tree.png diff --git a/img/universal_machine.png b/source/img/universal_machine.png similarity index 100% rename from img/universal_machine.png rename to source/img/universal_machine.png diff --git a/img/vector-math1.png b/source/img/vector-math1.png similarity index 100% rename from img/vector-math1.png rename to source/img/vector-math1.png diff --git a/img/vector-math2.png b/source/img/vector-math2.png similarity index 100% rename from img/vector-math2.png rename to source/img/vector-math2.png diff --git a/img/vector-math3.png b/source/img/vector-math3.png similarity index 100% rename from img/vector-math3.png rename to source/img/vector-math3.png diff --git a/styles/ebook.css b/source/styles/ebook.css similarity index 100% rename from styles/ebook.css rename to source/styles/ebook.css From c46ae6f3d3be80c9b91a6d7f989550f90978b456 Mon Sep 17 00:00:00 2001 From: zcxboy <48000909+zcxboy@users.noreply.github.com> Date: Fri, 14 Jul 2023 10:13:00 +0000 Subject: [PATCH 07/10] a --- DeepLearning-500-questions | 1 - source/DeepLearning-500-questions | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 160000 DeepLearning-500-questions create mode 160000 source/DeepLearning-500-questions diff --git a/DeepLearning-500-questions b/DeepLearning-500-questions deleted file mode 160000 index 6087a06..0000000 --- a/DeepLearning-500-questions +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 6087a06b112c3c28b885ab2f794535c19a9e4326 diff --git a/source/DeepLearning-500-questions b/source/DeepLearning-500-questions new file mode 160000 index 0000000..aa60e92 --- /dev/null +++ b/source/DeepLearning-500-questions @@ -0,0 +1 @@ +Subproject commit aa60e92fc16da22c102c9a8c3422e98bcc8f8333 From 055b3d3c45ac56644d89247d6d77fb65e03ae6dd Mon Sep 17 00:00:00 2001 From: zcxboy <48000909+zcxboy@users.noreply.github.com> Date: Fri, 14 Jul 2023 10:13:23 +0000 Subject: [PATCH 08/10] a --- source/DeepLearning-500-questions => DeepLearning-500-questions | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename source/DeepLearning-500-questions => DeepLearning-500-questions (100%) diff --git a/source/DeepLearning-500-questions b/DeepLearning-500-questions similarity index 100% rename from source/DeepLearning-500-questions rename to DeepLearning-500-questions From dd648c286cb6247c71be5d9b76e920937346a7b3 Mon Sep 17 00:00:00 2001 From: zcxboy <48000909+zcxboy@users.noreply.github.com> Date: Fri, 14 Jul 2023 12:12:25 +0000 Subject: [PATCH 09/10] a --- {source => sicp}/.gitignore | 0 {source => sicp}/1.1.md | 0 {source => sicp}/1.2.md | 0 {source => sicp}/1.3.md | 0 {source => sicp}/1.4.md | 0 {source => sicp}/1.5.md | 0 {source => sicp}/1.6.md | 0 {source => sicp}/2.1.md | 0 {source => sicp}/2.2.md | 0 {source => sicp}/2.3.md | 0 {source => sicp}/2.4.md | 0 {source => sicp}/2.5.md | 0 {source => sicp}/2.6.md | 0 {source => sicp}/2.7.md | 0 {source => sicp}/3.1.md | 0 {source => sicp}/3.2.md | 0 {source => sicp}/3.3.md | 0 {source => sicp}/3.4.md | 0 {source => sicp}/3.5.md | 0 {source => sicp}/3.6.md | 0 {source => sicp}/Exercises/1.1.ipynb | 0 {source => sicp}/README.md | 0 {source => sicp}/SUMMARY.md | 0 {source => sicp}/ch1.md | 0 {source => sicp}/ch2.md | 0 {source => sicp}/ch3.md | 0 {source => sicp}/ch4.md | 0 {source => sicp}/ch5.md | 0 {source => sicp}/cover.jpg | Bin {source => sicp}/img/20160907175856.jpg | Bin {source => sicp}/img/barriers.png | Bin {source => sicp}/img/clientserver.png | Bin {source => sicp}/img/constraints.png | Bin {source => sicp}/img/coroutine.png | Bin {source => sicp}/img/curves.png | Bin {source => sicp}/img/deadlock.png | Bin {source => sicp}/img/eval_apply.png | Bin {source => sicp}/img/evaluate_square.png | Bin {source => sicp}/img/evaluate_sum_squares_0.png | Bin {source => sicp}/img/evaluate_sum_squares_1.png | Bin {source => sicp}/img/evaluate_sum_squares_3.png | Bin {source => sicp}/img/expression_tree.png | Bin {source => sicp}/img/fact.png | Bin {source => sicp}/img/factorial_machine.png | Bin {source => sicp}/img/fib.png | Bin {source => sicp}/img/fib_env.png | Bin {source => sicp}/img/function_abs.png | Bin {source => sicp}/img/function_print.png | Bin {source => sicp}/img/getitem_rlist_0.png | Bin {source => sicp}/img/getitem_rlist_1.png | Bin {source => sicp}/img/getitem_rlist_2.png | Bin {source => sicp}/img/global_frame.png | Bin {source => sicp}/img/global_frame_assignment.png | Bin {source => sicp}/img/global_frame_def.png | Bin {source => sicp}/img/interface.png | Bin {source => sicp}/img/iter_improve_apply.png | Bin {source => sicp}/img/iter_improve_global.png | Bin {source => sicp}/img/lists.png | Bin {source => sicp}/img/logo_apply.png | Bin {source => sicp}/img/logo_eval.png | Bin {source => sicp}/img/multiple_inheritance.png | Bin {source => sicp}/img/nested_pairs.png | Bin {source => sicp}/img/newton.png | Bin {source => sicp}/img/nonlocal_assign.png | Bin {source => sicp}/img/nonlocal_call.png | Bin {source => sicp}/img/nonlocal_call2.png | Bin {source => sicp}/img/nonlocal_corefer.png | Bin {source => sicp}/img/nonlocal_def.png | Bin {source => sicp}/img/nonlocal_def2.png | Bin {source => sicp}/img/nonlocal_recall.png | Bin {source => sicp}/img/pair.png | Bin {source => sicp}/img/pi_sum.png | Bin {source => sicp}/img/pig_latin.png | Bin {source => sicp}/img/produce-filter-consume.png | Bin {source => sicp}/img/qr_alipay.png | Bin {source => sicp}/img/read-match-coroutine.png | Bin {source => sicp}/img/scope.png | Bin {source => sicp}/img/sequence.png | Bin {source => sicp}/img/set_trees.png | Bin {source => sicp}/img/sier.png | Bin {source => sicp}/img/square_root.png | Bin {source => sicp}/img/square_root_update.png | Bin {source => sicp}/img/star.png | Bin {source => sicp}/img/subroutine.png | Bin {source => sicp}/img/tree.png | Bin {source => sicp}/img/universal_machine.png | Bin {source => sicp}/img/vector-math1.png | Bin {source => sicp}/img/vector-math2.png | Bin {source => sicp}/img/vector-math3.png | Bin {source => sicp}/styles/ebook.css | 0 90 files changed, 0 insertions(+), 0 deletions(-) rename {source => sicp}/.gitignore (100%) rename {source => sicp}/1.1.md (100%) rename {source => sicp}/1.2.md (100%) rename {source => sicp}/1.3.md (100%) rename {source => sicp}/1.4.md (100%) rename {source => sicp}/1.5.md (100%) rename {source => sicp}/1.6.md (100%) rename {source => sicp}/2.1.md (100%) rename {source => sicp}/2.2.md (100%) rename {source => sicp}/2.3.md (100%) rename {source => sicp}/2.4.md (100%) rename {source => sicp}/2.5.md (100%) rename {source => sicp}/2.6.md (100%) rename {source => sicp}/2.7.md (100%) rename {source => sicp}/3.1.md (100%) rename {source => sicp}/3.2.md (100%) rename {source => sicp}/3.3.md (100%) rename {source => sicp}/3.4.md (100%) rename {source => sicp}/3.5.md (100%) rename {source => sicp}/3.6.md (100%) rename {source => sicp}/Exercises/1.1.ipynb (100%) rename {source => sicp}/README.md (100%) rename {source => sicp}/SUMMARY.md (100%) rename {source => sicp}/ch1.md (100%) rename {source => sicp}/ch2.md (100%) rename {source => sicp}/ch3.md (100%) rename {source => sicp}/ch4.md (100%) rename {source => sicp}/ch5.md (100%) rename {source => sicp}/cover.jpg (100%) rename {source => sicp}/img/20160907175856.jpg (100%) rename {source => sicp}/img/barriers.png (100%) rename {source => sicp}/img/clientserver.png (100%) rename {source => sicp}/img/constraints.png (100%) rename {source => sicp}/img/coroutine.png (100%) rename {source => sicp}/img/curves.png (100%) rename {source => sicp}/img/deadlock.png (100%) rename {source => sicp}/img/eval_apply.png (100%) rename {source => sicp}/img/evaluate_square.png (100%) rename {source => sicp}/img/evaluate_sum_squares_0.png (100%) rename {source => sicp}/img/evaluate_sum_squares_1.png (100%) rename {source => sicp}/img/evaluate_sum_squares_3.png (100%) rename {source => sicp}/img/expression_tree.png (100%) rename {source => sicp}/img/fact.png (100%) rename {source => sicp}/img/factorial_machine.png (100%) rename {source => sicp}/img/fib.png (100%) rename {source => sicp}/img/fib_env.png (100%) rename {source => sicp}/img/function_abs.png (100%) rename {source => sicp}/img/function_print.png (100%) rename {source => sicp}/img/getitem_rlist_0.png (100%) rename {source => sicp}/img/getitem_rlist_1.png (100%) rename {source => sicp}/img/getitem_rlist_2.png (100%) rename {source => sicp}/img/global_frame.png (100%) rename {source => sicp}/img/global_frame_assignment.png (100%) rename {source => sicp}/img/global_frame_def.png (100%) rename {source => sicp}/img/interface.png (100%) rename {source => sicp}/img/iter_improve_apply.png (100%) rename {source => sicp}/img/iter_improve_global.png (100%) rename {source => sicp}/img/lists.png (100%) rename {source => sicp}/img/logo_apply.png (100%) rename {source => sicp}/img/logo_eval.png (100%) rename {source => sicp}/img/multiple_inheritance.png (100%) rename {source => sicp}/img/nested_pairs.png (100%) rename {source => sicp}/img/newton.png (100%) rename {source => sicp}/img/nonlocal_assign.png (100%) rename {source => sicp}/img/nonlocal_call.png (100%) rename {source => sicp}/img/nonlocal_call2.png (100%) rename {source => sicp}/img/nonlocal_corefer.png (100%) rename {source => sicp}/img/nonlocal_def.png (100%) rename {source => sicp}/img/nonlocal_def2.png (100%) rename {source => sicp}/img/nonlocal_recall.png (100%) rename {source => sicp}/img/pair.png (100%) rename {source => sicp}/img/pi_sum.png (100%) rename {source => sicp}/img/pig_latin.png (100%) rename {source => sicp}/img/produce-filter-consume.png (100%) rename {source => sicp}/img/qr_alipay.png (100%) rename {source => sicp}/img/read-match-coroutine.png (100%) rename {source => sicp}/img/scope.png (100%) rename {source => sicp}/img/sequence.png (100%) rename {source => sicp}/img/set_trees.png (100%) rename {source => sicp}/img/sier.png (100%) rename {source => sicp}/img/square_root.png (100%) rename {source => sicp}/img/square_root_update.png (100%) rename {source => sicp}/img/star.png (100%) rename {source => sicp}/img/subroutine.png (100%) rename {source => sicp}/img/tree.png (100%) rename {source => sicp}/img/universal_machine.png (100%) rename {source => sicp}/img/vector-math1.png (100%) rename {source => sicp}/img/vector-math2.png (100%) rename {source => sicp}/img/vector-math3.png (100%) rename {source => sicp}/styles/ebook.css (100%) diff --git a/source/.gitignore b/sicp/.gitignore similarity index 100% rename from source/.gitignore rename to sicp/.gitignore diff --git a/source/1.1.md b/sicp/1.1.md similarity index 100% rename from source/1.1.md rename to sicp/1.1.md diff --git a/source/1.2.md b/sicp/1.2.md similarity index 100% rename from source/1.2.md rename to sicp/1.2.md diff --git a/source/1.3.md b/sicp/1.3.md similarity index 100% rename from source/1.3.md rename to sicp/1.3.md diff --git a/source/1.4.md b/sicp/1.4.md similarity index 100% rename from source/1.4.md rename to sicp/1.4.md diff --git a/source/1.5.md b/sicp/1.5.md similarity index 100% rename from source/1.5.md rename to sicp/1.5.md diff --git a/source/1.6.md b/sicp/1.6.md similarity index 100% rename from source/1.6.md rename to sicp/1.6.md diff --git a/source/2.1.md b/sicp/2.1.md similarity index 100% rename from source/2.1.md rename to sicp/2.1.md diff --git a/source/2.2.md b/sicp/2.2.md similarity index 100% rename from source/2.2.md rename to sicp/2.2.md diff --git a/source/2.3.md b/sicp/2.3.md similarity index 100% rename from source/2.3.md rename to sicp/2.3.md diff --git a/source/2.4.md b/sicp/2.4.md similarity index 100% rename from source/2.4.md rename to sicp/2.4.md diff --git a/source/2.5.md b/sicp/2.5.md similarity index 100% rename from source/2.5.md rename to sicp/2.5.md diff --git a/source/2.6.md b/sicp/2.6.md similarity index 100% rename from source/2.6.md rename to sicp/2.6.md diff --git a/source/2.7.md b/sicp/2.7.md similarity index 100% rename from source/2.7.md rename to sicp/2.7.md diff --git a/source/3.1.md b/sicp/3.1.md similarity index 100% rename from source/3.1.md rename to sicp/3.1.md diff --git a/source/3.2.md b/sicp/3.2.md similarity index 100% rename from source/3.2.md rename to sicp/3.2.md diff --git a/source/3.3.md b/sicp/3.3.md similarity index 100% rename from source/3.3.md rename to sicp/3.3.md diff --git a/source/3.4.md b/sicp/3.4.md similarity index 100% rename from source/3.4.md rename to sicp/3.4.md diff --git a/source/3.5.md b/sicp/3.5.md similarity index 100% rename from source/3.5.md rename to sicp/3.5.md diff --git a/source/3.6.md b/sicp/3.6.md similarity index 100% rename from source/3.6.md rename to sicp/3.6.md diff --git a/source/Exercises/1.1.ipynb b/sicp/Exercises/1.1.ipynb similarity index 100% rename from source/Exercises/1.1.ipynb rename to sicp/Exercises/1.1.ipynb diff --git a/source/README.md b/sicp/README.md similarity index 100% rename from source/README.md rename to sicp/README.md diff --git a/source/SUMMARY.md b/sicp/SUMMARY.md similarity index 100% rename from source/SUMMARY.md rename to sicp/SUMMARY.md diff --git a/source/ch1.md b/sicp/ch1.md similarity index 100% rename from source/ch1.md rename to sicp/ch1.md diff --git a/source/ch2.md b/sicp/ch2.md similarity index 100% rename from source/ch2.md rename to sicp/ch2.md diff --git a/source/ch3.md b/sicp/ch3.md similarity index 100% rename from source/ch3.md rename to sicp/ch3.md diff --git a/source/ch4.md b/sicp/ch4.md similarity index 100% rename from source/ch4.md rename to sicp/ch4.md diff --git a/source/ch5.md b/sicp/ch5.md similarity index 100% rename from source/ch5.md rename to sicp/ch5.md diff --git a/source/cover.jpg b/sicp/cover.jpg similarity index 100% rename from source/cover.jpg rename to sicp/cover.jpg diff --git a/source/img/20160907175856.jpg b/sicp/img/20160907175856.jpg similarity index 100% rename from source/img/20160907175856.jpg rename to sicp/img/20160907175856.jpg diff --git a/source/img/barriers.png b/sicp/img/barriers.png similarity index 100% rename from source/img/barriers.png rename to sicp/img/barriers.png diff --git a/source/img/clientserver.png b/sicp/img/clientserver.png similarity index 100% rename from source/img/clientserver.png rename to sicp/img/clientserver.png diff --git a/source/img/constraints.png b/sicp/img/constraints.png similarity index 100% rename from source/img/constraints.png rename to sicp/img/constraints.png diff --git a/source/img/coroutine.png b/sicp/img/coroutine.png similarity index 100% rename from source/img/coroutine.png rename to sicp/img/coroutine.png diff --git a/source/img/curves.png b/sicp/img/curves.png similarity index 100% rename from source/img/curves.png rename to sicp/img/curves.png diff --git a/source/img/deadlock.png b/sicp/img/deadlock.png similarity index 100% rename from source/img/deadlock.png rename to sicp/img/deadlock.png diff --git a/source/img/eval_apply.png b/sicp/img/eval_apply.png similarity index 100% rename from source/img/eval_apply.png rename to sicp/img/eval_apply.png diff --git a/source/img/evaluate_square.png b/sicp/img/evaluate_square.png similarity index 100% rename from source/img/evaluate_square.png rename to sicp/img/evaluate_square.png diff --git a/source/img/evaluate_sum_squares_0.png b/sicp/img/evaluate_sum_squares_0.png similarity index 100% rename from source/img/evaluate_sum_squares_0.png rename to sicp/img/evaluate_sum_squares_0.png diff --git a/source/img/evaluate_sum_squares_1.png b/sicp/img/evaluate_sum_squares_1.png similarity index 100% rename from source/img/evaluate_sum_squares_1.png rename to sicp/img/evaluate_sum_squares_1.png diff --git a/source/img/evaluate_sum_squares_3.png b/sicp/img/evaluate_sum_squares_3.png similarity index 100% rename from source/img/evaluate_sum_squares_3.png rename to sicp/img/evaluate_sum_squares_3.png diff --git a/source/img/expression_tree.png b/sicp/img/expression_tree.png similarity index 100% rename from source/img/expression_tree.png rename to sicp/img/expression_tree.png diff --git a/source/img/fact.png b/sicp/img/fact.png similarity index 100% rename from source/img/fact.png rename to sicp/img/fact.png diff --git a/source/img/factorial_machine.png b/sicp/img/factorial_machine.png similarity index 100% rename from source/img/factorial_machine.png rename to sicp/img/factorial_machine.png diff --git a/source/img/fib.png b/sicp/img/fib.png similarity index 100% rename from source/img/fib.png rename to sicp/img/fib.png diff --git a/source/img/fib_env.png b/sicp/img/fib_env.png similarity index 100% rename from source/img/fib_env.png rename to sicp/img/fib_env.png diff --git a/source/img/function_abs.png b/sicp/img/function_abs.png similarity index 100% rename from source/img/function_abs.png rename to sicp/img/function_abs.png diff --git a/source/img/function_print.png b/sicp/img/function_print.png similarity index 100% rename from source/img/function_print.png rename to sicp/img/function_print.png diff --git a/source/img/getitem_rlist_0.png b/sicp/img/getitem_rlist_0.png similarity index 100% rename from source/img/getitem_rlist_0.png rename to sicp/img/getitem_rlist_0.png diff --git a/source/img/getitem_rlist_1.png b/sicp/img/getitem_rlist_1.png similarity index 100% rename from source/img/getitem_rlist_1.png rename to sicp/img/getitem_rlist_1.png diff --git a/source/img/getitem_rlist_2.png b/sicp/img/getitem_rlist_2.png similarity index 100% rename from source/img/getitem_rlist_2.png rename to sicp/img/getitem_rlist_2.png diff --git a/source/img/global_frame.png b/sicp/img/global_frame.png similarity index 100% rename from source/img/global_frame.png rename to sicp/img/global_frame.png diff --git a/source/img/global_frame_assignment.png b/sicp/img/global_frame_assignment.png similarity index 100% rename from source/img/global_frame_assignment.png rename to sicp/img/global_frame_assignment.png diff --git a/source/img/global_frame_def.png b/sicp/img/global_frame_def.png similarity index 100% rename from source/img/global_frame_def.png rename to sicp/img/global_frame_def.png diff --git a/source/img/interface.png b/sicp/img/interface.png similarity index 100% rename from source/img/interface.png rename to sicp/img/interface.png diff --git a/source/img/iter_improve_apply.png b/sicp/img/iter_improve_apply.png similarity index 100% rename from source/img/iter_improve_apply.png rename to sicp/img/iter_improve_apply.png diff --git a/source/img/iter_improve_global.png b/sicp/img/iter_improve_global.png similarity index 100% rename from source/img/iter_improve_global.png rename to sicp/img/iter_improve_global.png diff --git a/source/img/lists.png b/sicp/img/lists.png similarity index 100% rename from source/img/lists.png rename to sicp/img/lists.png diff --git a/source/img/logo_apply.png b/sicp/img/logo_apply.png similarity index 100% rename from source/img/logo_apply.png rename to sicp/img/logo_apply.png diff --git a/source/img/logo_eval.png b/sicp/img/logo_eval.png similarity index 100% rename from source/img/logo_eval.png rename to sicp/img/logo_eval.png diff --git a/source/img/multiple_inheritance.png b/sicp/img/multiple_inheritance.png similarity index 100% rename from source/img/multiple_inheritance.png rename to sicp/img/multiple_inheritance.png diff --git a/source/img/nested_pairs.png b/sicp/img/nested_pairs.png similarity index 100% rename from source/img/nested_pairs.png rename to sicp/img/nested_pairs.png diff --git a/source/img/newton.png b/sicp/img/newton.png similarity index 100% rename from source/img/newton.png rename to sicp/img/newton.png diff --git a/source/img/nonlocal_assign.png b/sicp/img/nonlocal_assign.png similarity index 100% rename from source/img/nonlocal_assign.png rename to sicp/img/nonlocal_assign.png diff --git a/source/img/nonlocal_call.png b/sicp/img/nonlocal_call.png similarity index 100% rename from source/img/nonlocal_call.png rename to sicp/img/nonlocal_call.png diff --git a/source/img/nonlocal_call2.png b/sicp/img/nonlocal_call2.png similarity index 100% rename from source/img/nonlocal_call2.png rename to sicp/img/nonlocal_call2.png diff --git a/source/img/nonlocal_corefer.png b/sicp/img/nonlocal_corefer.png similarity index 100% rename from source/img/nonlocal_corefer.png rename to sicp/img/nonlocal_corefer.png diff --git a/source/img/nonlocal_def.png b/sicp/img/nonlocal_def.png similarity index 100% rename from source/img/nonlocal_def.png rename to sicp/img/nonlocal_def.png diff --git a/source/img/nonlocal_def2.png b/sicp/img/nonlocal_def2.png similarity index 100% rename from source/img/nonlocal_def2.png rename to sicp/img/nonlocal_def2.png diff --git a/source/img/nonlocal_recall.png b/sicp/img/nonlocal_recall.png similarity index 100% rename from source/img/nonlocal_recall.png rename to sicp/img/nonlocal_recall.png diff --git a/source/img/pair.png b/sicp/img/pair.png similarity index 100% rename from source/img/pair.png rename to sicp/img/pair.png diff --git a/source/img/pi_sum.png b/sicp/img/pi_sum.png similarity index 100% rename from source/img/pi_sum.png rename to sicp/img/pi_sum.png diff --git a/source/img/pig_latin.png b/sicp/img/pig_latin.png similarity index 100% rename from source/img/pig_latin.png rename to sicp/img/pig_latin.png diff --git a/source/img/produce-filter-consume.png b/sicp/img/produce-filter-consume.png similarity index 100% rename from source/img/produce-filter-consume.png rename to sicp/img/produce-filter-consume.png diff --git a/source/img/qr_alipay.png b/sicp/img/qr_alipay.png similarity index 100% rename from source/img/qr_alipay.png rename to sicp/img/qr_alipay.png diff --git a/source/img/read-match-coroutine.png b/sicp/img/read-match-coroutine.png similarity index 100% rename from source/img/read-match-coroutine.png rename to sicp/img/read-match-coroutine.png diff --git a/source/img/scope.png b/sicp/img/scope.png similarity index 100% rename from source/img/scope.png rename to sicp/img/scope.png diff --git a/source/img/sequence.png b/sicp/img/sequence.png similarity index 100% rename from source/img/sequence.png rename to sicp/img/sequence.png diff --git a/source/img/set_trees.png b/sicp/img/set_trees.png similarity index 100% rename from source/img/set_trees.png rename to sicp/img/set_trees.png diff --git a/source/img/sier.png b/sicp/img/sier.png similarity index 100% rename from source/img/sier.png rename to sicp/img/sier.png diff --git a/source/img/square_root.png b/sicp/img/square_root.png similarity index 100% rename from source/img/square_root.png rename to sicp/img/square_root.png diff --git a/source/img/square_root_update.png b/sicp/img/square_root_update.png similarity index 100% rename from source/img/square_root_update.png rename to sicp/img/square_root_update.png diff --git a/source/img/star.png b/sicp/img/star.png similarity index 100% rename from source/img/star.png rename to sicp/img/star.png diff --git a/source/img/subroutine.png b/sicp/img/subroutine.png similarity index 100% rename from source/img/subroutine.png rename to sicp/img/subroutine.png diff --git a/source/img/tree.png b/sicp/img/tree.png similarity index 100% rename from source/img/tree.png rename to sicp/img/tree.png diff --git a/source/img/universal_machine.png b/sicp/img/universal_machine.png similarity index 100% rename from source/img/universal_machine.png rename to sicp/img/universal_machine.png diff --git a/source/img/vector-math1.png b/sicp/img/vector-math1.png similarity index 100% rename from source/img/vector-math1.png rename to sicp/img/vector-math1.png diff --git a/source/img/vector-math2.png b/sicp/img/vector-math2.png similarity index 100% rename from source/img/vector-math2.png rename to sicp/img/vector-math2.png diff --git a/source/img/vector-math3.png b/sicp/img/vector-math3.png similarity index 100% rename from source/img/vector-math3.png rename to sicp/img/vector-math3.png diff --git a/source/styles/ebook.css b/sicp/styles/ebook.css similarity index 100% rename from source/styles/ebook.css rename to sicp/styles/ebook.css From dbe80961cca0705e8840a01fe0ca5b4072b7d426 Mon Sep 17 00:00:00 2001 From: zcxboy <48000909+zcxboy@users.noreply.github.com> Date: Fri, 14 Jul 2023 12:13:22 +0000 Subject: [PATCH 10/10] aa --- DataStructure-BeautyOfAlgorithm | 1 - DeepLearning-500-questions | 1 - 2 files changed, 2 deletions(-) delete mode 160000 DataStructure-BeautyOfAlgorithm delete mode 160000 DeepLearning-500-questions diff --git a/DataStructure-BeautyOfAlgorithm b/DataStructure-BeautyOfAlgorithm deleted file mode 160000 index 643dbe4..0000000 --- a/DataStructure-BeautyOfAlgorithm +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 643dbe4652827107c67b1fa9aac1e34b713d4214 diff --git a/DeepLearning-500-questions b/DeepLearning-500-questions deleted file mode 160000 index aa60e92..0000000 --- a/DeepLearning-500-questions +++ /dev/null @@ -1 +0,0 @@ -Subproject commit aa60e92fc16da22c102c9a8c3422e98bcc8f8333