├── .gitignore ├── Community ├── Commonlounge │ └── README.md └── PyDelhiConference │ └── README.md ├── LICENSE ├── ML ├── AIForPeople │ └── 09.08.2020 │ │ └── Toward_Trustworthy_AI_Development_Mechanisms_for_Supporting_Verifiable_Claims.pdf ├── BrainAndCognitiveSociety │ └── codistillation │ │ └── slides.pdf ├── DS@UA │ └── 20.11.2020 │ │ └── slides.pdf ├── DigitalOcean │ └── README.md ├── EuroPython │ ├── 21.07.2023 │ │ └── README.md │ └── 30.07.2021 │ │ └── poster.pdf ├── FacebookDeveloperCircle │ └── 17.11.2021 │ │ ├── README.md │ │ └── slides.pdf ├── FacebookStartupAccelerator │ └── 22.06.2020 │ │ └── slides.pdf ├── ODSCEast │ └── 01.04.2021 │ │ └── slides.pdf ├── ODSCWest │ └── 29.10.2024 │ │ ├── README.md │ │ └── slides.pdf ├── PyCon │ ├── India │ │ └── 19.09.2021 │ │ │ └── slides.pdf │ └── US │ │ └── 23.04.2021 │ │ └── slides.pdf ├── PyData │ ├── 02.09.2017 │ │ └── README.md │ └── 28.10.2021 │ │ ├── README.md │ │ └── slides.pdf ├── PyDelhi │ └── README.md ├── PyTorchCommunityVoices │ └── 04.08.2021 │ │ └── poster.pdf ├── TMLS │ ├── 15.07.2024 │ │ ├── README.md │ │ ├── notebook.ipynb │ │ └── slides.pdf │ └── 28.11.2022 │ │ ├── README.md │ │ └── slides.pdf ├── TwitterDeveloperGroup │ └── README.md ├── WomenWhoCode │ ├── 06.04.2017 │ │ └── README.md │ └── 07.23.2017 │ │ └── README.md └── course │ ├── INF8245E │ ├── README.md │ └── slides.pdf │ └── INF8953CE │ ├── README.md │ └── slides.pdf ├── Programming └── PyDelhiConference │ └── README.md ├── README.md ├── _config.yml └── spark ├── BDI └── README.md ├── PyCon2016 └── README.md └── PyDelhi ├── PySpark.ipynb ├── README.md ├── data ├── people.json └── sequence.txt └── runnotebook.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/.gitignore -------------------------------------------------------------------------------- /Community/Commonlounge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/Community/Commonlounge/README.md -------------------------------------------------------------------------------- /Community/PyDelhiConference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/Community/PyDelhiConference/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/LICENSE -------------------------------------------------------------------------------- /ML/AIForPeople/09.08.2020/Toward_Trustworthy_AI_Development_Mechanisms_for_Supporting_Verifiable_Claims.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/AIForPeople/09.08.2020/Toward_Trustworthy_AI_Development_Mechanisms_for_Supporting_Verifiable_Claims.pdf -------------------------------------------------------------------------------- /ML/BrainAndCognitiveSociety/codistillation/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/BrainAndCognitiveSociety/codistillation/slides.pdf -------------------------------------------------------------------------------- /ML/DS@UA/20.11.2020/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/DS@UA/20.11.2020/slides.pdf -------------------------------------------------------------------------------- /ML/DigitalOcean/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/DigitalOcean/README.md -------------------------------------------------------------------------------- /ML/EuroPython/21.07.2023/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/EuroPython/21.07.2023/README.md -------------------------------------------------------------------------------- /ML/EuroPython/30.07.2021/poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/EuroPython/30.07.2021/poster.pdf -------------------------------------------------------------------------------- /ML/FacebookDeveloperCircle/17.11.2021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/FacebookDeveloperCircle/17.11.2021/README.md -------------------------------------------------------------------------------- /ML/FacebookDeveloperCircle/17.11.2021/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/FacebookDeveloperCircle/17.11.2021/slides.pdf -------------------------------------------------------------------------------- /ML/FacebookStartupAccelerator/22.06.2020/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/FacebookStartupAccelerator/22.06.2020/slides.pdf -------------------------------------------------------------------------------- /ML/ODSCEast/01.04.2021/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/ODSCEast/01.04.2021/slides.pdf -------------------------------------------------------------------------------- /ML/ODSCWest/29.10.2024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/ODSCWest/29.10.2024/README.md -------------------------------------------------------------------------------- /ML/ODSCWest/29.10.2024/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/ODSCWest/29.10.2024/slides.pdf -------------------------------------------------------------------------------- /ML/PyCon/India/19.09.2021/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/PyCon/India/19.09.2021/slides.pdf -------------------------------------------------------------------------------- /ML/PyCon/US/23.04.2021/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/PyCon/US/23.04.2021/slides.pdf -------------------------------------------------------------------------------- /ML/PyData/02.09.2017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/PyData/02.09.2017/README.md -------------------------------------------------------------------------------- /ML/PyData/28.10.2021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/PyData/28.10.2021/README.md -------------------------------------------------------------------------------- /ML/PyData/28.10.2021/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/PyData/28.10.2021/slides.pdf -------------------------------------------------------------------------------- /ML/PyDelhi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/PyDelhi/README.md -------------------------------------------------------------------------------- /ML/PyTorchCommunityVoices/04.08.2021/poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/PyTorchCommunityVoices/04.08.2021/poster.pdf -------------------------------------------------------------------------------- /ML/TMLS/15.07.2024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/TMLS/15.07.2024/README.md -------------------------------------------------------------------------------- /ML/TMLS/15.07.2024/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/TMLS/15.07.2024/notebook.ipynb -------------------------------------------------------------------------------- /ML/TMLS/15.07.2024/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/TMLS/15.07.2024/slides.pdf -------------------------------------------------------------------------------- /ML/TMLS/28.11.2022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/TMLS/28.11.2022/README.md -------------------------------------------------------------------------------- /ML/TMLS/28.11.2022/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/TMLS/28.11.2022/slides.pdf -------------------------------------------------------------------------------- /ML/TwitterDeveloperGroup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/TwitterDeveloperGroup/README.md -------------------------------------------------------------------------------- /ML/WomenWhoCode/06.04.2017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/WomenWhoCode/06.04.2017/README.md -------------------------------------------------------------------------------- /ML/WomenWhoCode/07.23.2017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/WomenWhoCode/07.23.2017/README.md -------------------------------------------------------------------------------- /ML/course/INF8245E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/course/INF8245E/README.md -------------------------------------------------------------------------------- /ML/course/INF8245E/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/course/INF8245E/slides.pdf -------------------------------------------------------------------------------- /ML/course/INF8953CE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/course/INF8953CE/README.md -------------------------------------------------------------------------------- /ML/course/INF8953CE/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/ML/course/INF8953CE/slides.pdf -------------------------------------------------------------------------------- /Programming/PyDelhiConference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/Programming/PyDelhiConference/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/_config.yml -------------------------------------------------------------------------------- /spark/BDI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/spark/BDI/README.md -------------------------------------------------------------------------------- /spark/PyCon2016/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/spark/PyCon2016/README.md -------------------------------------------------------------------------------- /spark/PyDelhi/PySpark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/spark/PyDelhi/PySpark.ipynb -------------------------------------------------------------------------------- /spark/PyDelhi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/spark/PyDelhi/README.md -------------------------------------------------------------------------------- /spark/PyDelhi/data/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/spark/PyDelhi/data/people.json -------------------------------------------------------------------------------- /spark/PyDelhi/data/sequence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/spark/PyDelhi/data/sequence.txt -------------------------------------------------------------------------------- /spark/PyDelhi/runnotebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/talks/HEAD/spark/PyDelhi/runnotebook.sh --------------------------------------------------------------------------------