Mireu-Lab commited on
Commit
93cac7f
1 Parent(s): 9cc62a4

feat: DataSet Setup Info Code Upload

Browse files
Files changed (1) hide show
  1. test.ipynb +79 -0
test.ipynb ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 1,
6
+ "metadata": {},
7
+ "outputs": [],
8
+ "source": [
9
+ "import pandas as pd"
10
+ ]
11
+ },
12
+ {
13
+ "cell_type": "code",
14
+ "execution_count": 9,
15
+ "metadata": {},
16
+ "outputs": [
17
+ {
18
+ "name": "stdout",
19
+ "output_type": "stream",
20
+ "text": [
21
+ "370\n",
22
+ "2934447\n"
23
+ ]
24
+ }
25
+ ],
26
+ "source": [
27
+ "train = pd.read_csv(\"Train.csv\", low_memory=True)\n",
28
+ "train.set_index(\"attack\", inplace=True)\n",
29
+ "\n",
30
+ "print(len(train.loc[0]))\n",
31
+ "print(len(train.loc[1]))"
32
+ ]
33
+ },
34
+ {
35
+ "cell_type": "code",
36
+ "execution_count": 8,
37
+ "metadata": {},
38
+ "outputs": [
39
+ {
40
+ "name": "stdout",
41
+ "output_type": "stream",
42
+ "text": [
43
+ "107\n",
44
+ "733598\n"
45
+ ]
46
+ }
47
+ ],
48
+ "source": [
49
+ "test = pd.read_csv(\"Test.csv\", low_memory=True)\n",
50
+ "test.set_index(\"attack\", inplace=True)\n",
51
+ "\n",
52
+ "print(len(test.loc[0]))\n",
53
+ "print(len(test.loc[1]))"
54
+ ]
55
+ }
56
+ ],
57
+ "metadata": {
58
+ "kernelspec": {
59
+ "display_name": "Python 3",
60
+ "language": "python",
61
+ "name": "python3"
62
+ },
63
+ "language_info": {
64
+ "codemirror_mode": {
65
+ "name": "ipython",
66
+ "version": 3
67
+ },
68
+ "file_extension": ".py",
69
+ "mimetype": "text/x-python",
70
+ "name": "python",
71
+ "nbconvert_exporter": "python",
72
+ "pygments_lexer": "ipython3",
73
+ "version": "3.10.12"
74
+ },
75
+ "orig_nbformat": 4
76
+ },
77
+ "nbformat": 4,
78
+ "nbformat_minor": 2
79
+ }