├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ └── module-request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── Procfile ├── README.md ├── api.py ├── bricks-test-data-project.zip ├── classifiers ├── README.md ├── __init__.py ├── _template │ └── _template_func │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ └── config.py ├── active_learner │ ├── bayesian_optimization │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ ├── config.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── atl.py │ │ │ └── util.py │ ├── decision_tree │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── grid_search │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── logistic_regression │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── random_forest │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── random_search │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── communication_style │ └── communication_style_classifier │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── dates_and_times │ └── workday_classifier │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── llm │ ├── bert_sentiment_german │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── deberta_review_classifier │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── distilbert_stock_news_classifier │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── gpt_classifier │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── lookup_lists │ └── lookup_list │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── question_type │ └── question_type_classifier │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── reference_complexity │ ├── chunked_sentence_complexity │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── maximum_sentence_complexity │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── tiktoken_length_classifier │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── reference_quality │ ├── special_character_classifier │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── word_count_classifier │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── reference_relevance │ └── gpt_cross_encoder │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── sentiment │ ├── README.md │ ├── textblob_sentiment │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── vader_sentiment_classifier │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── similarity │ └── cosine_similarity │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── spelling │ └── spelling_check │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backkup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── text_analysis │ ├── emotionality_detection │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── language_detection │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── profanity_detection │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── sentence_complexity │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── textblob_subjectivity │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py └── zero_shot │ └── README.md ├── cms.py ├── extractors ├── README.md ├── __init__.py ├── _template │ └── _template_func │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ └── config.py ├── active_learner │ └── crf_tagger │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── codes │ ├── color_code_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── stock_ticker_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ ├── config.py │ │ └── tickers.txt ├── dates_and_times │ ├── date_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── time_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── functions │ ├── aspect_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── gazetteer_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── regex_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── window_search_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── llm │ ├── bert_ner_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── deberta_ner_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── gpt_information_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── media │ └── work_of_art_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── metrics │ └── metric_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── numbers │ ├── bic_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── credit_card_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── digit_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── iban_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── ip_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── isbn_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── percentage_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── phone_number_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── price_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── paths │ ├── filepath_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── url_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── personal_identifiers │ ├── address_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── email_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── location_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── person_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── zipcode_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ ├── config.py │ │ └── zip_codes.json ├── symbols │ └── hashtag_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── util │ ├── __init__.py │ └── spacy.py ├── words │ ├── difficult_words_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── goodbye_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── keyword_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── noun_match_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── org_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── part_of_speech_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── quote_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── smalltalk_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── substring_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── synonym_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── verb_phrase_extraction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py └── zero_shot │ └── README.md ├── generators ├── README.md ├── __init__.py ├── _template │ └── _template_func │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ └── config.py ├── distance │ ├── euclidean_distance │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── hamming_distance │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── levenshtein_distance │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── manhattan_distance │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── lemmatizer │ └── spacy_lemmatizer │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── llm │ ├── bert_toxicity_detector │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── gpt_grammar_correction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── gpt_tldr_summarization │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── ngram │ └── nltk_ngram_generator │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── paths │ ├── domain_parser │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── url_keyword_parser │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── reference_chunking │ ├── newline_splitter │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── noun_splitter │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── search │ ├── bing_news_search │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── bing_search │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── google_search │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── nyt_news_search │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── sentiment │ └── vader_sentiment_scores │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── speech_to_text │ └── azure_speech_to_text │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── spelling │ ├── bing_spelling_correction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── textblob_spelling_correction │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── summarization │ ├── smalltalk_truncation │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── sumy_website_summarizer │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── text_summarization │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── text_analytics │ ├── most_frequent_words │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── phonetic_soundex │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── reading_time │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── syllable_count │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── tiktoken_token_counter │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── text_cleaning │ ├── html_cleanser │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── html_unescape │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ ├── config.py │ │ └── config_backup.py ├── translation │ ├── deepl_translator │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── ibm_translator │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ ├── language_translator │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py │ └── microsoft_translator │ │ ├── README.md │ │ ├── __init__.py │ │ ├── code_snippet_backup.md │ │ ├── code_snippet_common.md │ │ ├── code_snippet_refinery.md │ │ └── config.py ├── util │ └── spacy.py └── zero_shot │ └── README.md ├── gunicorn.config.py ├── images ├── fastapi_testing_01.png ├── fastapi_testing_02.png ├── hero.svg ├── identifier.svg └── thumbnail-bricks.png ├── nltk.txt ├── requirements.txt ├── runtime.txt └── util ├── __init__.py ├── configs.py ├── enums.py ├── exceptions.py └── paths.py /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/module-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/.github/ISSUE_TEMPLATE/module-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/api.py -------------------------------------------------------------------------------- /bricks-test-data-project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/bricks-test-data-project.zip -------------------------------------------------------------------------------- /classifiers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/README.md -------------------------------------------------------------------------------- /classifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/__init__.py -------------------------------------------------------------------------------- /classifiers/_template/_template_func/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/_template/_template_func/README.md -------------------------------------------------------------------------------- /classifiers/_template/_template_func/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classifiers/_template/_template_func/code_snippet_common.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classifiers/_template/_template_func/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/_template/_template_func/config.py -------------------------------------------------------------------------------- /classifiers/active_learner/bayesian_optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/bayesian_optimization/README.md -------------------------------------------------------------------------------- /classifiers/active_learner/bayesian_optimization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/bayesian_optimization/__init__.py -------------------------------------------------------------------------------- /classifiers/active_learner/bayesian_optimization/code_snippet_common.md: -------------------------------------------------------------------------------- 1 | ```python 2 | "Coming soon!" 3 | ``` -------------------------------------------------------------------------------- /classifiers/active_learner/bayesian_optimization/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/bayesian_optimization/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/active_learner/bayesian_optimization/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/bayesian_optimization/config.py -------------------------------------------------------------------------------- /classifiers/active_learner/bayesian_optimization/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classifiers/active_learner/bayesian_optimization/util/atl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/bayesian_optimization/util/atl.py -------------------------------------------------------------------------------- /classifiers/active_learner/bayesian_optimization/util/util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classifiers/active_learner/decision_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/decision_tree/README.md -------------------------------------------------------------------------------- /classifiers/active_learner/decision_tree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/decision_tree/__init__.py -------------------------------------------------------------------------------- /classifiers/active_learner/decision_tree/code_snippet_common.md: -------------------------------------------------------------------------------- 1 | ```python 2 | "Coming soon!" 3 | ``` -------------------------------------------------------------------------------- /classifiers/active_learner/decision_tree/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/decision_tree/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/active_learner/decision_tree/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/decision_tree/config.py -------------------------------------------------------------------------------- /classifiers/active_learner/grid_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/grid_search/README.md -------------------------------------------------------------------------------- /classifiers/active_learner/grid_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/grid_search/__init__.py -------------------------------------------------------------------------------- /classifiers/active_learner/grid_search/code_snippet_common.md: -------------------------------------------------------------------------------- 1 | ```python 2 | "Coming soon!" 3 | ``` -------------------------------------------------------------------------------- /classifiers/active_learner/grid_search/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/grid_search/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/active_learner/grid_search/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/grid_search/config.py -------------------------------------------------------------------------------- /classifiers/active_learner/logistic_regression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/logistic_regression/README.md -------------------------------------------------------------------------------- /classifiers/active_learner/logistic_regression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/logistic_regression/__init__.py -------------------------------------------------------------------------------- /classifiers/active_learner/logistic_regression/code_snippet_common.md: -------------------------------------------------------------------------------- 1 | ```python 2 | "Coming soon!" 3 | ``` -------------------------------------------------------------------------------- /classifiers/active_learner/logistic_regression/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/logistic_regression/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/active_learner/logistic_regression/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/logistic_regression/config.py -------------------------------------------------------------------------------- /classifiers/active_learner/random_forest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/random_forest/README.md -------------------------------------------------------------------------------- /classifiers/active_learner/random_forest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/random_forest/__init__.py -------------------------------------------------------------------------------- /classifiers/active_learner/random_forest/code_snippet_common.md: -------------------------------------------------------------------------------- 1 | ```python 2 | "Coming soon!" 3 | ``` -------------------------------------------------------------------------------- /classifiers/active_learner/random_forest/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/random_forest/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/active_learner/random_forest/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/random_forest/config.py -------------------------------------------------------------------------------- /classifiers/active_learner/random_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/random_search/README.md -------------------------------------------------------------------------------- /classifiers/active_learner/random_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/random_search/__init__.py -------------------------------------------------------------------------------- /classifiers/active_learner/random_search/code_snippet_common.md: -------------------------------------------------------------------------------- 1 | ```python 2 | "Coming soon!" 3 | ``` -------------------------------------------------------------------------------- /classifiers/active_learner/random_search/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/random_search/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/active_learner/random_search/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/active_learner/random_search/config.py -------------------------------------------------------------------------------- /classifiers/communication_style/communication_style_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/communication_style/communication_style_classifier/README.md -------------------------------------------------------------------------------- /classifiers/communication_style/communication_style_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/communication_style/communication_style_classifier/__init__.py -------------------------------------------------------------------------------- /classifiers/communication_style/communication_style_classifier/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/communication_style/communication_style_classifier/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/communication_style/communication_style_classifier/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/communication_style/communication_style_classifier/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/communication_style/communication_style_classifier/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/communication_style/communication_style_classifier/config.py -------------------------------------------------------------------------------- /classifiers/dates_and_times/workday_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/dates_and_times/workday_classifier/README.md -------------------------------------------------------------------------------- /classifiers/dates_and_times/workday_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/dates_and_times/workday_classifier/__init__.py -------------------------------------------------------------------------------- /classifiers/dates_and_times/workday_classifier/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/dates_and_times/workday_classifier/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/dates_and_times/workday_classifier/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/dates_and_times/workday_classifier/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/dates_and_times/workday_classifier/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/dates_and_times/workday_classifier/config.py -------------------------------------------------------------------------------- /classifiers/llm/bert_sentiment_german/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/bert_sentiment_german/README.md -------------------------------------------------------------------------------- /classifiers/llm/bert_sentiment_german/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/bert_sentiment_german/__init__.py -------------------------------------------------------------------------------- /classifiers/llm/bert_sentiment_german/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/bert_sentiment_german/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/llm/bert_sentiment_german/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/bert_sentiment_german/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/llm/bert_sentiment_german/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/bert_sentiment_german/config.py -------------------------------------------------------------------------------- /classifiers/llm/deberta_review_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/deberta_review_classifier/README.md -------------------------------------------------------------------------------- /classifiers/llm/deberta_review_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/deberta_review_classifier/__init__.py -------------------------------------------------------------------------------- /classifiers/llm/deberta_review_classifier/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/deberta_review_classifier/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/llm/deberta_review_classifier/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/deberta_review_classifier/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/llm/deberta_review_classifier/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/deberta_review_classifier/config.py -------------------------------------------------------------------------------- /classifiers/llm/distilbert_stock_news_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/distilbert_stock_news_classifier/README.md -------------------------------------------------------------------------------- /classifiers/llm/distilbert_stock_news_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/distilbert_stock_news_classifier/__init__.py -------------------------------------------------------------------------------- /classifiers/llm/distilbert_stock_news_classifier/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/distilbert_stock_news_classifier/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/llm/distilbert_stock_news_classifier/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/distilbert_stock_news_classifier/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/llm/distilbert_stock_news_classifier/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/distilbert_stock_news_classifier/config.py -------------------------------------------------------------------------------- /classifiers/llm/gpt_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/gpt_classifier/README.md -------------------------------------------------------------------------------- /classifiers/llm/gpt_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/gpt_classifier/__init__.py -------------------------------------------------------------------------------- /classifiers/llm/gpt_classifier/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/gpt_classifier/code_snippet_backup.md -------------------------------------------------------------------------------- /classifiers/llm/gpt_classifier/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/gpt_classifier/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/llm/gpt_classifier/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/gpt_classifier/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/llm/gpt_classifier/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/llm/gpt_classifier/config.py -------------------------------------------------------------------------------- /classifiers/lookup_lists/lookup_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/lookup_lists/lookup_list/README.md -------------------------------------------------------------------------------- /classifiers/lookup_lists/lookup_list/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/lookup_lists/lookup_list/__init__.py -------------------------------------------------------------------------------- /classifiers/lookup_lists/lookup_list/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/lookup_lists/lookup_list/code_snippet_backup.md -------------------------------------------------------------------------------- /classifiers/lookup_lists/lookup_list/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/lookup_lists/lookup_list/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/lookup_lists/lookup_list/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/lookup_lists/lookup_list/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/lookup_lists/lookup_list/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/lookup_lists/lookup_list/config.py -------------------------------------------------------------------------------- /classifiers/question_type/question_type_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/question_type/question_type_classifier/README.md -------------------------------------------------------------------------------- /classifiers/question_type/question_type_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/question_type/question_type_classifier/__init__.py -------------------------------------------------------------------------------- /classifiers/question_type/question_type_classifier/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/question_type/question_type_classifier/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/question_type/question_type_classifier/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/question_type/question_type_classifier/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/question_type/question_type_classifier/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/question_type/question_type_classifier/config.py -------------------------------------------------------------------------------- /classifiers/reference_complexity/chunked_sentence_complexity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/chunked_sentence_complexity/README.md -------------------------------------------------------------------------------- /classifiers/reference_complexity/chunked_sentence_complexity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/chunked_sentence_complexity/__init__.py -------------------------------------------------------------------------------- /classifiers/reference_complexity/chunked_sentence_complexity/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/chunked_sentence_complexity/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/reference_complexity/chunked_sentence_complexity/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/chunked_sentence_complexity/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/reference_complexity/chunked_sentence_complexity/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/chunked_sentence_complexity/config.py -------------------------------------------------------------------------------- /classifiers/reference_complexity/maximum_sentence_complexity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/maximum_sentence_complexity/README.md -------------------------------------------------------------------------------- /classifiers/reference_complexity/maximum_sentence_complexity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/maximum_sentence_complexity/__init__.py -------------------------------------------------------------------------------- /classifiers/reference_complexity/maximum_sentence_complexity/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/maximum_sentence_complexity/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/reference_complexity/maximum_sentence_complexity/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/maximum_sentence_complexity/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/reference_complexity/maximum_sentence_complexity/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/maximum_sentence_complexity/config.py -------------------------------------------------------------------------------- /classifiers/reference_complexity/tiktoken_length_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/tiktoken_length_classifier/README.md -------------------------------------------------------------------------------- /classifiers/reference_complexity/tiktoken_length_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/tiktoken_length_classifier/__init__.py -------------------------------------------------------------------------------- /classifiers/reference_complexity/tiktoken_length_classifier/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/tiktoken_length_classifier/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/reference_complexity/tiktoken_length_classifier/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/tiktoken_length_classifier/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/reference_complexity/tiktoken_length_classifier/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_complexity/tiktoken_length_classifier/config.py -------------------------------------------------------------------------------- /classifiers/reference_quality/special_character_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_quality/special_character_classifier/README.md -------------------------------------------------------------------------------- /classifiers/reference_quality/special_character_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_quality/special_character_classifier/__init__.py -------------------------------------------------------------------------------- /classifiers/reference_quality/special_character_classifier/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_quality/special_character_classifier/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/reference_quality/special_character_classifier/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_quality/special_character_classifier/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/reference_quality/special_character_classifier/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_quality/special_character_classifier/config.py -------------------------------------------------------------------------------- /classifiers/reference_quality/word_count_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_quality/word_count_classifier/README.md -------------------------------------------------------------------------------- /classifiers/reference_quality/word_count_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_quality/word_count_classifier/__init__.py -------------------------------------------------------------------------------- /classifiers/reference_quality/word_count_classifier/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_quality/word_count_classifier/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/reference_quality/word_count_classifier/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_quality/word_count_classifier/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/reference_quality/word_count_classifier/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_quality/word_count_classifier/config.py -------------------------------------------------------------------------------- /classifiers/reference_relevance/gpt_cross_encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_relevance/gpt_cross_encoder/README.md -------------------------------------------------------------------------------- /classifiers/reference_relevance/gpt_cross_encoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_relevance/gpt_cross_encoder/__init__.py -------------------------------------------------------------------------------- /classifiers/reference_relevance/gpt_cross_encoder/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_relevance/gpt_cross_encoder/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/reference_relevance/gpt_cross_encoder/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_relevance/gpt_cross_encoder/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/reference_relevance/gpt_cross_encoder/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/reference_relevance/gpt_cross_encoder/config.py -------------------------------------------------------------------------------- /classifiers/sentiment/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classifiers/sentiment/textblob_sentiment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/textblob_sentiment/README.md -------------------------------------------------------------------------------- /classifiers/sentiment/textblob_sentiment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/textblob_sentiment/__init__.py -------------------------------------------------------------------------------- /classifiers/sentiment/textblob_sentiment/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/textblob_sentiment/code_snippet_backup.md -------------------------------------------------------------------------------- /classifiers/sentiment/textblob_sentiment/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/textblob_sentiment/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/sentiment/textblob_sentiment/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/textblob_sentiment/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/sentiment/textblob_sentiment/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/textblob_sentiment/config.py -------------------------------------------------------------------------------- /classifiers/sentiment/vader_sentiment_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/vader_sentiment_classifier/README.md -------------------------------------------------------------------------------- /classifiers/sentiment/vader_sentiment_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/vader_sentiment_classifier/__init__.py -------------------------------------------------------------------------------- /classifiers/sentiment/vader_sentiment_classifier/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/vader_sentiment_classifier/code_snippet_backup.md -------------------------------------------------------------------------------- /classifiers/sentiment/vader_sentiment_classifier/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/vader_sentiment_classifier/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/sentiment/vader_sentiment_classifier/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/vader_sentiment_classifier/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/sentiment/vader_sentiment_classifier/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/sentiment/vader_sentiment_classifier/config.py -------------------------------------------------------------------------------- /classifiers/similarity/cosine_similarity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/similarity/cosine_similarity/README.md -------------------------------------------------------------------------------- /classifiers/similarity/cosine_similarity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/similarity/cosine_similarity/__init__.py -------------------------------------------------------------------------------- /classifiers/similarity/cosine_similarity/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/similarity/cosine_similarity/code_snippet_backup.md -------------------------------------------------------------------------------- /classifiers/similarity/cosine_similarity/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/similarity/cosine_similarity/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/similarity/cosine_similarity/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/similarity/cosine_similarity/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/similarity/cosine_similarity/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/similarity/cosine_similarity/config.py -------------------------------------------------------------------------------- /classifiers/spelling/spelling_check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/spelling/spelling_check/README.md -------------------------------------------------------------------------------- /classifiers/spelling/spelling_check/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/spelling/spelling_check/__init__.py -------------------------------------------------------------------------------- /classifiers/spelling/spelling_check/code_snippet_backkup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/spelling/spelling_check/code_snippet_backkup.md -------------------------------------------------------------------------------- /classifiers/spelling/spelling_check/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/spelling/spelling_check/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/spelling/spelling_check/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/spelling/spelling_check/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/spelling/spelling_check/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/spelling/spelling_check/config.py -------------------------------------------------------------------------------- /classifiers/text_analysis/emotionality_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/emotionality_detection/README.md -------------------------------------------------------------------------------- /classifiers/text_analysis/emotionality_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/emotionality_detection/__init__.py -------------------------------------------------------------------------------- /classifiers/text_analysis/emotionality_detection/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/emotionality_detection/code_snippet_backup.md -------------------------------------------------------------------------------- /classifiers/text_analysis/emotionality_detection/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/emotionality_detection/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/text_analysis/emotionality_detection/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/emotionality_detection/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/text_analysis/emotionality_detection/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/emotionality_detection/config.py -------------------------------------------------------------------------------- /classifiers/text_analysis/language_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/language_detection/README.md -------------------------------------------------------------------------------- /classifiers/text_analysis/language_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/language_detection/__init__.py -------------------------------------------------------------------------------- /classifiers/text_analysis/language_detection/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/language_detection/code_snippet_backup.md -------------------------------------------------------------------------------- /classifiers/text_analysis/language_detection/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/language_detection/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/text_analysis/language_detection/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/language_detection/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/text_analysis/language_detection/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/language_detection/config.py -------------------------------------------------------------------------------- /classifiers/text_analysis/profanity_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/profanity_detection/README.md -------------------------------------------------------------------------------- /classifiers/text_analysis/profanity_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/profanity_detection/__init__.py -------------------------------------------------------------------------------- /classifiers/text_analysis/profanity_detection/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/profanity_detection/code_snippet_backup.md -------------------------------------------------------------------------------- /classifiers/text_analysis/profanity_detection/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/profanity_detection/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/text_analysis/profanity_detection/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/profanity_detection/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/text_analysis/profanity_detection/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/profanity_detection/config.py -------------------------------------------------------------------------------- /classifiers/text_analysis/sentence_complexity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/sentence_complexity/README.md -------------------------------------------------------------------------------- /classifiers/text_analysis/sentence_complexity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/sentence_complexity/__init__.py -------------------------------------------------------------------------------- /classifiers/text_analysis/sentence_complexity/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/sentence_complexity/code_snippet_backup.md -------------------------------------------------------------------------------- /classifiers/text_analysis/sentence_complexity/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/sentence_complexity/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/text_analysis/sentence_complexity/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/sentence_complexity/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/text_analysis/sentence_complexity/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/sentence_complexity/config.py -------------------------------------------------------------------------------- /classifiers/text_analysis/textblob_subjectivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/textblob_subjectivity/README.md -------------------------------------------------------------------------------- /classifiers/text_analysis/textblob_subjectivity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/textblob_subjectivity/__init__.py -------------------------------------------------------------------------------- /classifiers/text_analysis/textblob_subjectivity/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/textblob_subjectivity/code_snippet_backup.md -------------------------------------------------------------------------------- /classifiers/text_analysis/textblob_subjectivity/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/textblob_subjectivity/code_snippet_common.md -------------------------------------------------------------------------------- /classifiers/text_analysis/textblob_subjectivity/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/textblob_subjectivity/code_snippet_refinery.md -------------------------------------------------------------------------------- /classifiers/text_analysis/textblob_subjectivity/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/text_analysis/textblob_subjectivity/config.py -------------------------------------------------------------------------------- /classifiers/zero_shot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/classifiers/zero_shot/README.md -------------------------------------------------------------------------------- /cms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/cms.py -------------------------------------------------------------------------------- /extractors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/README.md -------------------------------------------------------------------------------- /extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/__init__.py -------------------------------------------------------------------------------- /extractors/_template/_template_func/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/_template/_template_func/README.md -------------------------------------------------------------------------------- /extractors/_template/_template_func/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extractors/_template/_template_func/code_snippet_common.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extractors/_template/_template_func/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/_template/_template_func/config.py -------------------------------------------------------------------------------- /extractors/active_learner/crf_tagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/active_learner/crf_tagger/README.md -------------------------------------------------------------------------------- /extractors/active_learner/crf_tagger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/active_learner/crf_tagger/__init__.py -------------------------------------------------------------------------------- /extractors/active_learner/crf_tagger/code_snippet_common.md: -------------------------------------------------------------------------------- 1 | ```python 2 | "Coming soon!" 3 | ``` -------------------------------------------------------------------------------- /extractors/active_learner/crf_tagger/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/active_learner/crf_tagger/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/active_learner/crf_tagger/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/active_learner/crf_tagger/config.py -------------------------------------------------------------------------------- /extractors/codes/color_code_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/color_code_extraction/README.md -------------------------------------------------------------------------------- /extractors/codes/color_code_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/color_code_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/codes/color_code_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/color_code_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/codes/color_code_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/color_code_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/codes/color_code_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/color_code_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/codes/color_code_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/color_code_extraction/config.py -------------------------------------------------------------------------------- /extractors/codes/stock_ticker_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/stock_ticker_extraction/README.md -------------------------------------------------------------------------------- /extractors/codes/stock_ticker_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/stock_ticker_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/codes/stock_ticker_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/stock_ticker_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/codes/stock_ticker_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/stock_ticker_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/codes/stock_ticker_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/stock_ticker_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/codes/stock_ticker_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/stock_ticker_extraction/config.py -------------------------------------------------------------------------------- /extractors/codes/stock_ticker_extraction/tickers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/codes/stock_ticker_extraction/tickers.txt -------------------------------------------------------------------------------- /extractors/dates_and_times/date_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/date_extraction/README.md -------------------------------------------------------------------------------- /extractors/dates_and_times/date_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/date_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/dates_and_times/date_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/date_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/dates_and_times/date_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/date_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/dates_and_times/date_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/date_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/dates_and_times/date_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/date_extraction/config.py -------------------------------------------------------------------------------- /extractors/dates_and_times/time_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/time_extraction/README.md -------------------------------------------------------------------------------- /extractors/dates_and_times/time_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/time_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/dates_and_times/time_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/time_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/dates_and_times/time_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/time_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/dates_and_times/time_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/time_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/dates_and_times/time_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/dates_and_times/time_extraction/config.py -------------------------------------------------------------------------------- /extractors/functions/aspect_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/aspect_extraction/README.md -------------------------------------------------------------------------------- /extractors/functions/aspect_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/aspect_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/functions/aspect_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/aspect_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/functions/aspect_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/aspect_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/functions/aspect_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/aspect_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/functions/aspect_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/aspect_extraction/config.py -------------------------------------------------------------------------------- /extractors/functions/gazetteer_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/gazetteer_extraction/README.md -------------------------------------------------------------------------------- /extractors/functions/gazetteer_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/gazetteer_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/functions/gazetteer_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/gazetteer_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/functions/gazetteer_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/gazetteer_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/functions/gazetteer_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/gazetteer_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/functions/gazetteer_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/gazetteer_extraction/config.py -------------------------------------------------------------------------------- /extractors/functions/regex_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/regex_extraction/README.md -------------------------------------------------------------------------------- /extractors/functions/regex_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/regex_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/functions/regex_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/regex_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/functions/regex_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/regex_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/functions/regex_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/regex_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/functions/regex_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/regex_extraction/config.py -------------------------------------------------------------------------------- /extractors/functions/window_search_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/window_search_extraction/README.md -------------------------------------------------------------------------------- /extractors/functions/window_search_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/window_search_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/functions/window_search_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/window_search_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/functions/window_search_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/window_search_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/functions/window_search_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/window_search_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/functions/window_search_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/functions/window_search_extraction/config.py -------------------------------------------------------------------------------- /extractors/llm/bert_ner_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/bert_ner_extraction/README.md -------------------------------------------------------------------------------- /extractors/llm/bert_ner_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/bert_ner_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/llm/bert_ner_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/bert_ner_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/llm/bert_ner_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/bert_ner_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/llm/bert_ner_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/bert_ner_extraction/config.py -------------------------------------------------------------------------------- /extractors/llm/deberta_ner_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/deberta_ner_extraction/README.md -------------------------------------------------------------------------------- /extractors/llm/deberta_ner_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/deberta_ner_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/llm/deberta_ner_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/deberta_ner_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/llm/deberta_ner_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/deberta_ner_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/llm/deberta_ner_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/deberta_ner_extraction/config.py -------------------------------------------------------------------------------- /extractors/llm/gpt_information_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/gpt_information_extraction/README.md -------------------------------------------------------------------------------- /extractors/llm/gpt_information_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/gpt_information_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/llm/gpt_information_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/gpt_information_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/llm/gpt_information_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/gpt_information_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/llm/gpt_information_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/gpt_information_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/llm/gpt_information_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/llm/gpt_information_extraction/config.py -------------------------------------------------------------------------------- /extractors/media/work_of_art_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/media/work_of_art_extraction/README.md -------------------------------------------------------------------------------- /extractors/media/work_of_art_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/media/work_of_art_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/media/work_of_art_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/media/work_of_art_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/media/work_of_art_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/media/work_of_art_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/media/work_of_art_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/media/work_of_art_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/media/work_of_art_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/media/work_of_art_extraction/config.py -------------------------------------------------------------------------------- /extractors/metrics/metric_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/metrics/metric_extraction/README.md -------------------------------------------------------------------------------- /extractors/metrics/metric_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/metrics/metric_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/metrics/metric_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/metrics/metric_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/metrics/metric_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/metrics/metric_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/metrics/metric_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/metrics/metric_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/metrics/metric_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/metrics/metric_extraction/config.py -------------------------------------------------------------------------------- /extractors/numbers/bic_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/bic_extraction/README.md -------------------------------------------------------------------------------- /extractors/numbers/bic_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/bic_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/numbers/bic_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/bic_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/numbers/bic_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/bic_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/numbers/bic_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/bic_extraction/config.py -------------------------------------------------------------------------------- /extractors/numbers/credit_card_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/credit_card_extraction/README.md -------------------------------------------------------------------------------- /extractors/numbers/credit_card_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/credit_card_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/numbers/credit_card_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/credit_card_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/numbers/credit_card_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/credit_card_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/numbers/credit_card_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/credit_card_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/numbers/credit_card_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/credit_card_extraction/config.py -------------------------------------------------------------------------------- /extractors/numbers/digit_extraction/README.md: -------------------------------------------------------------------------------- 1 | Extracts digits from string of length n. -------------------------------------------------------------------------------- /extractors/numbers/digit_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/digit_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/numbers/digit_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/digit_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/numbers/digit_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/digit_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/numbers/digit_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/digit_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/numbers/digit_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/digit_extraction/config.py -------------------------------------------------------------------------------- /extractors/numbers/iban_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/iban_extraction/README.md -------------------------------------------------------------------------------- /extractors/numbers/iban_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/iban_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/numbers/iban_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/iban_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/numbers/iban_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/iban_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/numbers/iban_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/iban_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/numbers/iban_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/iban_extraction/config.py -------------------------------------------------------------------------------- /extractors/numbers/ip_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/ip_extraction/README.md -------------------------------------------------------------------------------- /extractors/numbers/ip_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/ip_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/numbers/ip_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/ip_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/numbers/ip_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/ip_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/numbers/ip_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/ip_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/numbers/ip_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/ip_extraction/config.py -------------------------------------------------------------------------------- /extractors/numbers/isbn_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/isbn_extraction/README.md -------------------------------------------------------------------------------- /extractors/numbers/isbn_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/isbn_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/numbers/isbn_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/isbn_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/numbers/isbn_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/isbn_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/numbers/isbn_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/isbn_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/numbers/isbn_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/isbn_extraction/config.py -------------------------------------------------------------------------------- /extractors/numbers/percentage_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/percentage_extraction/README.md -------------------------------------------------------------------------------- /extractors/numbers/percentage_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/percentage_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/numbers/percentage_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/percentage_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/numbers/percentage_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/percentage_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/numbers/percentage_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/percentage_extraction/config.py -------------------------------------------------------------------------------- /extractors/numbers/phone_number_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/phone_number_extraction/README.md -------------------------------------------------------------------------------- /extractors/numbers/phone_number_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/phone_number_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/numbers/phone_number_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/phone_number_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/numbers/phone_number_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/phone_number_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/numbers/phone_number_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/phone_number_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/numbers/phone_number_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/phone_number_extraction/config.py -------------------------------------------------------------------------------- /extractors/numbers/price_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/price_extraction/README.md -------------------------------------------------------------------------------- /extractors/numbers/price_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/price_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/numbers/price_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/price_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/numbers/price_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/price_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/numbers/price_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/price_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/numbers/price_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/numbers/price_extraction/config.py -------------------------------------------------------------------------------- /extractors/paths/filepath_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/filepath_extraction/README.md -------------------------------------------------------------------------------- /extractors/paths/filepath_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/filepath_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/paths/filepath_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/filepath_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/paths/filepath_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/filepath_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/paths/filepath_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/filepath_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/paths/filepath_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/filepath_extraction/config.py -------------------------------------------------------------------------------- /extractors/paths/url_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/url_extraction/README.md -------------------------------------------------------------------------------- /extractors/paths/url_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/url_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/paths/url_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/url_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/paths/url_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/url_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/paths/url_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/url_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/paths/url_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/paths/url_extraction/config.py -------------------------------------------------------------------------------- /extractors/personal_identifiers/address_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/address_extraction/README.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/address_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/address_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/personal_identifiers/address_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/address_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/address_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/address_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/address_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/address_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/address_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/address_extraction/config.py -------------------------------------------------------------------------------- /extractors/personal_identifiers/email_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/email_extraction/README.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/email_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/email_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/personal_identifiers/email_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/email_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/email_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/email_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/email_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/email_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/email_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/email_extraction/config.py -------------------------------------------------------------------------------- /extractors/personal_identifiers/location_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/location_extraction/README.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/location_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/location_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/personal_identifiers/location_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/location_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/location_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/location_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/location_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/location_extraction/config.py -------------------------------------------------------------------------------- /extractors/personal_identifiers/person_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/person_extraction/README.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/person_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/person_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/personal_identifiers/person_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/person_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/person_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/person_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/person_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/person_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/person_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/person_extraction/config.py -------------------------------------------------------------------------------- /extractors/personal_identifiers/zipcode_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/zipcode_extraction/README.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/zipcode_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/zipcode_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/personal_identifiers/zipcode_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/zipcode_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/zipcode_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/zipcode_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/zipcode_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/zipcode_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/personal_identifiers/zipcode_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/zipcode_extraction/config.py -------------------------------------------------------------------------------- /extractors/personal_identifiers/zipcode_extraction/zip_codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/personal_identifiers/zipcode_extraction/zip_codes.json -------------------------------------------------------------------------------- /extractors/symbols/hashtag_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/symbols/hashtag_extraction/README.md -------------------------------------------------------------------------------- /extractors/symbols/hashtag_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/symbols/hashtag_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/symbols/hashtag_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/symbols/hashtag_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/symbols/hashtag_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/symbols/hashtag_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/symbols/hashtag_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/symbols/hashtag_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/symbols/hashtag_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/symbols/hashtag_extraction/config.py -------------------------------------------------------------------------------- /extractors/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extractors/util/spacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/util/spacy.py -------------------------------------------------------------------------------- /extractors/words/difficult_words_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/difficult_words_extraction/README.md -------------------------------------------------------------------------------- /extractors/words/difficult_words_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/difficult_words_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/words/difficult_words_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/difficult_words_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/words/difficult_words_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/difficult_words_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/words/difficult_words_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/difficult_words_extraction/config.py -------------------------------------------------------------------------------- /extractors/words/goodbye_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/goodbye_extraction/README.md -------------------------------------------------------------------------------- /extractors/words/goodbye_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/goodbye_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/words/goodbye_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/goodbye_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/words/goodbye_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/goodbye_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/words/goodbye_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/goodbye_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/words/goodbye_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/goodbye_extraction/config.py -------------------------------------------------------------------------------- /extractors/words/keyword_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/keyword_extraction/README.md -------------------------------------------------------------------------------- /extractors/words/keyword_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/keyword_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/words/keyword_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/keyword_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/words/keyword_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/keyword_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/words/keyword_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/keyword_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/words/keyword_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/keyword_extraction/config.py -------------------------------------------------------------------------------- /extractors/words/noun_match_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/noun_match_extraction/README.md -------------------------------------------------------------------------------- /extractors/words/noun_match_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/noun_match_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/words/noun_match_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/noun_match_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/words/noun_match_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/noun_match_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/words/noun_match_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/noun_match_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/words/noun_match_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/noun_match_extraction/config.py -------------------------------------------------------------------------------- /extractors/words/org_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/org_extraction/README.md -------------------------------------------------------------------------------- /extractors/words/org_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/org_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/words/org_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/org_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/words/org_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/org_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/words/org_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/org_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/words/org_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/org_extraction/config.py -------------------------------------------------------------------------------- /extractors/words/part_of_speech_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/part_of_speech_extraction/README.md -------------------------------------------------------------------------------- /extractors/words/part_of_speech_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/part_of_speech_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/words/part_of_speech_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/part_of_speech_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/words/part_of_speech_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/part_of_speech_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/words/part_of_speech_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/part_of_speech_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/words/part_of_speech_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/part_of_speech_extraction/config.py -------------------------------------------------------------------------------- /extractors/words/quote_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/quote_extraction/README.md -------------------------------------------------------------------------------- /extractors/words/quote_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/quote_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/words/quote_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/quote_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/words/quote_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/quote_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/words/quote_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/quote_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/words/quote_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/quote_extraction/config.py -------------------------------------------------------------------------------- /extractors/words/smalltalk_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/smalltalk_extraction/README.md -------------------------------------------------------------------------------- /extractors/words/smalltalk_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/smalltalk_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/words/smalltalk_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/smalltalk_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/words/smalltalk_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/smalltalk_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/words/smalltalk_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/smalltalk_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/words/smalltalk_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/smalltalk_extraction/config.py -------------------------------------------------------------------------------- /extractors/words/substring_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/substring_extraction/README.md -------------------------------------------------------------------------------- /extractors/words/substring_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/substring_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/words/substring_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/substring_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/words/substring_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/substring_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/words/substring_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/substring_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/words/substring_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/substring_extraction/config.py -------------------------------------------------------------------------------- /extractors/words/synonym_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/synonym_extraction/README.md -------------------------------------------------------------------------------- /extractors/words/synonym_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/synonym_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/words/synonym_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/synonym_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/words/synonym_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/synonym_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/words/synonym_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/synonym_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/words/synonym_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/synonym_extraction/config.py -------------------------------------------------------------------------------- /extractors/words/verb_phrase_extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/verb_phrase_extraction/README.md -------------------------------------------------------------------------------- /extractors/words/verb_phrase_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/verb_phrase_extraction/__init__.py -------------------------------------------------------------------------------- /extractors/words/verb_phrase_extraction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/verb_phrase_extraction/code_snippet_backup.md -------------------------------------------------------------------------------- /extractors/words/verb_phrase_extraction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/verb_phrase_extraction/code_snippet_common.md -------------------------------------------------------------------------------- /extractors/words/verb_phrase_extraction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/verb_phrase_extraction/code_snippet_refinery.md -------------------------------------------------------------------------------- /extractors/words/verb_phrase_extraction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/words/verb_phrase_extraction/config.py -------------------------------------------------------------------------------- /extractors/zero_shot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/extractors/zero_shot/README.md -------------------------------------------------------------------------------- /generators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/README.md -------------------------------------------------------------------------------- /generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/__init__.py -------------------------------------------------------------------------------- /generators/_template/_template_func/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/_template/_template_func/README.md -------------------------------------------------------------------------------- /generators/_template/_template_func/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/_template/_template_func/code_snippet_common.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/_template/_template_func/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/_template/_template_func/config.py -------------------------------------------------------------------------------- /generators/distance/euclidean_distance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/euclidean_distance/README.md -------------------------------------------------------------------------------- /generators/distance/euclidean_distance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/euclidean_distance/__init__.py -------------------------------------------------------------------------------- /generators/distance/euclidean_distance/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/euclidean_distance/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/distance/euclidean_distance/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/euclidean_distance/code_snippet_common.md -------------------------------------------------------------------------------- /generators/distance/euclidean_distance/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/euclidean_distance/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/distance/euclidean_distance/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/euclidean_distance/config.py -------------------------------------------------------------------------------- /generators/distance/hamming_distance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/hamming_distance/README.md -------------------------------------------------------------------------------- /generators/distance/hamming_distance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/hamming_distance/__init__.py -------------------------------------------------------------------------------- /generators/distance/hamming_distance/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/hamming_distance/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/distance/hamming_distance/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/hamming_distance/code_snippet_common.md -------------------------------------------------------------------------------- /generators/distance/hamming_distance/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/hamming_distance/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/distance/hamming_distance/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/hamming_distance/config.py -------------------------------------------------------------------------------- /generators/distance/levenshtein_distance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/levenshtein_distance/README.md -------------------------------------------------------------------------------- /generators/distance/levenshtein_distance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/levenshtein_distance/__init__.py -------------------------------------------------------------------------------- /generators/distance/levenshtein_distance/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/levenshtein_distance/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/distance/levenshtein_distance/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/levenshtein_distance/code_snippet_common.md -------------------------------------------------------------------------------- /generators/distance/levenshtein_distance/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/levenshtein_distance/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/distance/levenshtein_distance/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/levenshtein_distance/config.py -------------------------------------------------------------------------------- /generators/distance/manhattan_distance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/manhattan_distance/README.md -------------------------------------------------------------------------------- /generators/distance/manhattan_distance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/manhattan_distance/__init__.py -------------------------------------------------------------------------------- /generators/distance/manhattan_distance/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/manhattan_distance/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/distance/manhattan_distance/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/manhattan_distance/code_snippet_common.md -------------------------------------------------------------------------------- /generators/distance/manhattan_distance/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/manhattan_distance/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/distance/manhattan_distance/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/distance/manhattan_distance/config.py -------------------------------------------------------------------------------- /generators/lemmatizer/spacy_lemmatizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/lemmatizer/spacy_lemmatizer/README.md -------------------------------------------------------------------------------- /generators/lemmatizer/spacy_lemmatizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/lemmatizer/spacy_lemmatizer/__init__.py -------------------------------------------------------------------------------- /generators/lemmatizer/spacy_lemmatizer/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/lemmatizer/spacy_lemmatizer/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/lemmatizer/spacy_lemmatizer/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/lemmatizer/spacy_lemmatizer/code_snippet_common.md -------------------------------------------------------------------------------- /generators/lemmatizer/spacy_lemmatizer/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/lemmatizer/spacy_lemmatizer/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/lemmatizer/spacy_lemmatizer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/lemmatizer/spacy_lemmatizer/config.py -------------------------------------------------------------------------------- /generators/llm/bert_toxicity_detector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/bert_toxicity_detector/README.md -------------------------------------------------------------------------------- /generators/llm/bert_toxicity_detector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/bert_toxicity_detector/__init__.py -------------------------------------------------------------------------------- /generators/llm/bert_toxicity_detector/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/bert_toxicity_detector/code_snippet_common.md -------------------------------------------------------------------------------- /generators/llm/bert_toxicity_detector/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/bert_toxicity_detector/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/llm/bert_toxicity_detector/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/bert_toxicity_detector/config.py -------------------------------------------------------------------------------- /generators/llm/gpt_grammar_correction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_grammar_correction/README.md -------------------------------------------------------------------------------- /generators/llm/gpt_grammar_correction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_grammar_correction/__init__.py -------------------------------------------------------------------------------- /generators/llm/gpt_grammar_correction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_grammar_correction/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/llm/gpt_grammar_correction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_grammar_correction/code_snippet_common.md -------------------------------------------------------------------------------- /generators/llm/gpt_grammar_correction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_grammar_correction/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/llm/gpt_grammar_correction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_grammar_correction/config.py -------------------------------------------------------------------------------- /generators/llm/gpt_tldr_summarization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_tldr_summarization/README.md -------------------------------------------------------------------------------- /generators/llm/gpt_tldr_summarization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_tldr_summarization/__init__.py -------------------------------------------------------------------------------- /generators/llm/gpt_tldr_summarization/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_tldr_summarization/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/llm/gpt_tldr_summarization/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_tldr_summarization/code_snippet_common.md -------------------------------------------------------------------------------- /generators/llm/gpt_tldr_summarization/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_tldr_summarization/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/llm/gpt_tldr_summarization/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/llm/gpt_tldr_summarization/config.py -------------------------------------------------------------------------------- /generators/ngram/nltk_ngram_generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/ngram/nltk_ngram_generator/README.md -------------------------------------------------------------------------------- /generators/ngram/nltk_ngram_generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/ngram/nltk_ngram_generator/__init__.py -------------------------------------------------------------------------------- /generators/ngram/nltk_ngram_generator/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/ngram/nltk_ngram_generator/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/ngram/nltk_ngram_generator/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/ngram/nltk_ngram_generator/code_snippet_common.md -------------------------------------------------------------------------------- /generators/ngram/nltk_ngram_generator/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/ngram/nltk_ngram_generator/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/ngram/nltk_ngram_generator/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/ngram/nltk_ngram_generator/config.py -------------------------------------------------------------------------------- /generators/paths/domain_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/paths/domain_parser/README.md -------------------------------------------------------------------------------- /generators/paths/domain_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/paths/domain_parser/__init__.py -------------------------------------------------------------------------------- /generators/paths/domain_parser/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/paths/domain_parser/code_snippet_common.md -------------------------------------------------------------------------------- /generators/paths/domain_parser/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/paths/domain_parser/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/paths/domain_parser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/paths/domain_parser/config.py -------------------------------------------------------------------------------- /generators/paths/url_keyword_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/paths/url_keyword_parser/README.md -------------------------------------------------------------------------------- /generators/paths/url_keyword_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/paths/url_keyword_parser/__init__.py -------------------------------------------------------------------------------- /generators/paths/url_keyword_parser/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/paths/url_keyword_parser/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/paths/url_keyword_parser/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/paths/url_keyword_parser/code_snippet_common.md -------------------------------------------------------------------------------- /generators/paths/url_keyword_parser/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/paths/url_keyword_parser/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/paths/url_keyword_parser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/paths/url_keyword_parser/config.py -------------------------------------------------------------------------------- /generators/reference_chunking/newline_splitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/reference_chunking/newline_splitter/README.md -------------------------------------------------------------------------------- /generators/reference_chunking/newline_splitter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/reference_chunking/newline_splitter/__init__.py -------------------------------------------------------------------------------- /generators/reference_chunking/newline_splitter/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/reference_chunking/newline_splitter/code_snippet_common.md -------------------------------------------------------------------------------- /generators/reference_chunking/newline_splitter/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/reference_chunking/newline_splitter/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/reference_chunking/newline_splitter/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/reference_chunking/newline_splitter/config.py -------------------------------------------------------------------------------- /generators/reference_chunking/noun_splitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/reference_chunking/noun_splitter/README.md -------------------------------------------------------------------------------- /generators/reference_chunking/noun_splitter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/reference_chunking/noun_splitter/__init__.py -------------------------------------------------------------------------------- /generators/reference_chunking/noun_splitter/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/reference_chunking/noun_splitter/code_snippet_common.md -------------------------------------------------------------------------------- /generators/reference_chunking/noun_splitter/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/reference_chunking/noun_splitter/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/reference_chunking/noun_splitter/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/reference_chunking/noun_splitter/config.py -------------------------------------------------------------------------------- /generators/search/bing_news_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_news_search/README.md -------------------------------------------------------------------------------- /generators/search/bing_news_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_news_search/__init__.py -------------------------------------------------------------------------------- /generators/search/bing_news_search/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_news_search/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/search/bing_news_search/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_news_search/code_snippet_common.md -------------------------------------------------------------------------------- /generators/search/bing_news_search/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_news_search/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/search/bing_news_search/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_news_search/config.py -------------------------------------------------------------------------------- /generators/search/bing_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_search/README.md -------------------------------------------------------------------------------- /generators/search/bing_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_search/__init__.py -------------------------------------------------------------------------------- /generators/search/bing_search/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_search/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/search/bing_search/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_search/code_snippet_common.md -------------------------------------------------------------------------------- /generators/search/bing_search/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_search/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/search/bing_search/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/bing_search/config.py -------------------------------------------------------------------------------- /generators/search/google_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/google_search/README.md -------------------------------------------------------------------------------- /generators/search/google_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/google_search/__init__.py -------------------------------------------------------------------------------- /generators/search/google_search/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/google_search/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/search/google_search/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/google_search/code_snippet_common.md -------------------------------------------------------------------------------- /generators/search/google_search/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/google_search/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/search/google_search/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/google_search/config.py -------------------------------------------------------------------------------- /generators/search/nyt_news_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/nyt_news_search/README.md -------------------------------------------------------------------------------- /generators/search/nyt_news_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/nyt_news_search/__init__.py -------------------------------------------------------------------------------- /generators/search/nyt_news_search/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/nyt_news_search/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/search/nyt_news_search/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/nyt_news_search/code_snippet_common.md -------------------------------------------------------------------------------- /generators/search/nyt_news_search/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/nyt_news_search/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/search/nyt_news_search/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/search/nyt_news_search/config.py -------------------------------------------------------------------------------- /generators/sentiment/vader_sentiment_scores/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/sentiment/vader_sentiment_scores/README.md -------------------------------------------------------------------------------- /generators/sentiment/vader_sentiment_scores/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/sentiment/vader_sentiment_scores/__init__.py -------------------------------------------------------------------------------- /generators/sentiment/vader_sentiment_scores/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/sentiment/vader_sentiment_scores/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/sentiment/vader_sentiment_scores/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/sentiment/vader_sentiment_scores/code_snippet_common.md -------------------------------------------------------------------------------- /generators/sentiment/vader_sentiment_scores/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/sentiment/vader_sentiment_scores/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/sentiment/vader_sentiment_scores/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/sentiment/vader_sentiment_scores/config.py -------------------------------------------------------------------------------- /generators/speech_to_text/azure_speech_to_text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/speech_to_text/azure_speech_to_text/README.md -------------------------------------------------------------------------------- /generators/speech_to_text/azure_speech_to_text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/speech_to_text/azure_speech_to_text/__init__.py -------------------------------------------------------------------------------- /generators/speech_to_text/azure_speech_to_text/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/speech_to_text/azure_speech_to_text/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/speech_to_text/azure_speech_to_text/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/speech_to_text/azure_speech_to_text/code_snippet_common.md -------------------------------------------------------------------------------- /generators/speech_to_text/azure_speech_to_text/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/speech_to_text/azure_speech_to_text/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/speech_to_text/azure_speech_to_text/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/speech_to_text/azure_speech_to_text/config.py -------------------------------------------------------------------------------- /generators/spelling/bing_spelling_correction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/spelling/bing_spelling_correction/README.md -------------------------------------------------------------------------------- /generators/spelling/bing_spelling_correction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/spelling/bing_spelling_correction/__init__.py -------------------------------------------------------------------------------- /generators/spelling/bing_spelling_correction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/spelling/bing_spelling_correction/code_snippet_common.md -------------------------------------------------------------------------------- /generators/spelling/bing_spelling_correction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/spelling/bing_spelling_correction/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/spelling/bing_spelling_correction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/spelling/bing_spelling_correction/config.py -------------------------------------------------------------------------------- /generators/spelling/textblob_spelling_correction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/spelling/textblob_spelling_correction/README.md -------------------------------------------------------------------------------- /generators/spelling/textblob_spelling_correction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/spelling/textblob_spelling_correction/__init__.py -------------------------------------------------------------------------------- /generators/spelling/textblob_spelling_correction/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/spelling/textblob_spelling_correction/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/spelling/textblob_spelling_correction/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/spelling/textblob_spelling_correction/code_snippet_common.md -------------------------------------------------------------------------------- /generators/spelling/textblob_spelling_correction/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/spelling/textblob_spelling_correction/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/spelling/textblob_spelling_correction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/spelling/textblob_spelling_correction/config.py -------------------------------------------------------------------------------- /generators/summarization/smalltalk_truncation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/smalltalk_truncation/README.md -------------------------------------------------------------------------------- /generators/summarization/smalltalk_truncation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/smalltalk_truncation/__init__.py -------------------------------------------------------------------------------- /generators/summarization/smalltalk_truncation/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/smalltalk_truncation/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/summarization/smalltalk_truncation/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/smalltalk_truncation/code_snippet_common.md -------------------------------------------------------------------------------- /generators/summarization/smalltalk_truncation/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/smalltalk_truncation/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/summarization/smalltalk_truncation/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/smalltalk_truncation/config.py -------------------------------------------------------------------------------- /generators/summarization/sumy_website_summarizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/sumy_website_summarizer/README.md -------------------------------------------------------------------------------- /generators/summarization/sumy_website_summarizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/sumy_website_summarizer/__init__.py -------------------------------------------------------------------------------- /generators/summarization/sumy_website_summarizer/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/sumy_website_summarizer/code_snippet_common.md -------------------------------------------------------------------------------- /generators/summarization/sumy_website_summarizer/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/sumy_website_summarizer/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/summarization/sumy_website_summarizer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/sumy_website_summarizer/config.py -------------------------------------------------------------------------------- /generators/summarization/text_summarization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/text_summarization/README.md -------------------------------------------------------------------------------- /generators/summarization/text_summarization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/text_summarization/__init__.py -------------------------------------------------------------------------------- /generators/summarization/text_summarization/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/text_summarization/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/summarization/text_summarization/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/text_summarization/code_snippet_common.md -------------------------------------------------------------------------------- /generators/summarization/text_summarization/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/text_summarization/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/summarization/text_summarization/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/summarization/text_summarization/config.py -------------------------------------------------------------------------------- /generators/text_analytics/most_frequent_words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/most_frequent_words/README.md -------------------------------------------------------------------------------- /generators/text_analytics/most_frequent_words/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/most_frequent_words/__init__.py -------------------------------------------------------------------------------- /generators/text_analytics/most_frequent_words/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/most_frequent_words/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/text_analytics/most_frequent_words/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/most_frequent_words/code_snippet_common.md -------------------------------------------------------------------------------- /generators/text_analytics/most_frequent_words/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/most_frequent_words/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/text_analytics/most_frequent_words/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/most_frequent_words/config.py -------------------------------------------------------------------------------- /generators/text_analytics/phonetic_soundex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/phonetic_soundex/README.md -------------------------------------------------------------------------------- /generators/text_analytics/phonetic_soundex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/phonetic_soundex/__init__.py -------------------------------------------------------------------------------- /generators/text_analytics/phonetic_soundex/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/phonetic_soundex/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/text_analytics/phonetic_soundex/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/phonetic_soundex/code_snippet_common.md -------------------------------------------------------------------------------- /generators/text_analytics/phonetic_soundex/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/phonetic_soundex/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/text_analytics/phonetic_soundex/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/phonetic_soundex/config.py -------------------------------------------------------------------------------- /generators/text_analytics/reading_time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/reading_time/README.md -------------------------------------------------------------------------------- /generators/text_analytics/reading_time/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/reading_time/__init__.py -------------------------------------------------------------------------------- /generators/text_analytics/reading_time/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/reading_time/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/text_analytics/reading_time/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/reading_time/code_snippet_common.md -------------------------------------------------------------------------------- /generators/text_analytics/reading_time/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/reading_time/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/text_analytics/reading_time/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/reading_time/config.py -------------------------------------------------------------------------------- /generators/text_analytics/syllable_count/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/syllable_count/README.md -------------------------------------------------------------------------------- /generators/text_analytics/syllable_count/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/syllable_count/__init__.py -------------------------------------------------------------------------------- /generators/text_analytics/syllable_count/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/syllable_count/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/text_analytics/syllable_count/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/syllable_count/code_snippet_common.md -------------------------------------------------------------------------------- /generators/text_analytics/syllable_count/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/syllable_count/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/text_analytics/syllable_count/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/syllable_count/config.py -------------------------------------------------------------------------------- /generators/text_analytics/tiktoken_token_counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/tiktoken_token_counter/README.md -------------------------------------------------------------------------------- /generators/text_analytics/tiktoken_token_counter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/tiktoken_token_counter/__init__.py -------------------------------------------------------------------------------- /generators/text_analytics/tiktoken_token_counter/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/tiktoken_token_counter/code_snippet_common.md -------------------------------------------------------------------------------- /generators/text_analytics/tiktoken_token_counter/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/tiktoken_token_counter/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/text_analytics/tiktoken_token_counter/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_analytics/tiktoken_token_counter/config.py -------------------------------------------------------------------------------- /generators/text_cleaning/html_cleanser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_cleanser/README.md -------------------------------------------------------------------------------- /generators/text_cleaning/html_cleanser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_cleanser/__init__.py -------------------------------------------------------------------------------- /generators/text_cleaning/html_cleanser/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_cleanser/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/text_cleaning/html_cleanser/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_cleanser/code_snippet_common.md -------------------------------------------------------------------------------- /generators/text_cleaning/html_cleanser/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_cleanser/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/text_cleaning/html_cleanser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_cleanser/config.py -------------------------------------------------------------------------------- /generators/text_cleaning/html_unescape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_unescape/README.md -------------------------------------------------------------------------------- /generators/text_cleaning/html_unescape/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_unescape/__init__.py -------------------------------------------------------------------------------- /generators/text_cleaning/html_unescape/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_unescape/code_snippet_common.md -------------------------------------------------------------------------------- /generators/text_cleaning/html_unescape/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_unescape/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/text_cleaning/html_unescape/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_unescape/config.py -------------------------------------------------------------------------------- /generators/text_cleaning/html_unescape/config_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/text_cleaning/html_unescape/config_backup.py -------------------------------------------------------------------------------- /generators/translation/deepl_translator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/deepl_translator/README.md -------------------------------------------------------------------------------- /generators/translation/deepl_translator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/deepl_translator/__init__.py -------------------------------------------------------------------------------- /generators/translation/deepl_translator/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/deepl_translator/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/translation/deepl_translator/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/deepl_translator/code_snippet_common.md -------------------------------------------------------------------------------- /generators/translation/deepl_translator/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/deepl_translator/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/translation/deepl_translator/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/deepl_translator/config.py -------------------------------------------------------------------------------- /generators/translation/ibm_translator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/ibm_translator/README.md -------------------------------------------------------------------------------- /generators/translation/ibm_translator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/ibm_translator/__init__.py -------------------------------------------------------------------------------- /generators/translation/ibm_translator/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/ibm_translator/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/translation/ibm_translator/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/ibm_translator/code_snippet_common.md -------------------------------------------------------------------------------- /generators/translation/ibm_translator/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/ibm_translator/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/translation/ibm_translator/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/ibm_translator/config.py -------------------------------------------------------------------------------- /generators/translation/language_translator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/language_translator/README.md -------------------------------------------------------------------------------- /generators/translation/language_translator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/language_translator/__init__.py -------------------------------------------------------------------------------- /generators/translation/language_translator/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/language_translator/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/translation/language_translator/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/language_translator/code_snippet_common.md -------------------------------------------------------------------------------- /generators/translation/language_translator/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/language_translator/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/translation/language_translator/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/language_translator/config.py -------------------------------------------------------------------------------- /generators/translation/microsoft_translator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/microsoft_translator/README.md -------------------------------------------------------------------------------- /generators/translation/microsoft_translator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/microsoft_translator/__init__.py -------------------------------------------------------------------------------- /generators/translation/microsoft_translator/code_snippet_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/microsoft_translator/code_snippet_backup.md -------------------------------------------------------------------------------- /generators/translation/microsoft_translator/code_snippet_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/microsoft_translator/code_snippet_common.md -------------------------------------------------------------------------------- /generators/translation/microsoft_translator/code_snippet_refinery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/microsoft_translator/code_snippet_refinery.md -------------------------------------------------------------------------------- /generators/translation/microsoft_translator/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/translation/microsoft_translator/config.py -------------------------------------------------------------------------------- /generators/util/spacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/util/spacy.py -------------------------------------------------------------------------------- /generators/zero_shot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/generators/zero_shot/README.md -------------------------------------------------------------------------------- /gunicorn.config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/gunicorn.config.py -------------------------------------------------------------------------------- /images/fastapi_testing_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/images/fastapi_testing_01.png -------------------------------------------------------------------------------- /images/fastapi_testing_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/images/fastapi_testing_02.png -------------------------------------------------------------------------------- /images/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/images/hero.svg -------------------------------------------------------------------------------- /images/identifier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/images/identifier.svg -------------------------------------------------------------------------------- /images/thumbnail-bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/images/thumbnail-bricks.png -------------------------------------------------------------------------------- /nltk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/nltk.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.6 -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/util/configs.py -------------------------------------------------------------------------------- /util/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/util/enums.py -------------------------------------------------------------------------------- /util/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/util/exceptions.py -------------------------------------------------------------------------------- /util/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/bricks/HEAD/util/paths.py --------------------------------------------------------------------------------