From 1cc5db76e7998478477424bd1cf5bb802fa9d780 Mon Sep 17 00:00:00 2001 From: Thirunayan22 Date: Wed, 30 Apr 2025 22:18:26 +0530 Subject: [PATCH 1/2] added initial folder structure --- .github/workflows/workflow.yml | 0 .gitignore | 0 DSL/README.md | 1 + GUI/README.md | 1 + GUI/tests/README.md | 1 + configs/README.md | 1 + docs/README.md | 1 + src/README.md | 1 + src/tests/README.md | 1 + 9 files changed, 7 insertions(+) create mode 100644 .github/workflows/workflow.yml create mode 100644 .gitignore create mode 100644 DSL/README.md create mode 100644 GUI/README.md create mode 100644 GUI/tests/README.md create mode 100644 configs/README.md create mode 100644 docs/README.md create mode 100644 src/README.md create mode 100644 src/tests/README.md diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 00000000..e69de29b diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/DSL/README.md b/DSL/README.md new file mode 100644 index 00000000..34bd0fa3 --- /dev/null +++ b/DSL/README.md @@ -0,0 +1 @@ +## Root DSL Folder \ No newline at end of file diff --git a/GUI/README.md b/GUI/README.md new file mode 100644 index 00000000..40e93cbd --- /dev/null +++ b/GUI/README.md @@ -0,0 +1 @@ +## Contains GUI code \ No newline at end of file diff --git a/GUI/tests/README.md b/GUI/tests/README.md new file mode 100644 index 00000000..3a807f89 --- /dev/null +++ b/GUI/tests/README.md @@ -0,0 +1 @@ +## Contains both unit and integration test for GUI \ No newline at end of file diff --git a/configs/README.md b/configs/README.md new file mode 100644 index 00000000..ccfcdcf1 --- /dev/null +++ b/configs/README.md @@ -0,0 +1 @@ +## Contains all important configurations \ No newline at end of file diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 00000000..34561cc2 --- /dev/null +++ b/docs/README.md @@ -0,0 +1 @@ +## Contains documentation \ No newline at end of file diff --git a/src/README.md b/src/README.md new file mode 100644 index 00000000..c9152505 --- /dev/null +++ b/src/README.md @@ -0,0 +1 @@ +## Contains primary platform code \ No newline at end of file diff --git a/src/tests/README.md b/src/tests/README.md new file mode 100644 index 00000000..0f525a82 --- /dev/null +++ b/src/tests/README.md @@ -0,0 +1 @@ +## Contains both unit and integration test for global classifier backend \ No newline at end of file From 936ac41affd8f7a6771a061e70088b2bf262ab0d Mon Sep 17 00:00:00 2001 From: Thirunayan22 Date: Wed, 30 Apr 2025 22:30:26 +0530 Subject: [PATCH 2/2] added init.py --- .../workflows/workflow.yml => src/dataset-generation/__init__.py | 0 src/inference/__init__.py | 0 src/training/__init__.py | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/workflow.yml => src/dataset-generation/__init__.py (100%) create mode 100644 src/inference/__init__.py create mode 100644 src/training/__init__.py diff --git a/.github/workflows/workflow.yml b/src/dataset-generation/__init__.py similarity index 100% rename from .github/workflows/workflow.yml rename to src/dataset-generation/__init__.py diff --git a/src/inference/__init__.py b/src/inference/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/src/training/__init__.py b/src/training/__init__.py new file mode 100644 index 00000000..e69de29b