├── .coveragerc ├── .env_example ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── dependabot.yml └── workflows │ ├── 60-days-stale-check.yml │ ├── codeql-analysis.yml │ ├── deploy.yml │ ├── docker-publish.yml │ ├── docker.yml │ ├── docs.yml │ ├── formatting.yml │ ├── greetings.yml │ ├── linting.yml │ ├── python-publish.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .release ├── bpemb.version ├── bpemb_attention.version ├── fasttext.version ├── fasttext_attention.version └── model_version_release.md ├── CHANGELOG.md ├── CITATION.cff ├── CNAME ├── Dockerfile ├── LICENSE ├── README.md ├── app_requirements.txt ├── codecov_push.sh ├── deepparse ├── __init__.py ├── app │ ├── address.py │ ├── app.py │ ├── request_examples.http │ ├── sentry.py │ └── tools.py ├── bpemb_url_bug_fix.py ├── cli │ ├── __init__.py │ ├── download_model.py │ ├── download_models.py │ ├── parse.py │ ├── parser_arguments_adder.py │ ├── retrain.py │ ├── test.py │ └── tools.py ├── comparer │ ├── __init__.py │ ├── addresses_comparer.py │ ├── formatted_compared_addresses.py │ ├── formatted_compared_addresses_raw.py │ └── formatted_compared_addresses_tags.py ├── converter │ ├── __init__.py │ ├── data_padder.py │ ├── data_processor.py │ ├── data_processor_factory.py │ └── target_converter.py ├── data_validation │ ├── __init__.py │ └── data_validation.py ├── dataset_container │ ├── __init__.py │ ├── dataset_container.py │ └── tools.py ├── download_tools.py ├── embeddings_models │ ├── __init__.py │ ├── bpemb_embeddings_model.py │ ├── embeddings_model.py │ ├── embeddings_model_factory.py │ ├── fasttext_embeddings_model.py │ └── magnitude_embeddings_model.py ├── errors │ ├── __init__.py │ ├── data_error.py │ ├── model_error.py │ └── server_error.py ├── metrics │ ├── __init__.py │ ├── accuracy.py │ └── nll_loss.py ├── network │ ├── __init__.py │ ├── bpemb_seq2seq.py │ ├── decoder.py │ ├── embedding_network.py │ ├── encoder.py │ ├── fasttext_seq2seq.py │ ├── model_factory.py │ ├── model_loader.py │ └── seq2seq.py ├── parser │ ├── __init__.py │ ├── address_parser.py │ ├── capturing.py │ ├── formatted_parsed_address.py │ └── tools.py ├── pre_processing │ ├── __init__.py │ ├── address_cleaner.py │ └── pre_processor_list.py ├── validations.py ├── vectorizer │ ├── __init__.py │ ├── bpemb_vectorizer.py │ ├── fasttext_vectorizer.py │ ├── magnitude_vectorizer.py │ ├── vectorizer.py │ └── vectorizer_factory.py └── weights_tools.py ├── docker-compose.yml ├── docs ├── .gitignore ├── Makefile ├── rebuild_html_doc.sh ├── requirements.txt └── source │ ├── CNAME │ ├── _static │ ├── .gitkeep │ ├── img │ │ ├── address_parsing.png │ │ └── labeled_addresses.png │ └── logos │ │ ├── deepparse.png │ │ ├── facebook_cover_photo_1.png │ │ ├── facebook_cover_photo_2.png │ │ ├── facebook_profile_image.png │ │ ├── favicon.png │ │ ├── instagram_profile_image.png │ │ ├── linkedin_banner_image_1.png │ │ ├── linkedin_banner_image_2.png │ │ ├── linkedin_profile_image.png │ │ ├── logo.png │ │ ├── logo_transparent.png │ │ ├── pinterest_board_photo.png │ │ ├── pinterest_profile_image.png │ │ ├── twitter_header_photo_1.png │ │ ├── twitter_header_photo_2.png │ │ ├── twitter_profile_image.png │ │ └── youtube_profile_image.png │ ├── api.rst │ ├── cli.rst │ ├── comparer.rst │ ├── conf.py │ ├── dataset_container.rst │ ├── examples │ ├── fine_tuning.rst │ ├── fine_tuning_uri.rst │ ├── fine_tuning_with_csv_dataset.rst │ ├── parse_addresses.rst │ ├── parse_addresses_uri.rst │ ├── parse_addresses_with_cli.rst │ ├── retrain_attention_model.rst │ ├── retrain_with_new_prediction_tags.rst │ ├── retrain_with_new_seq2seq_params.rst │ ├── retrained_model_parsing.rst │ └── single_country_retrain.rst │ ├── favicon.ico │ ├── get_started │ └── get_started.rst │ ├── index.rst │ ├── install │ ├── installation.rst │ └── quick-start.html │ ├── parser.rst │ ├── pre_processor.rst │ └── training_guide.rst ├── examples ├── fine_tuning.py ├── fine_tuning_uri.py ├── fine_tuning_with_csv_dataset.py ├── parse_addresses.py ├── parse_addresses_uri.py ├── retrain_attention_model.py ├── retrain_with_new_prediction_tags.py ├── retrain_with_new_seq2seq_params.py ├── retrained_model_parsing.py └── single_country_retrain.ipynb ├── models_evaluation ├── __init__.py ├── convert.py ├── evaluate_model.py ├── evaluation_requirements.txt ├── generate_tables.py ├── results │ ├── actual │ │ ├── training_incomplete_test_results_bpemb.json │ │ ├── training_incomplete_test_results_fasttext.json │ │ ├── training_test_results_bpemb.json │ │ ├── training_test_results_fasttext.json │ │ ├── zero_shot_test_results_bpemb.json │ │ ├── zero_shot_test_results_bpemb_attention.json │ │ ├── zero_shot_test_results_fasttext.json │ │ └── zero_shot_test_results_fasttext_attention.json │ ├── results │ │ └── speed_test_results │ │ │ ├── speed_test_results_on_0_with_bpemb_attention-False.txt │ │ │ ├── speed_test_results_on_0_with_bpemb_attention-True.txt │ │ │ ├── speed_test_results_on_0_with_fasttext_attention-False.txt │ │ │ ├── speed_test_results_on_0_with_fasttext_attention-True.txt │ │ │ ├── speed_test_results_on_cpu_with_bpemb_attention-False.txt │ │ │ ├── speed_test_results_on_cpu_with_bpemb_attention-True.txt │ │ │ ├── speed_test_results_on_cpu_with_fasttext_attention-False.txt │ │ │ └── speed_test_results_on_cpu_with_fasttext_attention-True.txt │ └── speed_test_results │ │ ├── speed_test_results_on_0_with_bpemb_attention-False.txt │ │ ├── speed_test_results_on_0_with_bpemb_attention-True.txt │ │ ├── speed_test_results_on_0_with_fasttext_attention-False.txt │ │ ├── speed_test_results_on_0_with_fasttext_attention-True.txt │ │ ├── speed_test_results_on_cpu_with_bpemb_attention-False.txt │ │ ├── speed_test_results_on_cpu_with_bpemb_attention-True.txt │ │ ├── speed_test_results_on_cpu_with_fasttext_attention-False.txt │ │ └── speed_test_results_on_cpu_with_fasttext_attention-True.txt ├── speed_test_evaluation.py ├── speed_test_evaluation_libpostal.py ├── tables │ ├── actual │ │ ├── training_incomplete_table.md │ │ ├── training_incomplete_table.rst │ │ ├── training_table.md │ │ ├── training_table.rst │ │ ├── zero_shot_table.md │ │ └── zero_shot_table.rst │ └── comparison │ │ └── fasttext_256.json_vs_fasttext_512.json_table.md ├── timer │ ├── __init__.py │ └── timer.py └── tools.py ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── run_tests_python_envs.sh ├── settings ├── __init__.py └── settings.py ├── setup.cfg ├── setup.py ├── styling_requirements.txt ├── tests ├── __init__.py ├── app │ ├── __init__.py │ └── test_app.py ├── base_capture_output.py ├── base_file_exist.py ├── cli │ ├── __init__.py │ ├── base.py │ ├── test_download_model.py │ ├── test_download_models.py │ ├── test_parse.py │ ├── test_retrain.py │ ├── test_testing.py │ └── test_tools.py ├── comparer │ ├── __init__.py │ ├── test_addresses_comparer.py │ ├── test_formatted_compared_addresses.py │ ├── test_formatted_compared_addresses_raw.py │ └── test_formatted_compared_addresses_tags.py ├── converter │ ├── __init__.py │ ├── test_data_padder.py │ ├── test_data_processor.py │ ├── test_data_processor_factory.py │ └── test_target_converter.py ├── data_validation │ ├── __init__.py │ └── test_data_validation.py ├── dataset_container │ ├── __init__.py │ ├── test_dataset_container.py │ └── test_tools.py ├── embeddings_models │ ├── __init__.py │ ├── integration │ │ ├── __init__.py │ │ ├── test_integration_bpemb_embeddings_model.py │ │ ├── test_integration_fasttext_embeddings_model.py │ │ └── tools.py │ ├── test_bpemb_embeddings_model.py │ ├── test_embeddings_model.py │ ├── test_embeddings_model_factory.py │ ├── test_fasttext_embeddings_model.py │ └── test_magnitude_embeddings_model.py ├── metrics │ ├── __init__.py │ ├── test_accuracy.py │ └── test_nll_loss.py ├── models_evaluation │ ├── __init__.py │ └── test_tools_models_evaluation.py ├── network │ ├── __init__.py │ ├── base.py │ ├── integration │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_integration_decoder.py │ │ ├── test_integration_embedding_network.py │ │ ├── test_integration_encoder.py │ │ ├── test_integration_seq2seq_bpemb_model_cpu.py │ │ ├── test_integration_seq2seq_bpemb_model_gpu.py │ │ ├── test_integration_seq2seq_fasttext_model_cpu.py │ │ ├── test_integration_seq2seq_fasttext_model_gpu.py │ │ ├── test_integration_seq2seq_model_cpu.py │ │ └── test_integration_seq2seq_model_gpu.py │ ├── test_bpemb_seq2seq_model_cpu.py │ ├── test_bpemb_seq2seq_model_gpu.py │ ├── test_decoder.py │ ├── test_embedding_network.py │ ├── test_encoder.py │ ├── test_fasttext_seq2seq_model_cpu.py │ ├── test_fasttext_seq2seq_model_gpu.py │ ├── test_model_factory.py │ └── test_seq2seq.py ├── parser │ ├── __init__.py │ ├── base.py │ ├── integration │ │ ├── __init__.py │ │ ├── base_predict.py │ │ ├── base_retrain.py │ │ ├── test_integration_address_parser.py │ │ ├── test_integration_address_parser_cpu.py │ │ ├── test_integration_address_parser_gpu.py │ │ ├── test_integration_address_parser_new_params.py │ │ ├── test_integration_address_parser_new_params_new_tags.py │ │ ├── test_integration_address_parser_retrain_api.py │ │ ├── test_integration_address_parser_retrain_cpu.py │ │ ├── test_integration_address_parser_retrain_freeze_layers.py │ │ ├── test_integration_address_parser_retrain_gpu.py │ │ ├── test_integration_address_parser_retrain_new_address_components.py │ │ ├── test_integration_address_parser_test_api.py │ │ ├── test_integration_address_parser_test_cpu.py │ │ ├── test_integration_address_parser_test_gpu.py │ │ ├── test_integration_reload_retrain_parser.py │ │ └── test_integration_retrain_test_api_integration.py │ ├── test_address_parser.py │ ├── test_address_parser_retrain_api.py │ ├── test_address_parser_test_api.py │ ├── test_formatted_parsed_address.py │ ├── test_tools.py │ └── test_user_fromatted_parsed_address.py ├── pre_processing │ ├── __init__.py │ ├── test_address_cleaner.py │ └── test_pre_processor_list.py ├── requirements.txt ├── test_download_tools.py ├── test_integration_fasttext_tools.py ├── test_validations.py ├── test_weights_tools.py ├── tools.py └── vectorizer │ ├── __init__.py │ ├── test_bpemb_vectorizer.py │ ├── test_fasttext_vectorizer.py │ ├── test_magnitude_vectorizer.py │ └── test_vectorizer_factory.py └── version.txt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.coveragerc -------------------------------------------------------------------------------- /.env_example: -------------------------------------------------------------------------------- 1 | SENTRY_DSN=your_sentry_dsn -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/60-days-stale-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/workflows/60-days-stale-check.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/formatting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/workflows/formatting.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.pylintrc -------------------------------------------------------------------------------- /.release/bpemb.version: -------------------------------------------------------------------------------- 1 | aa32fa918494b461202157c57734c374 2 | -------------------------------------------------------------------------------- /.release/bpemb_attention.version: -------------------------------------------------------------------------------- 1 | cfb190902476376573591c0ec6f91ece 2 | -------------------------------------------------------------------------------- /.release/fasttext.version: -------------------------------------------------------------------------------- 1 | f67a0517c70a314bdde0b8440f21139d 2 | -------------------------------------------------------------------------------- /.release/fasttext_attention.version: -------------------------------------------------------------------------------- 1 | a2b688bdfa2aa7c009bb7d980e352978 2 | -------------------------------------------------------------------------------- /.release/model_version_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/.release/model_version_release.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | deepparse.org -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/README.md -------------------------------------------------------------------------------- /app_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/app_requirements.txt -------------------------------------------------------------------------------- /codecov_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/codecov_push.sh -------------------------------------------------------------------------------- /deepparse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/__init__.py -------------------------------------------------------------------------------- /deepparse/app/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/app/address.py -------------------------------------------------------------------------------- /deepparse/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/app/app.py -------------------------------------------------------------------------------- /deepparse/app/request_examples.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/app/request_examples.http -------------------------------------------------------------------------------- /deepparse/app/sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/app/sentry.py -------------------------------------------------------------------------------- /deepparse/app/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/app/tools.py -------------------------------------------------------------------------------- /deepparse/bpemb_url_bug_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/bpemb_url_bug_fix.py -------------------------------------------------------------------------------- /deepparse/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/cli/__init__.py -------------------------------------------------------------------------------- /deepparse/cli/download_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/cli/download_model.py -------------------------------------------------------------------------------- /deepparse/cli/download_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/cli/download_models.py -------------------------------------------------------------------------------- /deepparse/cli/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/cli/parse.py -------------------------------------------------------------------------------- /deepparse/cli/parser_arguments_adder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/cli/parser_arguments_adder.py -------------------------------------------------------------------------------- /deepparse/cli/retrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/cli/retrain.py -------------------------------------------------------------------------------- /deepparse/cli/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/cli/test.py -------------------------------------------------------------------------------- /deepparse/cli/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/cli/tools.py -------------------------------------------------------------------------------- /deepparse/comparer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/comparer/__init__.py -------------------------------------------------------------------------------- /deepparse/comparer/addresses_comparer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/comparer/addresses_comparer.py -------------------------------------------------------------------------------- /deepparse/comparer/formatted_compared_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/comparer/formatted_compared_addresses.py -------------------------------------------------------------------------------- /deepparse/comparer/formatted_compared_addresses_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/comparer/formatted_compared_addresses_raw.py -------------------------------------------------------------------------------- /deepparse/comparer/formatted_compared_addresses_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/comparer/formatted_compared_addresses_tags.py -------------------------------------------------------------------------------- /deepparse/converter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/converter/__init__.py -------------------------------------------------------------------------------- /deepparse/converter/data_padder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/converter/data_padder.py -------------------------------------------------------------------------------- /deepparse/converter/data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/converter/data_processor.py -------------------------------------------------------------------------------- /deepparse/converter/data_processor_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/converter/data_processor_factory.py -------------------------------------------------------------------------------- /deepparse/converter/target_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/converter/target_converter.py -------------------------------------------------------------------------------- /deepparse/data_validation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/data_validation/__init__.py -------------------------------------------------------------------------------- /deepparse/data_validation/data_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/data_validation/data_validation.py -------------------------------------------------------------------------------- /deepparse/dataset_container/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/dataset_container/__init__.py -------------------------------------------------------------------------------- /deepparse/dataset_container/dataset_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/dataset_container/dataset_container.py -------------------------------------------------------------------------------- /deepparse/dataset_container/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/dataset_container/tools.py -------------------------------------------------------------------------------- /deepparse/download_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/download_tools.py -------------------------------------------------------------------------------- /deepparse/embeddings_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/embeddings_models/__init__.py -------------------------------------------------------------------------------- /deepparse/embeddings_models/bpemb_embeddings_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/embeddings_models/bpemb_embeddings_model.py -------------------------------------------------------------------------------- /deepparse/embeddings_models/embeddings_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/embeddings_models/embeddings_model.py -------------------------------------------------------------------------------- /deepparse/embeddings_models/embeddings_model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/embeddings_models/embeddings_model_factory.py -------------------------------------------------------------------------------- /deepparse/embeddings_models/fasttext_embeddings_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/embeddings_models/fasttext_embeddings_model.py -------------------------------------------------------------------------------- /deepparse/embeddings_models/magnitude_embeddings_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/embeddings_models/magnitude_embeddings_model.py -------------------------------------------------------------------------------- /deepparse/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/errors/__init__.py -------------------------------------------------------------------------------- /deepparse/errors/data_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/errors/data_error.py -------------------------------------------------------------------------------- /deepparse/errors/model_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/errors/model_error.py -------------------------------------------------------------------------------- /deepparse/errors/server_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/errors/server_error.py -------------------------------------------------------------------------------- /deepparse/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/metrics/__init__.py -------------------------------------------------------------------------------- /deepparse/metrics/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/metrics/accuracy.py -------------------------------------------------------------------------------- /deepparse/metrics/nll_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/metrics/nll_loss.py -------------------------------------------------------------------------------- /deepparse/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/network/__init__.py -------------------------------------------------------------------------------- /deepparse/network/bpemb_seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/network/bpemb_seq2seq.py -------------------------------------------------------------------------------- /deepparse/network/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/network/decoder.py -------------------------------------------------------------------------------- /deepparse/network/embedding_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/network/embedding_network.py -------------------------------------------------------------------------------- /deepparse/network/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/network/encoder.py -------------------------------------------------------------------------------- /deepparse/network/fasttext_seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/network/fasttext_seq2seq.py -------------------------------------------------------------------------------- /deepparse/network/model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/network/model_factory.py -------------------------------------------------------------------------------- /deepparse/network/model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/network/model_loader.py -------------------------------------------------------------------------------- /deepparse/network/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/network/seq2seq.py -------------------------------------------------------------------------------- /deepparse/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/parser/__init__.py -------------------------------------------------------------------------------- /deepparse/parser/address_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/parser/address_parser.py -------------------------------------------------------------------------------- /deepparse/parser/capturing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/parser/capturing.py -------------------------------------------------------------------------------- /deepparse/parser/formatted_parsed_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/parser/formatted_parsed_address.py -------------------------------------------------------------------------------- /deepparse/parser/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/parser/tools.py -------------------------------------------------------------------------------- /deepparse/pre_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/pre_processing/__init__.py -------------------------------------------------------------------------------- /deepparse/pre_processing/address_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/pre_processing/address_cleaner.py -------------------------------------------------------------------------------- /deepparse/pre_processing/pre_processor_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/pre_processing/pre_processor_list.py -------------------------------------------------------------------------------- /deepparse/validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/validations.py -------------------------------------------------------------------------------- /deepparse/vectorizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/vectorizer/__init__.py -------------------------------------------------------------------------------- /deepparse/vectorizer/bpemb_vectorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/vectorizer/bpemb_vectorizer.py -------------------------------------------------------------------------------- /deepparse/vectorizer/fasttext_vectorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/vectorizer/fasttext_vectorizer.py -------------------------------------------------------------------------------- /deepparse/vectorizer/magnitude_vectorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/vectorizer/magnitude_vectorizer.py -------------------------------------------------------------------------------- /deepparse/vectorizer/vectorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/vectorizer/vectorizer.py -------------------------------------------------------------------------------- /deepparse/vectorizer/vectorizer_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/vectorizer/vectorizer_factory.py -------------------------------------------------------------------------------- /deepparse/weights_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/deepparse/weights_tools.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/rebuild_html_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/rebuild_html_doc.sh -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/CNAME: -------------------------------------------------------------------------------- 1 | deepparse.org -------------------------------------------------------------------------------- /docs/source/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_static/img/address_parsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/img/address_parsing.png -------------------------------------------------------------------------------- /docs/source/_static/img/labeled_addresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/img/labeled_addresses.png -------------------------------------------------------------------------------- /docs/source/_static/logos/deepparse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/deepparse.png -------------------------------------------------------------------------------- /docs/source/_static/logos/facebook_cover_photo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/facebook_cover_photo_1.png -------------------------------------------------------------------------------- /docs/source/_static/logos/facebook_cover_photo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/facebook_cover_photo_2.png -------------------------------------------------------------------------------- /docs/source/_static/logos/facebook_profile_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/facebook_profile_image.png -------------------------------------------------------------------------------- /docs/source/_static/logos/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/favicon.png -------------------------------------------------------------------------------- /docs/source/_static/logos/instagram_profile_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/instagram_profile_image.png -------------------------------------------------------------------------------- /docs/source/_static/logos/linkedin_banner_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/linkedin_banner_image_1.png -------------------------------------------------------------------------------- /docs/source/_static/logos/linkedin_banner_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/linkedin_banner_image_2.png -------------------------------------------------------------------------------- /docs/source/_static/logos/linkedin_profile_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/linkedin_profile_image.png -------------------------------------------------------------------------------- /docs/source/_static/logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/logo.png -------------------------------------------------------------------------------- /docs/source/_static/logos/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/logo_transparent.png -------------------------------------------------------------------------------- /docs/source/_static/logos/pinterest_board_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/pinterest_board_photo.png -------------------------------------------------------------------------------- /docs/source/_static/logos/pinterest_profile_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/pinterest_profile_image.png -------------------------------------------------------------------------------- /docs/source/_static/logos/twitter_header_photo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/twitter_header_photo_1.png -------------------------------------------------------------------------------- /docs/source/_static/logos/twitter_header_photo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/twitter_header_photo_2.png -------------------------------------------------------------------------------- /docs/source/_static/logos/twitter_profile_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/twitter_profile_image.png -------------------------------------------------------------------------------- /docs/source/_static/logos/youtube_profile_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/_static/logos/youtube_profile_image.png -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/cli.rst -------------------------------------------------------------------------------- /docs/source/comparer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/comparer.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/dataset_container.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/dataset_container.rst -------------------------------------------------------------------------------- /docs/source/examples/fine_tuning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/examples/fine_tuning.rst -------------------------------------------------------------------------------- /docs/source/examples/fine_tuning_uri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/examples/fine_tuning_uri.rst -------------------------------------------------------------------------------- /docs/source/examples/fine_tuning_with_csv_dataset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/examples/fine_tuning_with_csv_dataset.rst -------------------------------------------------------------------------------- /docs/source/examples/parse_addresses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/examples/parse_addresses.rst -------------------------------------------------------------------------------- /docs/source/examples/parse_addresses_uri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/examples/parse_addresses_uri.rst -------------------------------------------------------------------------------- /docs/source/examples/parse_addresses_with_cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/examples/parse_addresses_with_cli.rst -------------------------------------------------------------------------------- /docs/source/examples/retrain_attention_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/examples/retrain_attention_model.rst -------------------------------------------------------------------------------- /docs/source/examples/retrain_with_new_prediction_tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/examples/retrain_with_new_prediction_tags.rst -------------------------------------------------------------------------------- /docs/source/examples/retrain_with_new_seq2seq_params.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/examples/retrain_with_new_seq2seq_params.rst -------------------------------------------------------------------------------- /docs/source/examples/retrained_model_parsing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/examples/retrained_model_parsing.rst -------------------------------------------------------------------------------- /docs/source/examples/single_country_retrain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/examples/single_country_retrain.rst -------------------------------------------------------------------------------- /docs/source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/favicon.ico -------------------------------------------------------------------------------- /docs/source/get_started/get_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/get_started/get_started.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/install/installation.rst -------------------------------------------------------------------------------- /docs/source/install/quick-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/install/quick-start.html -------------------------------------------------------------------------------- /docs/source/parser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/parser.rst -------------------------------------------------------------------------------- /docs/source/pre_processor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/pre_processor.rst -------------------------------------------------------------------------------- /docs/source/training_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/docs/source/training_guide.rst -------------------------------------------------------------------------------- /examples/fine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/examples/fine_tuning.py -------------------------------------------------------------------------------- /examples/fine_tuning_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/examples/fine_tuning_uri.py -------------------------------------------------------------------------------- /examples/fine_tuning_with_csv_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/examples/fine_tuning_with_csv_dataset.py -------------------------------------------------------------------------------- /examples/parse_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/examples/parse_addresses.py -------------------------------------------------------------------------------- /examples/parse_addresses_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/examples/parse_addresses_uri.py -------------------------------------------------------------------------------- /examples/retrain_attention_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/examples/retrain_attention_model.py -------------------------------------------------------------------------------- /examples/retrain_with_new_prediction_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/examples/retrain_with_new_prediction_tags.py -------------------------------------------------------------------------------- /examples/retrain_with_new_seq2seq_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/examples/retrain_with_new_seq2seq_params.py -------------------------------------------------------------------------------- /examples/retrained_model_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/examples/retrained_model_parsing.py -------------------------------------------------------------------------------- /examples/single_country_retrain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/examples/single_country_retrain.ipynb -------------------------------------------------------------------------------- /models_evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models_evaluation/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/convert.py -------------------------------------------------------------------------------- /models_evaluation/evaluate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/evaluate_model.py -------------------------------------------------------------------------------- /models_evaluation/evaluation_requirements.txt: -------------------------------------------------------------------------------- 1 | pycountry 2 | pandas 3 | tabulate 4 | memory_profiler -------------------------------------------------------------------------------- /models_evaluation/generate_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/generate_tables.py -------------------------------------------------------------------------------- /models_evaluation/results/actual/training_incomplete_test_results_bpemb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/actual/training_incomplete_test_results_bpemb.json -------------------------------------------------------------------------------- /models_evaluation/results/actual/training_incomplete_test_results_fasttext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/actual/training_incomplete_test_results_fasttext.json -------------------------------------------------------------------------------- /models_evaluation/results/actual/training_test_results_bpemb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/actual/training_test_results_bpemb.json -------------------------------------------------------------------------------- /models_evaluation/results/actual/training_test_results_fasttext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/actual/training_test_results_fasttext.json -------------------------------------------------------------------------------- /models_evaluation/results/actual/zero_shot_test_results_bpemb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/actual/zero_shot_test_results_bpemb.json -------------------------------------------------------------------------------- /models_evaluation/results/actual/zero_shot_test_results_bpemb_attention.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/actual/zero_shot_test_results_bpemb_attention.json -------------------------------------------------------------------------------- /models_evaluation/results/actual/zero_shot_test_results_fasttext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/actual/zero_shot_test_results_fasttext.json -------------------------------------------------------------------------------- /models_evaluation/results/actual/zero_shot_test_results_fasttext_attention.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/actual/zero_shot_test_results_fasttext_attention.json -------------------------------------------------------------------------------- /models_evaluation/results/results/speed_test_results/speed_test_results_on_0_with_bpemb_attention-False.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/results/speed_test_results/speed_test_results_on_0_with_bpemb_attention-False.txt -------------------------------------------------------------------------------- /models_evaluation/results/results/speed_test_results/speed_test_results_on_0_with_bpemb_attention-True.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/results/speed_test_results/speed_test_results_on_0_with_bpemb_attention-True.txt -------------------------------------------------------------------------------- /models_evaluation/results/results/speed_test_results/speed_test_results_on_0_with_fasttext_attention-False.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/results/speed_test_results/speed_test_results_on_0_with_fasttext_attention-False.txt -------------------------------------------------------------------------------- /models_evaluation/results/results/speed_test_results/speed_test_results_on_0_with_fasttext_attention-True.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/results/speed_test_results/speed_test_results_on_0_with_fasttext_attention-True.txt -------------------------------------------------------------------------------- /models_evaluation/results/results/speed_test_results/speed_test_results_on_cpu_with_bpemb_attention-False.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/results/speed_test_results/speed_test_results_on_cpu_with_bpemb_attention-False.txt -------------------------------------------------------------------------------- /models_evaluation/results/results/speed_test_results/speed_test_results_on_cpu_with_bpemb_attention-True.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/results/speed_test_results/speed_test_results_on_cpu_with_bpemb_attention-True.txt -------------------------------------------------------------------------------- /models_evaluation/results/results/speed_test_results/speed_test_results_on_cpu_with_fasttext_attention-False.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/results/speed_test_results/speed_test_results_on_cpu_with_fasttext_attention-False.txt -------------------------------------------------------------------------------- /models_evaluation/results/results/speed_test_results/speed_test_results_on_cpu_with_fasttext_attention-True.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/results/speed_test_results/speed_test_results_on_cpu_with_fasttext_attention-True.txt -------------------------------------------------------------------------------- /models_evaluation/results/speed_test_results/speed_test_results_on_0_with_bpemb_attention-False.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/speed_test_results/speed_test_results_on_0_with_bpemb_attention-False.txt -------------------------------------------------------------------------------- /models_evaluation/results/speed_test_results/speed_test_results_on_0_with_bpemb_attention-True.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/speed_test_results/speed_test_results_on_0_with_bpemb_attention-True.txt -------------------------------------------------------------------------------- /models_evaluation/results/speed_test_results/speed_test_results_on_0_with_fasttext_attention-False.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/speed_test_results/speed_test_results_on_0_with_fasttext_attention-False.txt -------------------------------------------------------------------------------- /models_evaluation/results/speed_test_results/speed_test_results_on_0_with_fasttext_attention-True.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/speed_test_results/speed_test_results_on_0_with_fasttext_attention-True.txt -------------------------------------------------------------------------------- /models_evaluation/results/speed_test_results/speed_test_results_on_cpu_with_bpemb_attention-False.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/speed_test_results/speed_test_results_on_cpu_with_bpemb_attention-False.txt -------------------------------------------------------------------------------- /models_evaluation/results/speed_test_results/speed_test_results_on_cpu_with_bpemb_attention-True.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/speed_test_results/speed_test_results_on_cpu_with_bpemb_attention-True.txt -------------------------------------------------------------------------------- /models_evaluation/results/speed_test_results/speed_test_results_on_cpu_with_fasttext_attention-False.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/speed_test_results/speed_test_results_on_cpu_with_fasttext_attention-False.txt -------------------------------------------------------------------------------- /models_evaluation/results/speed_test_results/speed_test_results_on_cpu_with_fasttext_attention-True.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/results/speed_test_results/speed_test_results_on_cpu_with_fasttext_attention-True.txt -------------------------------------------------------------------------------- /models_evaluation/speed_test_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/speed_test_evaluation.py -------------------------------------------------------------------------------- /models_evaluation/speed_test_evaluation_libpostal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/speed_test_evaluation_libpostal.py -------------------------------------------------------------------------------- /models_evaluation/tables/actual/training_incomplete_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/tables/actual/training_incomplete_table.md -------------------------------------------------------------------------------- /models_evaluation/tables/actual/training_incomplete_table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/tables/actual/training_incomplete_table.rst -------------------------------------------------------------------------------- /models_evaluation/tables/actual/training_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/tables/actual/training_table.md -------------------------------------------------------------------------------- /models_evaluation/tables/actual/training_table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/tables/actual/training_table.rst -------------------------------------------------------------------------------- /models_evaluation/tables/actual/zero_shot_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/tables/actual/zero_shot_table.md -------------------------------------------------------------------------------- /models_evaluation/tables/actual/zero_shot_table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/tables/actual/zero_shot_table.rst -------------------------------------------------------------------------------- /models_evaluation/tables/comparison/fasttext_256.json_vs_fasttext_512.json_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/tables/comparison/fasttext_256.json_vs_fasttext_512.json_table.md -------------------------------------------------------------------------------- /models_evaluation/timer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models_evaluation/timer/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/timer/timer.py -------------------------------------------------------------------------------- /models_evaluation/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/models_evaluation/tools.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_tests_python_envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/run_tests_python_envs.sh -------------------------------------------------------------------------------- /settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/settings/settings.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/setup.py -------------------------------------------------------------------------------- /styling_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/styling_requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/app/test_app.py -------------------------------------------------------------------------------- /tests/base_capture_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/base_capture_output.py -------------------------------------------------------------------------------- /tests/base_file_exist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/base_file_exist.py -------------------------------------------------------------------------------- /tests/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/cli/base.py -------------------------------------------------------------------------------- /tests/cli/test_download_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/cli/test_download_model.py -------------------------------------------------------------------------------- /tests/cli/test_download_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/cli/test_download_models.py -------------------------------------------------------------------------------- /tests/cli/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/cli/test_parse.py -------------------------------------------------------------------------------- /tests/cli/test_retrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/cli/test_retrain.py -------------------------------------------------------------------------------- /tests/cli/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/cli/test_testing.py -------------------------------------------------------------------------------- /tests/cli/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/cli/test_tools.py -------------------------------------------------------------------------------- /tests/comparer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/comparer/test_addresses_comparer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/comparer/test_addresses_comparer.py -------------------------------------------------------------------------------- /tests/comparer/test_formatted_compared_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/comparer/test_formatted_compared_addresses.py -------------------------------------------------------------------------------- /tests/comparer/test_formatted_compared_addresses_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/comparer/test_formatted_compared_addresses_raw.py -------------------------------------------------------------------------------- /tests/comparer/test_formatted_compared_addresses_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/comparer/test_formatted_compared_addresses_tags.py -------------------------------------------------------------------------------- /tests/converter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/converter/test_data_padder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/converter/test_data_padder.py -------------------------------------------------------------------------------- /tests/converter/test_data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/converter/test_data_processor.py -------------------------------------------------------------------------------- /tests/converter/test_data_processor_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/converter/test_data_processor_factory.py -------------------------------------------------------------------------------- /tests/converter/test_target_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/converter/test_target_converter.py -------------------------------------------------------------------------------- /tests/data_validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data_validation/test_data_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/data_validation/test_data_validation.py -------------------------------------------------------------------------------- /tests/dataset_container/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dataset_container/test_dataset_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/dataset_container/test_dataset_container.py -------------------------------------------------------------------------------- /tests/dataset_container/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/dataset_container/test_tools.py -------------------------------------------------------------------------------- /tests/embeddings_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/embeddings_models/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/embeddings_models/integration/test_integration_bpemb_embeddings_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/embeddings_models/integration/test_integration_bpemb_embeddings_model.py -------------------------------------------------------------------------------- /tests/embeddings_models/integration/test_integration_fasttext_embeddings_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/embeddings_models/integration/test_integration_fasttext_embeddings_model.py -------------------------------------------------------------------------------- /tests/embeddings_models/integration/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/embeddings_models/integration/tools.py -------------------------------------------------------------------------------- /tests/embeddings_models/test_bpemb_embeddings_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/embeddings_models/test_bpemb_embeddings_model.py -------------------------------------------------------------------------------- /tests/embeddings_models/test_embeddings_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/embeddings_models/test_embeddings_model.py -------------------------------------------------------------------------------- /tests/embeddings_models/test_embeddings_model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/embeddings_models/test_embeddings_model_factory.py -------------------------------------------------------------------------------- /tests/embeddings_models/test_fasttext_embeddings_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/embeddings_models/test_fasttext_embeddings_model.py -------------------------------------------------------------------------------- /tests/embeddings_models/test_magnitude_embeddings_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/embeddings_models/test_magnitude_embeddings_model.py -------------------------------------------------------------------------------- /tests/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/metrics/test_accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/metrics/test_accuracy.py -------------------------------------------------------------------------------- /tests/metrics/test_nll_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/metrics/test_nll_loss.py -------------------------------------------------------------------------------- /tests/models_evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models_evaluation/test_tools_models_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/models_evaluation/test_tools_models_evaluation.py -------------------------------------------------------------------------------- /tests/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/network/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/base.py -------------------------------------------------------------------------------- /tests/network/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/network/integration/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/integration/base.py -------------------------------------------------------------------------------- /tests/network/integration/test_integration_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/integration/test_integration_decoder.py -------------------------------------------------------------------------------- /tests/network/integration/test_integration_embedding_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/integration/test_integration_embedding_network.py -------------------------------------------------------------------------------- /tests/network/integration/test_integration_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/integration/test_integration_encoder.py -------------------------------------------------------------------------------- /tests/network/integration/test_integration_seq2seq_bpemb_model_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/integration/test_integration_seq2seq_bpemb_model_cpu.py -------------------------------------------------------------------------------- /tests/network/integration/test_integration_seq2seq_bpemb_model_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/integration/test_integration_seq2seq_bpemb_model_gpu.py -------------------------------------------------------------------------------- /tests/network/integration/test_integration_seq2seq_fasttext_model_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/integration/test_integration_seq2seq_fasttext_model_cpu.py -------------------------------------------------------------------------------- /tests/network/integration/test_integration_seq2seq_fasttext_model_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/integration/test_integration_seq2seq_fasttext_model_gpu.py -------------------------------------------------------------------------------- /tests/network/integration/test_integration_seq2seq_model_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/integration/test_integration_seq2seq_model_cpu.py -------------------------------------------------------------------------------- /tests/network/integration/test_integration_seq2seq_model_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/integration/test_integration_seq2seq_model_gpu.py -------------------------------------------------------------------------------- /tests/network/test_bpemb_seq2seq_model_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/test_bpemb_seq2seq_model_cpu.py -------------------------------------------------------------------------------- /tests/network/test_bpemb_seq2seq_model_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/test_bpemb_seq2seq_model_gpu.py -------------------------------------------------------------------------------- /tests/network/test_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/test_decoder.py -------------------------------------------------------------------------------- /tests/network/test_embedding_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/test_embedding_network.py -------------------------------------------------------------------------------- /tests/network/test_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/test_encoder.py -------------------------------------------------------------------------------- /tests/network/test_fasttext_seq2seq_model_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/test_fasttext_seq2seq_model_cpu.py -------------------------------------------------------------------------------- /tests/network/test_fasttext_seq2seq_model_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/test_fasttext_seq2seq_model_gpu.py -------------------------------------------------------------------------------- /tests/network/test_model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/test_model_factory.py -------------------------------------------------------------------------------- /tests/network/test_seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/network/test_seq2seq.py -------------------------------------------------------------------------------- /tests/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/parser/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/base.py -------------------------------------------------------------------------------- /tests/parser/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/parser/integration/base_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/base_predict.py -------------------------------------------------------------------------------- /tests/parser/integration/base_retrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/base_retrain.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_cpu.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_gpu.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_new_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_new_params.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_new_params_new_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_new_params_new_tags.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_retrain_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_retrain_api.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_retrain_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_retrain_cpu.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_retrain_freeze_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_retrain_freeze_layers.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_retrain_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_retrain_gpu.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_retrain_new_address_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_retrain_new_address_components.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_test_api.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_test_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_test_cpu.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_address_parser_test_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_address_parser_test_gpu.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_reload_retrain_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_reload_retrain_parser.py -------------------------------------------------------------------------------- /tests/parser/integration/test_integration_retrain_test_api_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/integration/test_integration_retrain_test_api_integration.py -------------------------------------------------------------------------------- /tests/parser/test_address_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/test_address_parser.py -------------------------------------------------------------------------------- /tests/parser/test_address_parser_retrain_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/test_address_parser_retrain_api.py -------------------------------------------------------------------------------- /tests/parser/test_address_parser_test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/test_address_parser_test_api.py -------------------------------------------------------------------------------- /tests/parser/test_formatted_parsed_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/test_formatted_parsed_address.py -------------------------------------------------------------------------------- /tests/parser/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/test_tools.py -------------------------------------------------------------------------------- /tests/parser/test_user_fromatted_parsed_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/parser/test_user_fromatted_parsed_address.py -------------------------------------------------------------------------------- /tests/pre_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pre_processing/test_address_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/pre_processing/test_address_cleaner.py -------------------------------------------------------------------------------- /tests/pre_processing/test_pre_processor_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/pre_processing/test_pre_processor_list.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_download_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/test_download_tools.py -------------------------------------------------------------------------------- /tests/test_integration_fasttext_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/test_integration_fasttext_tools.py -------------------------------------------------------------------------------- /tests/test_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/test_validations.py -------------------------------------------------------------------------------- /tests/test_weights_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/test_weights_tools.py -------------------------------------------------------------------------------- /tests/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/tools.py -------------------------------------------------------------------------------- /tests/vectorizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/vectorizer/test_bpemb_vectorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/vectorizer/test_bpemb_vectorizer.py -------------------------------------------------------------------------------- /tests/vectorizer/test_fasttext_vectorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/vectorizer/test_fasttext_vectorizer.py -------------------------------------------------------------------------------- /tests/vectorizer/test_magnitude_vectorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/vectorizer/test_magnitude_vectorizer.py -------------------------------------------------------------------------------- /tests/vectorizer/test_vectorizer_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRAAL-Research/deepparse/HEAD/tests/vectorizer/test_vectorizer_factory.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.9.14 2 | --------------------------------------------------------------------------------