initial commit generate directory tree
This commit is contained in:
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
21
LICENSE
21
LICENSE
@@ -1,21 +0,0 @@
|
|||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2024 Panuluh
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
|
|||||||
0
code/notebooks/01_data_exploration.ipynb
Normal file
0
code/notebooks/01_data_exploration.ipynb
Normal file
0
code/notebooks/02_fft_implementation.ipynb
Normal file
0
code/notebooks/02_fft_implementation.ipynb
Normal file
0
code/notebooks/03_feature_extraction.ipynb
Normal file
0
code/notebooks/03_feature_extraction.ipynb
Normal file
0
code/notebooks/04_svm_modeling.ipynb
Normal file
0
code/notebooks/04_svm_modeling.ipynb
Normal file
0
code/notebooks/05_results_analysis.ipynb
Normal file
0
code/notebooks/05_results_analysis.ipynb
Normal file
0
latex/backmatter/appendices.tex
Normal file
0
latex/backmatter/appendices.tex
Normal file
0
latex/backmatter/bibliography.tex
Normal file
0
latex/backmatter/bibliography.tex
Normal file
0
latex/bibliography.bib
Normal file
0
latex/bibliography.bib
Normal file
0
latex/chapters/01_introduction.tex
Normal file
0
latex/chapters/01_introduction.tex
Normal file
0
latex/chapters/02_literature_review.tex
Normal file
0
latex/chapters/02_literature_review.tex
Normal file
0
latex/chapters/03_methodology.tex
Normal file
0
latex/chapters/03_methodology.tex
Normal file
0
latex/chapters/04_results.tex
Normal file
0
latex/chapters/04_results.tex
Normal file
0
latex/chapters/05_conclusion.tex
Normal file
0
latex/chapters/05_conclusion.tex
Normal file
0
latex/frontmatter/abstract.tex
Normal file
0
latex/frontmatter/abstract.tex
Normal file
0
latex/frontmatter/acknowledgements.tex
Normal file
0
latex/frontmatter/acknowledgements.tex
Normal file
0
latex/frontmatter/title_page.tex
Normal file
0
latex/frontmatter/title_page.tex
Normal file
0
latex/main.tex
Normal file
0
latex/main.tex
Normal file
0
latex/thesis.sty
Normal file
0
latex/thesis.sty
Normal file
0
requirements.txt
Normal file
0
requirements.txt
Normal file
35
setup_do_not_run.sh
Normal file
35
setup_do_not_run.sh
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Define the base directory
|
||||||
|
base_dir="thesis-monorepo"
|
||||||
|
|
||||||
|
# Create the main directory structure
|
||||||
|
mkdir -p "$base_dir"/{code/{data/{raw,processed},notebooks,src/{data,features,models,visualization}},docs/{literature_review/paper_summaries,methodology,results},latex/{chapters,frontmatter,backmatter,figures,tables},results/{figures,tables}}
|
||||||
|
|
||||||
|
# Create notebooks
|
||||||
|
for nb in {01_data_exploration,02_fft_implementation,03_feature_extraction,04_svm_modeling,05_results_analysis}; do
|
||||||
|
touch "$base_dir"/code/notebooks/"$nb".ipynb
|
||||||
|
done
|
||||||
|
|
||||||
|
# Create LaTeX chapters
|
||||||
|
for chapter in {01_introduction,02_literature_review,03_methodology,04_results,05_conclusion}; do
|
||||||
|
touch "$base_dir"/latex/chapters/"$chapter".tex
|
||||||
|
done
|
||||||
|
|
||||||
|
# Create LaTeX frontmatter files
|
||||||
|
for front in abstract acknowledgements title_page; do
|
||||||
|
touch "$base_dir"/latex/frontmatter/"$front".tex
|
||||||
|
done
|
||||||
|
|
||||||
|
# Create LaTeX backmatter files
|
||||||
|
for back in appendices bibliography; do
|
||||||
|
touch "$base_dir"/latex/backmatter/"$back".tex
|
||||||
|
done
|
||||||
|
|
||||||
|
# Create main LaTeX files
|
||||||
|
touch "$base_dir"/latex/{main.tex,bibliography.bib,thesis.sty}
|
||||||
|
|
||||||
|
# Create main project files
|
||||||
|
touch "$base_dir"/{.gitignore,README.md,requirements.txt,LICENSE}
|
||||||
|
|
||||||
|
echo "Thesis directory structure created successfully."
|
||||||
Reference in New Issue
Block a user