gitextract_ywkx76s7/ ├── .eslintrc ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── intro.yml ├── .gitignore ├── .prettier ├── Cloud/ │ └── Speech-to-text/ │ └── README.md ├── Datensätze/ │ └── Bern/ │ └── Sandkeusch.py ├── Docs/ │ ├── Sound/ │ │ ├── sound.ogg │ │ └── untterregle.ogg │ └── images/ │ └── untterregle.ogg ├── Geschichte/ │ ├── EIDGENOSSENSCHAFT.md │ └── geschichte.md ├── Gewaltenteilung/ │ └── Gewaltenteilung_Im_Rechtsstaat.md ├── Install ├── LICENSE ├── Lied/ │ ├── .gitignore │ ├── Geburi.md │ ├── Patent Ochsner/ │ │ └── Für immer uf di.md │ ├── cake.less │ └── loading.css ├── NLP/ │ └── Examples/ │ └── one/ │ ├── assignment.md │ ├── cl.md │ ├── example.py │ └── number.py ├── Notebook/ │ ├── Intro.ipynb │ ├── K_mean_clustering.ipynb │ └── text_data.ipynb ├── README.md ├── SwissGermanBot/ │ └── login.txt ├── datasets/ │ ├── Buendnertuetsch/ │ │ └── buendnertuetsch.txt │ ├── Jugendsprache/ │ │ └── jugendsprache.txt │ ├── bern/ │ │ ├── W Nuss Vo Buempliz.py │ │ └── bern.txt │ ├── dictionary.py │ ├── english/ │ │ └── festivalLove-eng.ipynb │ ├── french/ │ │ └── french.txt │ ├── img/ │ │ └── map.txt │ ├── korean/ │ │ ├── festivalLovekr.ipynb │ │ ├── high-kr.py │ │ └── malLuege.py │ ├── luzern/ │ │ └── luzern.txt │ ├── zuerich/ │ │ ├── BlueBike.txt │ │ ├── FestivalLove.ipynb │ │ ├── JohnJuno.ipynb │ │ ├── Sie het en traum gha.txt │ │ ├── Teil_Vo_Dir.ipynb │ │ ├── fremdi_fürenand.ipynb │ │ ├── high.py │ │ ├── i_ha's_immer_gwüsst.ipynb │ │ ├── lena.ipynb │ │ ├── malleuge.txt │ │ ├── panama.txt │ │ ├── teleskop.py │ │ ├── valencia.ipynb │ │ ├── zuerich.txt │ │ ├── zuerichII.txt │ │ └── zuerichbs.txt │ └── zug/ │ └── zug.txt ├── dist/ │ ├── siriwave.esm.js │ ├── siriwave.umd.js │ └── typ/ │ ├── curve.d.ts │ ├── index.d.ts │ └── ios.d.ts ├── facts/ │ ├── ASR/ │ │ ├── DeepSpeech.md │ │ ├── data/ │ │ │ └── alphabet.txt │ │ └── pre-processing/ │ │ ├── audio.py │ │ ├── ch_De_prep.py │ │ ├── corpus_cleaning.py │ │ ├── finden_files.py │ │ ├── folien.py │ │ ├── prep_vocab.py │ │ ├── prepare_data.py │ │ ├── shuffle_split.py │ │ └── utf_8.sh │ ├── GAN.md │ ├── chrütertee.java │ ├── semantiks.md │ └── word2vec.md ├── src/ │ ├── context.ts │ ├── ios9_curve.ts │ ├── klassich.ts │ ├── pramp/ │ │ └── algodaten/ │ │ ├── DecodeVariations/ │ │ │ ├── answer.java │ │ │ ├── answer.txt │ │ │ ├── answerII.py │ │ │ ├── hints.txt │ │ │ └── question.txt │ │ ├── Diff Between Two Strings/ │ │ │ ├── answer.py │ │ │ └── question.txt │ │ ├── Island Count/ │ │ │ ├── answer.c │ │ │ ├── hints.txt │ │ │ └── question.txt │ │ ├── Number of Paths/ │ │ │ ├── ans.py │ │ │ ├── answer.txt │ │ │ ├── hints.txt │ │ │ └── question.txt │ │ ├── Number_Of_Paths/ │ │ │ ├── answer.txt │ │ │ ├── hints.txt │ │ │ └── question.txt │ │ ├── Root of Number/ │ │ │ ├── ans.c │ │ │ ├── ans.java │ │ │ ├── answer.txt │ │ │ ├── hints.txt │ │ │ └── question.txt │ │ ├── Root_of_Number/ │ │ │ ├── hints.txt │ │ │ ├── problem.txt │ │ │ └── pseudocode.py │ │ └── pairs_with_specific_difference/ │ │ └── answer.py │ ├── read-Swiss-German.py │ └── srf/ │ ├── comedy/ │ │ └── renatoKaiser.txt │ └── dok/ │ ├── Kampf gegen die Suchttxt │ └── KampfSucht.txt ├── swissDeutschBot/ │ ├── .gitignore │ ├── .idee/ │ │ └── Inspektion/ │ │ ├── .gitignore │ │ ├── GPT3api.iml │ │ ├── miscellanious.xml │ │ ├── modules.xml │ │ ├── profil_einstellungen.xml │ │ ├── projeckt_vorgaben.xml │ │ ├── requirements.md │ │ └── vcs.xml │ ├── Dockerfile │ ├── mini.py │ └── openAI.py └── trials/ ├── bünzli.md └── quiz.md