Skip to content

Commit

Permalink
renamed walle to titli
Browse files Browse the repository at this point in the history
  • Loading branch information
swainsubrat committed May 1, 2024
1 parent 6c6a8fa commit b60de93
Show file tree
Hide file tree
Showing 15 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions backup/test_ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

from scapy.all import *

from walle.fe import AfterImage, NetStat
from walle.ids import TorchKitNET
from walle.utils import RMSELoss
from titli.fe import AfterImage, NetStat
from titli.ids import TorchKitNET
from titli.utils import RMSELoss

# Read the pcap file using scapy
PCAP_PATH = "../PANDA/PANDA/data/benign/weekday.pcap"
Expand Down
4 changes: 2 additions & 2 deletions backup/train_ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

from scapy.all import *

from walle.fe import AfterImage, NetStat
from walle.ids import KitNET
from titli.fe import AfterImage, NetStat
from titli.ids import KitNET

import matplotlib.pyplot as plt

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(
name='walle-ids',
name='titli',
version='0.0.1',
description='A library for collection of IDS and tools for evaluating them',
long_description=open("README.md").read(),
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion walle/ids/kitsune.py → titli/ids/kitsune.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from scipy.stats import norm
from scipy.cluster.hierarchy import linkage, to_tree

from walle.ids.torch_kitnet import _TorchKitNET # type: ignore
from titli.ids.torch_kitnet import _TorchKitNET # type: ignore

class KitNET:
"""
Expand Down
5 changes: 3 additions & 2 deletions walle/ids/pytorch_kitsune.py → titli/ids/pytorch_kitsune.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
from scapy.all import *


import walle.fe.corClust as CC
from walle.fe.after_image import AfterImage, NetStat
import titli.fe.corClust as CC
from titli.fe import AfterImage, NetStat

import matplotlib.pyplot as plt

class RMSELoss(nn.Module):
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b60de93

Please sign in to comment.