Commit 4cb6790b authored by giwi97's avatar giwi97

preprocessing and feature extraction

parent 5a688394
......@@ -331,6 +331,28 @@
"print('Total test data :',X_test.shape[0])"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
"#Preprocessing\n",
"X_trainp=preprocessing1(X_train)\n",
"X_testp=preprocessing1(X_test)"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"#Feature Extraction\n",
"X_trainftr=featureExtraction1(X_trainp)\n",
"X_testftr=featureExtraction1(X_testp)"
]
},
{
"cell_type": "code",
"execution_count": null,
......
......@@ -331,6 +331,28 @@
"print('Total test data :',X_test.shape[0])"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
"#Preprocessing\n",
"X_trainp=preprocessing1(X_train)\n",
"X_testp=preprocessing1(X_test)"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"#Feature Extraction\n",
"X_trainftr=featureExtraction1(X_trainp)\n",
"X_testftr=featureExtraction1(X_testp)"
]
},
{
"cell_type": "code",
"execution_count": null,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment