├── Artwork ├── Project-Los-Angeles.png ├── README.md ├── Tegridy-Code-2025.png ├── Tegridy-Tools-Artwork (1).png ├── Tegridy-Tools-Artwork (2).png ├── Tegridy-Tools-Artwork (3).png ├── Tegridy-Tools-Artwork (4).png └── Tegridy-Tools-Artwork (5).png ├── Examples ├── Advanced_MIDI_Renderer_TMIDIX_Gradio_Example.py ├── Harmonic_Melody_MIDI_Mixer_Gradio_App_Example.py ├── MIDI_Melody_Gradio_App_Example.py ├── Monophonic_MIDI_Melody_Harmonizer_Gradio_App_Example.py ├── Music_Sentence_Transformer_Gradio_App_Example.py ├── README.md ├── TMIDI_Processor_Examples.py ├── classymidi_classifier_and_songs_names_generator.py ├── efficient_virtuoso.py ├── instant_classy_midi_classifier.py ├── intelligent_virtuoso.py ├── karaoke_master.py ├── markovify_piano.py ├── midi_flipper_folder.py ├── midi_mir_statistics.py ├── midi_rpr_midi.py ├── midi_search.py ├── music_reformer_tpu_edition.py └── optimus_virtuoso.py ├── LICENSE ├── MANIFEST.in ├── README.md ├── __init.py__ ├── docs ├── ClassyMIDI.html ├── GPT2RGA.html ├── GPT2RGAX.html ├── HaystackSearch.html ├── MIDI_Synthesizer.html ├── NumbaHaystackSearch.html ├── PDOCS.ipynb ├── Perceiver-AR.html ├── README.md ├── SyllablesSearch.html ├── TCUPY.html ├── TMELODIES.html ├── TMIDI.html ├── TMIDIX.html ├── TORAH.html ├── TPLOTS.html ├── TinyMIDI.html ├── b_classi.html ├── index.html ├── lwa_transformer.html ├── markovify.html ├── midi_to_colab_audio.html ├── minGPT.html ├── nanoGPT.html ├── seq2seq.html ├── x_transformer.html ├── x_transformer_1_23_2.html └── x_transformer_1_27_16.html ├── index.html ├── index.rst ├── install ├── README.md ├── requirements.txt ├── requirements_cuda.txt ├── setup.py ├── setup.sh └── setup_cuda.py ├── requirements.txt ├── setup.py ├── tegridy-data ├── Basic-English-Karaoke-Statistics.pickle ├── English-Words-Syllables.csv ├── English-Words-Syllables.txt ├── Fuzzy-Chords-Dataset.zip ├── General MIDI Patches Numbers by Families.pdf ├── General MIDI Patches Numbers.pdf ├── Gutteral-Syllables-List.tsv ├── Instant_Classy_LAKH_MIDI_Signatures_Pack.pickle.gz ├── LAKH-Melodies-Signatures.pickle.gz ├── Los_Angeles_MIDI_dataset_most_common_filtered_pitches_chords.pickle ├── README.md ├── Torah.zip ├── all_piano_chords_counts.pickle ├── clean_midi_matrixes.zip ├── most-common-words │ ├── 20k.txt │ ├── README.md │ ├── google-10000-english-no-swears.txt │ ├── google-10000-english-usa-no-swears-long.txt │ ├── google-10000-english-usa-no-swears-medium.txt │ ├── google-10000-english-usa-no-swears-short.txt │ ├── google-10000-english-usa-no-swears.txt │ ├── google-10000-english-usa.txt │ └── google-10000-english.txt └── pitches_patches_MIDI_velocities_map.pickle ├── tegridy-raspberry ├── README.md ├── keras │ ├── Keras4Raspberry.sh │ └── README.md ├── numpy │ ├── Numpy4Raspberry.sh │ └── README.md ├── pyknon │ ├── MidiFile.py │ ├── README.md │ ├── ___init.py___ │ ├── genmidi.py │ ├── music.py │ ├── notation.py │ ├── pc_sets.py │ ├── pcset.py │ ├── plot.py │ └── simplemusic.py ├── pytorch │ ├── PyTorch4Raspbery.sh │ └── README.md └── tensorflow │ ├── README.md │ └── Tensorflow4Raspberry.sh └── tegridy-tools ├── AdvancedSyllablesSearch.py ├── B-Classi ├── README.md └── b_classi.py ├── ChordsMappings.py ├── ClassyMIDI.py ├── GPT2RGA.py ├── GPT2RGAX.py ├── HaystackSearch.py ├── Imagen ├── README.md └── imagen-pytorch-main.zip ├── LWA-Transformer ├── README.md └── lwa_transformer.py ├── MIDI.py ├── MIDI_Synthesizer.py ├── NumbaHaystackSearch.py ├── Perceiver-AR ├── README.md ├── autoregressive_wrapper.py ├── perceiver_ar_pytorch.py └── perceiver_ar_pytorch_full.py ├── PyChoReLib ├── Chord.py ├── ChordName.py ├── ChordRecognizer.py ├── Exceptions.py ├── HelperFunctions.py ├── Interval.py ├── IntervalName.py ├── IntervalRecognizer.py ├── KnowledgeBasedRecognizer.py ├── README.md ├── Readme.midiinputdemo ├── Scale.py ├── ScaleName.py ├── ScaleRecognizer.py ├── author.txt ├── changelog.txt ├── gpl.txt ├── midiinputdemo.py └── test.py ├── README.md ├── SyllablesSearch.py ├── TCUPY.py ├── TMELODIES.py ├── TMIDI.py ├── TMIDIX.py ├── TORAH.py ├── TPLOTS.py ├── TinyMIDI.py ├── X-Transformer ├── README.md ├── x_transformer.py ├── x_transformer_1_23_2.py ├── x_transformer_1_27_16.py ├── x_transformer_1_43_0.py └── x_transformer_2_3_1.py ├── __init__.py ├── __version__.py ├── chorder ├── README.md └── chorder-master.zip ├── chords2midi ├── README.md ├── chords2midi-master.zip └── free-midi-chords-main.zip ├── chords_progresions ├── README.md └── pitches_chords_progressions_generator.py ├── directory_tree ├── README.md └── directory_tree.py ├── dtaidistance ├── README.md └── dtaidistance-master.zip ├── einops ├── README.md └── einops-master.zip ├── fairseq ├── README.md └── fairseq-master.zip ├── fuzzywuzzy ├── README.md └── fuzzywuzzy-master.zip ├── markovify.py ├── markovify ├── README.md ├── markovify-0.8.3.zip ├── markovify-master.zip └── markovify.py ├── melody_checker ├── README.md ├── melody_checker.joblib ├── melody_checker.log ├── melody_checker.py └── melody_checker_train.py ├── midi_loops_extractor ├── README.md ├── corr_mat.py ├── corr_mat_fast.py ├── nomml.py ├── note_set.py ├── note_set_fast.py ├── process_file.py └── process_file_fast.py ├── midi_to_colab_audio.py ├── mididoctor ├── MIDI.py ├── README.md └── mididoctor.py ├── miditoolkit ├── README.md └── miditoolkit-master.zip ├── mido ├── README.md ├── mido-1.2.9.zip └── mido-master.zip ├── minGPT.py ├── minGPT ├── README.md └── minGPT.py ├── musicpy ├── README.md ├── musicpy-master.zip └── musicpy_pop_generator.py ├── musictheory ├── README.md ├── __init__.py ├── chordgenerator.py ├── chords.py ├── musutility.py ├── scales.py └── temperament.py ├── musicxml_parser ├── README.md ├── __init__.py ├── chord_symbol.py ├── constants.py ├── direction.py ├── direction_constants.py ├── example.xml ├── exception.py ├── key_signature.py ├── main.py ├── measure.py ├── notations.py ├── note.py ├── note_duration.py ├── note_dynamic.py ├── part.py ├── playable_notes.py ├── score_part.py ├── tempo.py └── time_signature.py ├── nanoGPT ├── README.md └── nanoGPT.py ├── notebooks ├── Advanced_MIDI_Channel_Splitter.ipynb ├── Advanced_MIDI_Silence_Removal_Tool.ipynb ├── AffirMIDI_Piano.ipynb ├── Algorithmic_Accompaniment_Generator.ipynb ├── B_CLassi.ipynb ├── Bulk_MIDI_Squasher.ipynb ├── Bulk_MIDI_Velocity_Simulator.ipynb ├── ByteDance_Piano_Transcription.ipynb ├── Difflib_Itertools_Playground.ipynb ├── Fuzzy_Melody_Generator.ipynb ├── Fuzzy_Songs_Generator.ipynb ├── GPT2_Models_Downloader.ipynb ├── GitHub_folder_README_generator.ipynb ├── Instant_Classy_MIDI_Classifier.ipynb ├── MIDI_Chords_Progressions_Generator.ipynb ├── MIDI_Flipper_Folder.ipynb ├── MIDI_MIR_Statistics.ipynb ├── MIDI_Octave_Splitter.ipynb ├── MIDI_PR_MIDI_Converter.ipynb ├── MIDI_Phraser.ipynb ├── MIDI_Piano_Beats_Generator.ipynb ├── MIDI_RPR_MIDI.ipynb ├── MIDI_Search.ipynb ├── MIDIs_to_Images_Converter.ipynb ├── Magenta_note_seq_chords_labeler.ipynb ├── Master_MIDI_Dataset_Search_and_Filter.ipynb ├── Melody_Master.ipynb ├── Multi_Instrumental_Medley_Maker.ipynb ├── MusicXML_to_MIDI.ipynb ├── Music_Equations.ipynb ├── POP909_Dataset_Converter.ipynb ├── Piano_Medley_Maker.ipynb ├── Piano_Phraser.ipynb ├── README.md ├── Simple_MIDI_Chorder.ipynb ├── Simple_MIDI_Reducer_Parser.ipynb ├── Songs_Names_Generator.ipynb ├── Syllabic_Lyrics_Generator.ipynb ├── Torah_Analyzer.ipynb ├── WORLD_MIDIs_Explorer.ipynb ├── clean_midi_Matrixes_Search.ipynb ├── other-misc-notebooks │ ├── README.md │ ├── Spotify API Music Scrape.ipynb │ ├── dataset_reading.ipynb │ ├── harmonization_example.ipynb │ ├── midi-music-data-extraction-using-music21.ipynb │ ├── parse_and_encode_data.ipynb │ └── prepare.ipynb └── zlib_pydub_audio_tokenizer.ipynb ├── noteseq ├── README.md ├── Requirements.txt ├── chord_inference.py ├── chord_symbols_lib.py ├── chords_lib.py ├── constants.py ├── events_lib.py ├── melodies_lib.py ├── melody_inference.py ├── midi_io.py ├── midi_synth.py ├── music_pb2.py ├── notebook_utils.py └── sequences_lib.py ├── pretty_midi ├── README.md ├── containers.py ├── instrument.py ├── pm_constants.py ├── pretty_midi.py └── utilities.py ├── pychord ├── README.md └── pychord-main.zip ├── pypianoroll ├── README.md └── pypianoroll-main.zip ├── python-midi ├── README.md └── python-midi-master.zip ├── seed-lyrics.mid ├── seed-lyrics.txt ├── seed-melody-harmonized.mid ├── seed-melody.mid ├── seed-melody.wav ├── seed.mid ├── seed2.mid ├── seed3.mid ├── sentencepiece ├── README.md └── sentencepiece-master.zip ├── seq2seq.py ├── symspellpy ├── README.md └── symspellpy-master.zip └── wordninja ├── README.md ├── wordninja.py └── wordninja_words.txt.gz /Artwork/Project-Los-Angeles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Artwork/Project-Los-Angeles.png -------------------------------------------------------------------------------- /Artwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Artwork/README.md -------------------------------------------------------------------------------- /Artwork/Tegridy-Code-2025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Artwork/Tegridy-Code-2025.png -------------------------------------------------------------------------------- /Artwork/Tegridy-Tools-Artwork (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Artwork/Tegridy-Tools-Artwork (1).png -------------------------------------------------------------------------------- /Artwork/Tegridy-Tools-Artwork (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Artwork/Tegridy-Tools-Artwork (2).png -------------------------------------------------------------------------------- /Artwork/Tegridy-Tools-Artwork (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Artwork/Tegridy-Tools-Artwork (3).png -------------------------------------------------------------------------------- /Artwork/Tegridy-Tools-Artwork (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Artwork/Tegridy-Tools-Artwork (4).png -------------------------------------------------------------------------------- /Artwork/Tegridy-Tools-Artwork (5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Artwork/Tegridy-Tools-Artwork (5).png -------------------------------------------------------------------------------- /Examples/Advanced_MIDI_Renderer_TMIDIX_Gradio_Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/Advanced_MIDI_Renderer_TMIDIX_Gradio_Example.py -------------------------------------------------------------------------------- /Examples/Harmonic_Melody_MIDI_Mixer_Gradio_App_Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/Harmonic_Melody_MIDI_Mixer_Gradio_App_Example.py -------------------------------------------------------------------------------- /Examples/MIDI_Melody_Gradio_App_Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/MIDI_Melody_Gradio_App_Example.py -------------------------------------------------------------------------------- /Examples/Monophonic_MIDI_Melody_Harmonizer_Gradio_App_Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/Monophonic_MIDI_Melody_Harmonizer_Gradio_App_Example.py -------------------------------------------------------------------------------- /Examples/Music_Sentence_Transformer_Gradio_App_Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/Music_Sentence_Transformer_Gradio_App_Example.py -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/README.md -------------------------------------------------------------------------------- /Examples/TMIDI_Processor_Examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/TMIDI_Processor_Examples.py -------------------------------------------------------------------------------- /Examples/classymidi_classifier_and_songs_names_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/classymidi_classifier_and_songs_names_generator.py -------------------------------------------------------------------------------- /Examples/efficient_virtuoso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/efficient_virtuoso.py -------------------------------------------------------------------------------- /Examples/instant_classy_midi_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/instant_classy_midi_classifier.py -------------------------------------------------------------------------------- /Examples/intelligent_virtuoso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/intelligent_virtuoso.py -------------------------------------------------------------------------------- /Examples/karaoke_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/karaoke_master.py -------------------------------------------------------------------------------- /Examples/markovify_piano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/markovify_piano.py -------------------------------------------------------------------------------- /Examples/midi_flipper_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/midi_flipper_folder.py -------------------------------------------------------------------------------- /Examples/midi_mir_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/midi_mir_statistics.py -------------------------------------------------------------------------------- /Examples/midi_rpr_midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/midi_rpr_midi.py -------------------------------------------------------------------------------- /Examples/midi_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/midi_search.py -------------------------------------------------------------------------------- /Examples/music_reformer_tpu_edition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/music_reformer_tpu_edition.py -------------------------------------------------------------------------------- /Examples/optimus_virtuoso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/Examples/optimus_virtuoso.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/README.md -------------------------------------------------------------------------------- /__init.py__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ClassyMIDI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/ClassyMIDI.html -------------------------------------------------------------------------------- /docs/GPT2RGA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/GPT2RGA.html -------------------------------------------------------------------------------- /docs/GPT2RGAX.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/GPT2RGAX.html -------------------------------------------------------------------------------- /docs/HaystackSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/HaystackSearch.html -------------------------------------------------------------------------------- /docs/MIDI_Synthesizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/MIDI_Synthesizer.html -------------------------------------------------------------------------------- /docs/NumbaHaystackSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/NumbaHaystackSearch.html -------------------------------------------------------------------------------- /docs/PDOCS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/PDOCS.ipynb -------------------------------------------------------------------------------- /docs/Perceiver-AR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/Perceiver-AR.html -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SyllablesSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/SyllablesSearch.html -------------------------------------------------------------------------------- /docs/TCUPY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/TCUPY.html -------------------------------------------------------------------------------- /docs/TMELODIES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/TMELODIES.html -------------------------------------------------------------------------------- /docs/TMIDI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/TMIDI.html -------------------------------------------------------------------------------- /docs/TMIDIX.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/TMIDIX.html -------------------------------------------------------------------------------- /docs/TORAH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/TORAH.html -------------------------------------------------------------------------------- /docs/TPLOTS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/TPLOTS.html -------------------------------------------------------------------------------- /docs/TinyMIDI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/TinyMIDI.html -------------------------------------------------------------------------------- /docs/b_classi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/b_classi.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/lwa_transformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/lwa_transformer.html -------------------------------------------------------------------------------- /docs/markovify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/markovify.html -------------------------------------------------------------------------------- /docs/midi_to_colab_audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/midi_to_colab_audio.html -------------------------------------------------------------------------------- /docs/minGPT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/minGPT.html -------------------------------------------------------------------------------- /docs/nanoGPT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/nanoGPT.html -------------------------------------------------------------------------------- /docs/seq2seq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/seq2seq.html -------------------------------------------------------------------------------- /docs/x_transformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/x_transformer.html -------------------------------------------------------------------------------- /docs/x_transformer_1_23_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/x_transformer_1_23_2.html -------------------------------------------------------------------------------- /docs/x_transformer_1_27_16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/docs/x_transformer_1_27_16.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/index.html -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/install/README.md -------------------------------------------------------------------------------- /install/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/install/requirements.txt -------------------------------------------------------------------------------- /install/requirements_cuda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/install/requirements_cuda.txt -------------------------------------------------------------------------------- /install/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/install/setup.py -------------------------------------------------------------------------------- /install/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/install/setup.sh -------------------------------------------------------------------------------- /install/setup_cuda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/install/setup_cuda.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm 2 | numpy 3 | matplotlib -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/setup.py -------------------------------------------------------------------------------- /tegridy-data/Basic-English-Karaoke-Statistics.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/Basic-English-Karaoke-Statistics.pickle -------------------------------------------------------------------------------- /tegridy-data/English-Words-Syllables.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/English-Words-Syllables.csv -------------------------------------------------------------------------------- /tegridy-data/English-Words-Syllables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/English-Words-Syllables.txt -------------------------------------------------------------------------------- /tegridy-data/Fuzzy-Chords-Dataset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/Fuzzy-Chords-Dataset.zip -------------------------------------------------------------------------------- /tegridy-data/General MIDI Patches Numbers by Families.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/General MIDI Patches Numbers by Families.pdf -------------------------------------------------------------------------------- /tegridy-data/General MIDI Patches Numbers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/General MIDI Patches Numbers.pdf -------------------------------------------------------------------------------- /tegridy-data/Gutteral-Syllables-List.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/Gutteral-Syllables-List.tsv -------------------------------------------------------------------------------- /tegridy-data/Instant_Classy_LAKH_MIDI_Signatures_Pack.pickle.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/Instant_Classy_LAKH_MIDI_Signatures_Pack.pickle.gz -------------------------------------------------------------------------------- /tegridy-data/LAKH-Melodies-Signatures.pickle.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/LAKH-Melodies-Signatures.pickle.gz -------------------------------------------------------------------------------- /tegridy-data/Los_Angeles_MIDI_dataset_most_common_filtered_pitches_chords.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/Los_Angeles_MIDI_dataset_most_common_filtered_pitches_chords.pickle -------------------------------------------------------------------------------- /tegridy-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/README.md -------------------------------------------------------------------------------- /tegridy-data/Torah.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/Torah.zip -------------------------------------------------------------------------------- /tegridy-data/all_piano_chords_counts.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/all_piano_chords_counts.pickle -------------------------------------------------------------------------------- /tegridy-data/clean_midi_matrixes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/clean_midi_matrixes.zip -------------------------------------------------------------------------------- /tegridy-data/most-common-words/20k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/most-common-words/20k.txt -------------------------------------------------------------------------------- /tegridy-data/most-common-words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/most-common-words/README.md -------------------------------------------------------------------------------- /tegridy-data/most-common-words/google-10000-english-no-swears.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/most-common-words/google-10000-english-no-swears.txt -------------------------------------------------------------------------------- /tegridy-data/most-common-words/google-10000-english-usa-no-swears-long.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/most-common-words/google-10000-english-usa-no-swears-long.txt -------------------------------------------------------------------------------- /tegridy-data/most-common-words/google-10000-english-usa-no-swears-medium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/most-common-words/google-10000-english-usa-no-swears-medium.txt -------------------------------------------------------------------------------- /tegridy-data/most-common-words/google-10000-english-usa-no-swears-short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/most-common-words/google-10000-english-usa-no-swears-short.txt -------------------------------------------------------------------------------- /tegridy-data/most-common-words/google-10000-english-usa-no-swears.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/most-common-words/google-10000-english-usa-no-swears.txt -------------------------------------------------------------------------------- /tegridy-data/most-common-words/google-10000-english-usa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/most-common-words/google-10000-english-usa.txt -------------------------------------------------------------------------------- /tegridy-data/most-common-words/google-10000-english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/most-common-words/google-10000-english.txt -------------------------------------------------------------------------------- /tegridy-data/pitches_patches_MIDI_velocities_map.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-data/pitches_patches_MIDI_velocities_map.pickle -------------------------------------------------------------------------------- /tegridy-raspberry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/README.md -------------------------------------------------------------------------------- /tegridy-raspberry/keras/Keras4Raspberry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/keras/Keras4Raspberry.sh -------------------------------------------------------------------------------- /tegridy-raspberry/keras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/keras/README.md -------------------------------------------------------------------------------- /tegridy-raspberry/numpy/Numpy4Raspberry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/numpy/Numpy4Raspberry.sh -------------------------------------------------------------------------------- /tegridy-raspberry/numpy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/numpy/README.md -------------------------------------------------------------------------------- /tegridy-raspberry/pyknon/MidiFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/pyknon/MidiFile.py -------------------------------------------------------------------------------- /tegridy-raspberry/pyknon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/pyknon/README.md -------------------------------------------------------------------------------- /tegridy-raspberry/pyknon/___init.py___: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tegridy-raspberry/pyknon/genmidi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/pyknon/genmidi.py -------------------------------------------------------------------------------- /tegridy-raspberry/pyknon/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/pyknon/music.py -------------------------------------------------------------------------------- /tegridy-raspberry/pyknon/notation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/pyknon/notation.py -------------------------------------------------------------------------------- /tegridy-raspberry/pyknon/pc_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/pyknon/pc_sets.py -------------------------------------------------------------------------------- /tegridy-raspberry/pyknon/pcset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/pyknon/pcset.py -------------------------------------------------------------------------------- /tegridy-raspberry/pyknon/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/pyknon/plot.py -------------------------------------------------------------------------------- /tegridy-raspberry/pyknon/simplemusic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/pyknon/simplemusic.py -------------------------------------------------------------------------------- /tegridy-raspberry/pytorch/PyTorch4Raspbery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/pytorch/PyTorch4Raspbery.sh -------------------------------------------------------------------------------- /tegridy-raspberry/pytorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/pytorch/README.md -------------------------------------------------------------------------------- /tegridy-raspberry/tensorflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/tensorflow/README.md -------------------------------------------------------------------------------- /tegridy-raspberry/tensorflow/Tensorflow4Raspberry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-raspberry/tensorflow/Tensorflow4Raspberry.sh -------------------------------------------------------------------------------- /tegridy-tools/AdvancedSyllablesSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/AdvancedSyllablesSearch.py -------------------------------------------------------------------------------- /tegridy-tools/B-Classi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/B-Classi/README.md -------------------------------------------------------------------------------- /tegridy-tools/B-Classi/b_classi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/B-Classi/b_classi.py -------------------------------------------------------------------------------- /tegridy-tools/ChordsMappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/ChordsMappings.py -------------------------------------------------------------------------------- /tegridy-tools/ClassyMIDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/ClassyMIDI.py -------------------------------------------------------------------------------- /tegridy-tools/GPT2RGA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/GPT2RGA.py -------------------------------------------------------------------------------- /tegridy-tools/GPT2RGAX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/GPT2RGAX.py -------------------------------------------------------------------------------- /tegridy-tools/HaystackSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/HaystackSearch.py -------------------------------------------------------------------------------- /tegridy-tools/Imagen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/Imagen/README.md -------------------------------------------------------------------------------- /tegridy-tools/Imagen/imagen-pytorch-main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/Imagen/imagen-pytorch-main.zip -------------------------------------------------------------------------------- /tegridy-tools/LWA-Transformer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/LWA-Transformer/README.md -------------------------------------------------------------------------------- /tegridy-tools/LWA-Transformer/lwa_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/LWA-Transformer/lwa_transformer.py -------------------------------------------------------------------------------- /tegridy-tools/MIDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/MIDI.py -------------------------------------------------------------------------------- /tegridy-tools/MIDI_Synthesizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/MIDI_Synthesizer.py -------------------------------------------------------------------------------- /tegridy-tools/NumbaHaystackSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/NumbaHaystackSearch.py -------------------------------------------------------------------------------- /tegridy-tools/Perceiver-AR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/Perceiver-AR/README.md -------------------------------------------------------------------------------- /tegridy-tools/Perceiver-AR/autoregressive_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/Perceiver-AR/autoregressive_wrapper.py -------------------------------------------------------------------------------- /tegridy-tools/Perceiver-AR/perceiver_ar_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/Perceiver-AR/perceiver_ar_pytorch.py -------------------------------------------------------------------------------- /tegridy-tools/Perceiver-AR/perceiver_ar_pytorch_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/Perceiver-AR/perceiver_ar_pytorch_full.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/Chord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/Chord.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/ChordName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/ChordName.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/ChordRecognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/ChordRecognizer.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/Exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/Exceptions.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/HelperFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/HelperFunctions.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/Interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/Interval.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/IntervalName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/IntervalName.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/IntervalRecognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/IntervalRecognizer.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/KnowledgeBasedRecognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/KnowledgeBasedRecognizer.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/README.md: -------------------------------------------------------------------------------- 1 | PyChoReLib 2 | 3 | http://chordrecognizer.sourceforge.net/ 4 | -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/Readme.midiinputdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/Readme.midiinputdemo -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/Scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/Scale.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/ScaleName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/ScaleName.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/ScaleRecognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/ScaleRecognizer.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/author.txt -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/changelog.txt -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/gpl.txt -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/midiinputdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/midiinputdemo.py -------------------------------------------------------------------------------- /tegridy-tools/PyChoReLib/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/PyChoReLib/test.py -------------------------------------------------------------------------------- /tegridy-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/README.md -------------------------------------------------------------------------------- /tegridy-tools/SyllablesSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/SyllablesSearch.py -------------------------------------------------------------------------------- /tegridy-tools/TCUPY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/TCUPY.py -------------------------------------------------------------------------------- /tegridy-tools/TMELODIES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/TMELODIES.py -------------------------------------------------------------------------------- /tegridy-tools/TMIDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/TMIDI.py -------------------------------------------------------------------------------- /tegridy-tools/TMIDIX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/TMIDIX.py -------------------------------------------------------------------------------- /tegridy-tools/TORAH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/TORAH.py -------------------------------------------------------------------------------- /tegridy-tools/TPLOTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/TPLOTS.py -------------------------------------------------------------------------------- /tegridy-tools/TinyMIDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/TinyMIDI.py -------------------------------------------------------------------------------- /tegridy-tools/X-Transformer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/X-Transformer/README.md -------------------------------------------------------------------------------- /tegridy-tools/X-Transformer/x_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/X-Transformer/x_transformer.py -------------------------------------------------------------------------------- /tegridy-tools/X-Transformer/x_transformer_1_23_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/X-Transformer/x_transformer_1_23_2.py -------------------------------------------------------------------------------- /tegridy-tools/X-Transformer/x_transformer_1_27_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/X-Transformer/x_transformer_1_27_16.py -------------------------------------------------------------------------------- /tegridy-tools/X-Transformer/x_transformer_1_43_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/X-Transformer/x_transformer_1_43_0.py -------------------------------------------------------------------------------- /tegridy-tools/X-Transformer/x_transformer_2_3_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/X-Transformer/x_transformer_2_3_1.py -------------------------------------------------------------------------------- /tegridy-tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/__init__.py -------------------------------------------------------------------------------- /tegridy-tools/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/__version__.py -------------------------------------------------------------------------------- /tegridy-tools/chorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/chorder/README.md -------------------------------------------------------------------------------- /tegridy-tools/chorder/chorder-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/chorder/chorder-master.zip -------------------------------------------------------------------------------- /tegridy-tools/chords2midi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/chords2midi/README.md -------------------------------------------------------------------------------- /tegridy-tools/chords2midi/chords2midi-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/chords2midi/chords2midi-master.zip -------------------------------------------------------------------------------- /tegridy-tools/chords2midi/free-midi-chords-main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/chords2midi/free-midi-chords-main.zip -------------------------------------------------------------------------------- /tegridy-tools/chords_progresions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/chords_progresions/README.md -------------------------------------------------------------------------------- /tegridy-tools/chords_progresions/pitches_chords_progressions_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/chords_progresions/pitches_chords_progressions_generator.py -------------------------------------------------------------------------------- /tegridy-tools/directory_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/directory_tree/README.md -------------------------------------------------------------------------------- /tegridy-tools/directory_tree/directory_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/directory_tree/directory_tree.py -------------------------------------------------------------------------------- /tegridy-tools/dtaidistance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/dtaidistance/README.md -------------------------------------------------------------------------------- /tegridy-tools/dtaidistance/dtaidistance-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/dtaidistance/dtaidistance-master.zip -------------------------------------------------------------------------------- /tegridy-tools/einops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/einops/README.md -------------------------------------------------------------------------------- /tegridy-tools/einops/einops-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/einops/einops-master.zip -------------------------------------------------------------------------------- /tegridy-tools/fairseq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/fairseq/README.md -------------------------------------------------------------------------------- /tegridy-tools/fairseq/fairseq-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/fairseq/fairseq-master.zip -------------------------------------------------------------------------------- /tegridy-tools/fuzzywuzzy/README.md: -------------------------------------------------------------------------------- 1 | src code as of 03-25-2021 2 | -------------------------------------------------------------------------------- /tegridy-tools/fuzzywuzzy/fuzzywuzzy-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/fuzzywuzzy/fuzzywuzzy-master.zip -------------------------------------------------------------------------------- /tegridy-tools/markovify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/markovify.py -------------------------------------------------------------------------------- /tegridy-tools/markovify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/markovify/README.md -------------------------------------------------------------------------------- /tegridy-tools/markovify/markovify-0.8.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/markovify/markovify-0.8.3.zip -------------------------------------------------------------------------------- /tegridy-tools/markovify/markovify-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/markovify/markovify-master.zip -------------------------------------------------------------------------------- /tegridy-tools/markovify/markovify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/markovify/markovify.py -------------------------------------------------------------------------------- /tegridy-tools/melody_checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/melody_checker/README.md -------------------------------------------------------------------------------- /tegridy-tools/melody_checker/melody_checker.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/melody_checker/melody_checker.joblib -------------------------------------------------------------------------------- /tegridy-tools/melody_checker/melody_checker.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/melody_checker/melody_checker.log -------------------------------------------------------------------------------- /tegridy-tools/melody_checker/melody_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/melody_checker/melody_checker.py -------------------------------------------------------------------------------- /tegridy-tools/melody_checker/melody_checker_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/melody_checker/melody_checker_train.py -------------------------------------------------------------------------------- /tegridy-tools/midi_loops_extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/midi_loops_extractor/README.md -------------------------------------------------------------------------------- /tegridy-tools/midi_loops_extractor/corr_mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/midi_loops_extractor/corr_mat.py -------------------------------------------------------------------------------- /tegridy-tools/midi_loops_extractor/corr_mat_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/midi_loops_extractor/corr_mat_fast.py -------------------------------------------------------------------------------- /tegridy-tools/midi_loops_extractor/nomml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/midi_loops_extractor/nomml.py -------------------------------------------------------------------------------- /tegridy-tools/midi_loops_extractor/note_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/midi_loops_extractor/note_set.py -------------------------------------------------------------------------------- /tegridy-tools/midi_loops_extractor/note_set_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/midi_loops_extractor/note_set_fast.py -------------------------------------------------------------------------------- /tegridy-tools/midi_loops_extractor/process_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/midi_loops_extractor/process_file.py -------------------------------------------------------------------------------- /tegridy-tools/midi_loops_extractor/process_file_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/midi_loops_extractor/process_file_fast.py -------------------------------------------------------------------------------- /tegridy-tools/midi_to_colab_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/midi_to_colab_audio.py -------------------------------------------------------------------------------- /tegridy-tools/mididoctor/MIDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/mididoctor/MIDI.py -------------------------------------------------------------------------------- /tegridy-tools/mididoctor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/mididoctor/README.md -------------------------------------------------------------------------------- /tegridy-tools/mididoctor/mididoctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/mididoctor/mididoctor.py -------------------------------------------------------------------------------- /tegridy-tools/miditoolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/miditoolkit/README.md -------------------------------------------------------------------------------- /tegridy-tools/miditoolkit/miditoolkit-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/miditoolkit/miditoolkit-master.zip -------------------------------------------------------------------------------- /tegridy-tools/mido/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/mido/README.md -------------------------------------------------------------------------------- /tegridy-tools/mido/mido-1.2.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/mido/mido-1.2.9.zip -------------------------------------------------------------------------------- /tegridy-tools/mido/mido-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/mido/mido-master.zip -------------------------------------------------------------------------------- /tegridy-tools/minGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/minGPT.py -------------------------------------------------------------------------------- /tegridy-tools/minGPT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/minGPT/README.md -------------------------------------------------------------------------------- /tegridy-tools/minGPT/minGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/minGPT/minGPT.py -------------------------------------------------------------------------------- /tegridy-tools/musicpy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicpy/README.md -------------------------------------------------------------------------------- /tegridy-tools/musicpy/musicpy-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicpy/musicpy-master.zip -------------------------------------------------------------------------------- /tegridy-tools/musicpy/musicpy_pop_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicpy/musicpy_pop_generator.py -------------------------------------------------------------------------------- /tegridy-tools/musictheory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musictheory/README.md -------------------------------------------------------------------------------- /tegridy-tools/musictheory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musictheory/__init__.py -------------------------------------------------------------------------------- /tegridy-tools/musictheory/chordgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musictheory/chordgenerator.py -------------------------------------------------------------------------------- /tegridy-tools/musictheory/chords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musictheory/chords.py -------------------------------------------------------------------------------- /tegridy-tools/musictheory/musutility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musictheory/musutility.py -------------------------------------------------------------------------------- /tegridy-tools/musictheory/scales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musictheory/scales.py -------------------------------------------------------------------------------- /tegridy-tools/musictheory/temperament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musictheory/temperament.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/README.md -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/__init__.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/chord_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/chord_symbol.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/constants.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/direction.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/direction_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/direction_constants.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/example.xml -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/exception.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/key_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/key_signature.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/main.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/measure.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/notations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/notations.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/note.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/note_duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/note_duration.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/note_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/note_dynamic.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/part.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/playable_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/playable_notes.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/score_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/score_part.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/tempo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/tempo.py -------------------------------------------------------------------------------- /tegridy-tools/musicxml_parser/time_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/musicxml_parser/time_signature.py -------------------------------------------------------------------------------- /tegridy-tools/nanoGPT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/nanoGPT/README.md -------------------------------------------------------------------------------- /tegridy-tools/nanoGPT/nanoGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/nanoGPT/nanoGPT.py -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Advanced_MIDI_Channel_Splitter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Advanced_MIDI_Channel_Splitter.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Advanced_MIDI_Silence_Removal_Tool.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Advanced_MIDI_Silence_Removal_Tool.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/AffirMIDI_Piano.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/AffirMIDI_Piano.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Algorithmic_Accompaniment_Generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Algorithmic_Accompaniment_Generator.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/B_CLassi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/B_CLassi.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Bulk_MIDI_Squasher.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Bulk_MIDI_Squasher.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Bulk_MIDI_Velocity_Simulator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Bulk_MIDI_Velocity_Simulator.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/ByteDance_Piano_Transcription.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/ByteDance_Piano_Transcription.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Difflib_Itertools_Playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Difflib_Itertools_Playground.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Fuzzy_Melody_Generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Fuzzy_Melody_Generator.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Fuzzy_Songs_Generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Fuzzy_Songs_Generator.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/GPT2_Models_Downloader.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/GPT2_Models_Downloader.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/GitHub_folder_README_generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/GitHub_folder_README_generator.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Instant_Classy_MIDI_Classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Instant_Classy_MIDI_Classifier.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/MIDI_Chords_Progressions_Generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/MIDI_Chords_Progressions_Generator.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/MIDI_Flipper_Folder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/MIDI_Flipper_Folder.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/MIDI_MIR_Statistics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/MIDI_MIR_Statistics.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/MIDI_Octave_Splitter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/MIDI_Octave_Splitter.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/MIDI_PR_MIDI_Converter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/MIDI_PR_MIDI_Converter.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/MIDI_Phraser.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/MIDI_Phraser.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/MIDI_Piano_Beats_Generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/MIDI_Piano_Beats_Generator.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/MIDI_RPR_MIDI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/MIDI_RPR_MIDI.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/MIDI_Search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/MIDI_Search.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/MIDIs_to_Images_Converter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/MIDIs_to_Images_Converter.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Magenta_note_seq_chords_labeler.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Magenta_note_seq_chords_labeler.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Master_MIDI_Dataset_Search_and_Filter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Master_MIDI_Dataset_Search_and_Filter.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Melody_Master.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Melody_Master.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Multi_Instrumental_Medley_Maker.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Multi_Instrumental_Medley_Maker.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/MusicXML_to_MIDI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/MusicXML_to_MIDI.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Music_Equations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Music_Equations.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/POP909_Dataset_Converter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/POP909_Dataset_Converter.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Piano_Medley_Maker.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Piano_Medley_Maker.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Piano_Phraser.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Piano_Phraser.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/README.md -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Simple_MIDI_Chorder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Simple_MIDI_Chorder.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Simple_MIDI_Reducer_Parser.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Simple_MIDI_Reducer_Parser.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Songs_Names_Generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Songs_Names_Generator.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Syllabic_Lyrics_Generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Syllabic_Lyrics_Generator.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/Torah_Analyzer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/Torah_Analyzer.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/WORLD_MIDIs_Explorer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/WORLD_MIDIs_Explorer.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/clean_midi_Matrixes_Search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/clean_midi_Matrixes_Search.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/other-misc-notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/other-misc-notebooks/README.md -------------------------------------------------------------------------------- /tegridy-tools/notebooks/other-misc-notebooks/Spotify API Music Scrape.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/other-misc-notebooks/Spotify API Music Scrape.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/other-misc-notebooks/dataset_reading.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/other-misc-notebooks/dataset_reading.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/other-misc-notebooks/harmonization_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/other-misc-notebooks/harmonization_example.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/other-misc-notebooks/midi-music-data-extraction-using-music21.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/other-misc-notebooks/midi-music-data-extraction-using-music21.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/other-misc-notebooks/parse_and_encode_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/other-misc-notebooks/parse_and_encode_data.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/other-misc-notebooks/prepare.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/other-misc-notebooks/prepare.ipynb -------------------------------------------------------------------------------- /tegridy-tools/notebooks/zlib_pydub_audio_tokenizer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/notebooks/zlib_pydub_audio_tokenizer.ipynb -------------------------------------------------------------------------------- /tegridy-tools/noteseq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/README.md -------------------------------------------------------------------------------- /tegridy-tools/noteseq/Requirements.txt: -------------------------------------------------------------------------------- 1 | mido 2 | protobuf 3 | absl-py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/chord_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/chord_inference.py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/chord_symbols_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/chord_symbols_lib.py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/chords_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/chords_lib.py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/constants.py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/events_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/events_lib.py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/melodies_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/melodies_lib.py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/melody_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/melody_inference.py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/midi_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/midi_io.py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/midi_synth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/midi_synth.py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/music_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/music_pb2.py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/notebook_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/notebook_utils.py -------------------------------------------------------------------------------- /tegridy-tools/noteseq/sequences_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/noteseq/sequences_lib.py -------------------------------------------------------------------------------- /tegridy-tools/pretty_midi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/pretty_midi/README.md -------------------------------------------------------------------------------- /tegridy-tools/pretty_midi/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/pretty_midi/containers.py -------------------------------------------------------------------------------- /tegridy-tools/pretty_midi/instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/pretty_midi/instrument.py -------------------------------------------------------------------------------- /tegridy-tools/pretty_midi/pm_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/pretty_midi/pm_constants.py -------------------------------------------------------------------------------- /tegridy-tools/pretty_midi/pretty_midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/pretty_midi/pretty_midi.py -------------------------------------------------------------------------------- /tegridy-tools/pretty_midi/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/pretty_midi/utilities.py -------------------------------------------------------------------------------- /tegridy-tools/pychord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/pychord/README.md -------------------------------------------------------------------------------- /tegridy-tools/pychord/pychord-main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/pychord/pychord-main.zip -------------------------------------------------------------------------------- /tegridy-tools/pypianoroll/README.md: -------------------------------------------------------------------------------- 1 | 2 | # pypianoroll as of 03/24/2021 3 | -------------------------------------------------------------------------------- /tegridy-tools/pypianoroll/pypianoroll-main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/pypianoroll/pypianoroll-main.zip -------------------------------------------------------------------------------- /tegridy-tools/python-midi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/python-midi/README.md -------------------------------------------------------------------------------- /tegridy-tools/python-midi/python-midi-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/python-midi/python-midi-master.zip -------------------------------------------------------------------------------- /tegridy-tools/seed-lyrics.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/seed-lyrics.mid -------------------------------------------------------------------------------- /tegridy-tools/seed-lyrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/seed-lyrics.txt -------------------------------------------------------------------------------- /tegridy-tools/seed-melody-harmonized.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/seed-melody-harmonized.mid -------------------------------------------------------------------------------- /tegridy-tools/seed-melody.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/seed-melody.mid -------------------------------------------------------------------------------- /tegridy-tools/seed-melody.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/seed-melody.wav -------------------------------------------------------------------------------- /tegridy-tools/seed.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/seed.mid -------------------------------------------------------------------------------- /tegridy-tools/seed2.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/seed2.mid -------------------------------------------------------------------------------- /tegridy-tools/seed3.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/seed3.mid -------------------------------------------------------------------------------- /tegridy-tools/sentencepiece/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/sentencepiece/README.md -------------------------------------------------------------------------------- /tegridy-tools/sentencepiece/sentencepiece-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/sentencepiece/sentencepiece-master.zip -------------------------------------------------------------------------------- /tegridy-tools/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/seq2seq.py -------------------------------------------------------------------------------- /tegridy-tools/symspellpy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/symspellpy/README.md -------------------------------------------------------------------------------- /tegridy-tools/symspellpy/symspellpy-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/symspellpy/symspellpy-master.zip -------------------------------------------------------------------------------- /tegridy-tools/wordninja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/wordninja/README.md -------------------------------------------------------------------------------- /tegridy-tools/wordninja/wordninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/wordninja/wordninja.py -------------------------------------------------------------------------------- /tegridy-tools/wordninja/wordninja_words.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asigalov61/tegridy-tools/HEAD/tegridy-tools/wordninja/wordninja_words.txt.gz --------------------------------------------------------------------------------