Metadata-Version: 2.1
Name: annotated_dataset
Version: 0.0.4
Summary: Annotated dataset analysis
Home-page: https://github.com/pangeamt/annotated_dataset
Author: Laurent Bié
Author-email: l.bie@pangeanic.com  
License: UNKNOWN
Description: # Annotated Dataset
        
        
        ## Install
        ```BASH
        pip install annotated-dataset
        ```
        
        ## Usage
        ```
        from annotated_dataset.inception_client import InceptionClient
        from annotated_dataset.export import export
        import logging
        
        logging.basicConfig()
        logging.getLogger().setLevel(logging.INFO)
        
        
        # Create client for inception server
        inception_client = InceptionClient.create_client(
            host='https://mapa.pangeamt.com/',
            username='xxx',
            password='xxx'
        )
        
        # Config
        config = {
            'dataset_name': 'MAPA_BG',
            'inception_projects': [
                {
                    'name': 'Bulgarian_Legal_1',
                    'use_segmentation_by_newline': True,
                    'inception_client': inception_client
                },
                {
                    'name': 'Bulgarian_Legal_2',
                    'use_segmentation_by_newline': True,
                    'inception_client': inception_client
                }
            ],
            'gold_corpus_preferred_resources': ['Bulgarian_Legal_1'],
            'export_dir': './'
        }
        
        
        export(config)
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
