Skip to content

Commit

Permalink
remove blank code cells
Browse files Browse the repository at this point in the history
  • Loading branch information
huhuhang committed May 21, 2019
1 parent 5187ac6 commit f4a0a7e
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 3,170 deletions.
275 changes: 0 additions & 275 deletions jupyter_chinese/topic01-使用-Pandas-进行数据探索.ipynb

Large diffs are not rendered by default.

224 changes: 0 additions & 224 deletions jupyter_chinese/topic02-Python-数据可视化分析.ipynb

Large diffs are not rendered by default.

322 changes: 0 additions & 322 deletions jupyter_chinese/topic03-决策树和-K-近邻分类.ipynb

Large diffs are not rendered by default.

406 changes: 0 additions & 406 deletions jupyter_chinese/topic04-线性回归和线性分类器.ipynb

Large diffs are not rendered by default.

301 changes: 0 additions & 301 deletions jupyter_chinese/topic05-集成学习和随机森林方法.ipynb

Large diffs are not rendered by default.

357 changes: 0 additions & 357 deletions jupyter_chinese/topic06-特征工程和特征选择.ipynb

Large diffs are not rendered by default.

198 changes: 0 additions & 198 deletions jupyter_chinese/topic07-主成分分析和聚类.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -221,15 +221,6 @@
"%config InlineBackend.figure_format = 'retina'"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand All @@ -250,15 +241,6 @@
"y = iris.target"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -296,15 +278,6 @@
"ax.w_zaxis.set_ticklabels([])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand All @@ -325,15 +298,6 @@
"from sklearn.metrics import accuracy_score, roc_auc_score # 识别准确率计算函数"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -362,15 +326,6 @@
" preds.argmax(axis=1))))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -406,15 +361,6 @@
"plt.legend(loc=0)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -442,15 +388,6 @@
" preds.argmax(axis=1))))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -481,15 +418,6 @@
" iris.feature_names)))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -524,15 +452,6 @@
"y = digits.target"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand All @@ -554,15 +473,6 @@
" plt.imshow(X[i, :].reshape([8, 8]), cmap='gray')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -591,15 +501,6 @@
"plt.title('MNIST. PCA projection')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -635,15 +536,6 @@
"plt.title('MNIST. t-SNE projection')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -679,15 +571,6 @@
"plt.show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -780,15 +663,6 @@
"plt.plot(X[:, 0], X[:, 1], 'bo')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -831,15 +705,6 @@
" cent_history.append(centroids)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -870,15 +735,6 @@
" plt.title('Step {:}'.format(i + 1))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -953,15 +809,6 @@
"from sklearn.cluster import KMeans # 导入 K-均值聚类模型"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand All @@ -986,15 +833,6 @@
"plt.ylabel('$J(C_k)$')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -1213,15 +1051,6 @@
"dn = hierarchy.dendrogram(Z, color_threshold=0.5)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -1426,15 +1255,6 @@
"from sklearn.cluster import KMeans, AgglomerativeClustering, AffinityPropagation, SpectralClustering"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand All @@ -1461,15 +1281,6 @@
"algorithms.append(AgglomerativeClustering(n_clusters=10))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -1503,15 +1314,6 @@
"results"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down
Loading

0 comments on commit f4a0a7e

Please sign in to comment.