gitextract_50nlmjw2/ ├── .github/ │ └── workflows/ │ └── deploy-vuepress.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── Specializations/ │ ├── HardSkills/ │ │ ├── DataPreprocessing.md │ │ └── DataVisualization.md │ └── SoftSkills/ │ └── ImpactfulPresentations.md ├── Tools/ │ ├── GeoGebra.md │ ├── Latex.md │ ├── MLDemos/ │ │ └── README.md │ ├── Regex.ipynb │ ├── WolframAlpha.md │ └── regex-bin/ │ ├── pi.txt │ └── regexPrinter.py ├── Topics/ │ ├── ANN.md │ ├── Computer Vision/ │ │ ├── Introduction_to_Computer_Vision_using_OpenCV_and_Python.ipynb │ │ ├── Object_Instance_Segmentation_using_TensorFlow_Framework_and_Cloud_GPU_Technology.ipynb │ │ ├── Object_Tracking_based_on_Deep_Learning.ipynb │ │ └── Object_detection_based_on_Deep_Learning.ipynb │ ├── Deep learning in cloud/ │ │ └── README.md │ ├── Demystification.md │ ├── DialogFlow.md │ ├── MLSystems.md │ ├── NLP/ │ │ └── NLP.ipynb │ ├── do_you_need_ml.md │ ├── ds_process.md │ ├── frame-the-problem.md │ ├── jupyter-notebook.md │ ├── math-fundamentals.md │ ├── prerequisites.md │ ├── python-fundamentals.md │ ├── starting-a-data-project.md │ ├── statistics-fundamentals.md │ ├── teaching.md │ ├── usage-and-integration.md │ └── use-cases.md ├── content/ │ ├── .vuepress/ │ │ ├── LICENSE │ │ ├── config.js │ │ ├── public/ │ │ │ ├── googlece1290fc3980cafc.html │ │ │ └── vollkorn/ │ │ │ └── SIL Open Font License.txt │ │ └── theme/ │ │ ├── LICENSE │ │ ├── components/ │ │ │ ├── AlgoliaSearchBox.vue │ │ │ ├── DropdownLink.vue │ │ │ ├── DropdownTransition.vue │ │ │ ├── Home.vue │ │ │ ├── NavLink.vue │ │ │ ├── NavLinks.vue │ │ │ ├── Navbar.vue │ │ │ ├── Page.vue │ │ │ ├── PageEdit.vue │ │ │ ├── PageNav.vue │ │ │ ├── Sidebar.vue │ │ │ ├── SidebarButton.vue │ │ │ ├── SidebarGroup.vue │ │ │ ├── SidebarLink.vue │ │ │ └── SidebarLinks.vue │ │ ├── global-components/ │ │ │ └── Badge.vue │ │ ├── index.js │ │ ├── layouts/ │ │ │ ├── 404.vue │ │ │ └── Layout.vue │ │ ├── noopModule.js │ │ ├── styles/ │ │ │ ├── arrow.styl │ │ │ ├── code.styl │ │ │ ├── config.styl │ │ │ ├── custom-blocks.styl │ │ │ ├── index.styl │ │ │ ├── mobile.styl │ │ │ ├── toc.styl │ │ │ └── wrapper.styl │ │ └── util/ │ │ └── index.js │ ├── README.md │ ├── docs/ │ │ ├── contributing.md │ │ ├── contributors.md │ │ └── template.md │ ├── inferno/ │ │ ├── computer-vision/ │ │ │ ├── Object_detection_based_on_Deep_Learning.ipynb │ │ │ ├── introduction-to-computer-vision.ipynb │ │ │ ├── object-instance-segmentation.ipynb │ │ │ └── object-tracking.ipynb │ │ ├── research/ │ │ │ ├── sota-papers.md │ │ │ └── zotero.md │ │ ├── soft-skills/ │ │ │ └── impactful-presentations.md │ │ ├── time-series/ │ │ │ └── introduction-to-time-series.md │ │ ├── tools/ │ │ │ ├── geo-gebra.md │ │ │ ├── latex.md │ │ │ ├── regex.ipynb │ │ │ └── wolfram-alpha.md │ │ ├── virtual-assistants/ │ │ │ └── dialogflow-chatbot.md │ │ └── welcome-to-inferno/ │ │ └── welcome-to-inferno.md │ ├── package.json │ ├── paradiso/ │ │ ├── demystification-ai-ml-dl.md │ │ ├── do-you-really-need-ml.md │ │ ├── introduction-to-ml.md │ │ ├── use-cases.md │ │ ├── virgilio-teaching-strategy.md │ │ └── what-do-i-need-for-ml.md │ └── purgatorio/ │ ├── collect-and-prepare-data/ │ │ ├── data-collection-text-to-diagram-01.txt │ │ ├── data-collection.md │ │ ├── data-preparation.md │ │ └── data-visualization.md │ ├── define-the-scope-and-ask-questions/ │ │ ├── frame-the-problem.md │ │ ├── starting-a-data-project.md │ │ ├── usage-and-integration.md │ │ └── workspace-setup-and-cloud-computing.md │ ├── fundamentals/ │ │ ├── jupyter-notebook.md │ │ ├── math-fundamentals.md │ │ ├── python-fundamentals.md │ │ ├── statistics-fundamentals.md │ │ └── the-data-science-process.md │ ├── launch-and-mantain-the-system/ │ │ ├── automation-and-reproducibility.md │ │ ├── monitoring-usage-and-behavior.md │ │ └── serving-trained-models.md │ ├── now-go-build/ │ │ ├── a-messy-real-world.md │ │ ├── best-practices.md │ │ └── transfer-learning.md │ └── select-and-train-machine-learning-models/ │ ├── deep-learning-theory.md │ ├── evaluation-and-finetuning.md │ ├── machine-learning-theory.md │ └── tools-and-libraries.md ├── docs/ │ ├── contributing.md │ ├── contributors.md │ └── template.md └── google50cedcfbb5fc73b6.html