Metadata-Version: 2.1
Name: geotime-classify
Version: 0.7.8
Summary: Categorizes spatial and temporal columns for csv files. Standardizes date columns for transformations
Home-page: https://github.com/jataware/geotime_classify
Author: Kyle Marsh
Author-email: kyle@jataware.com
License: LGPL-3.0-or-later
Project-URL: Changelog, https://github.com/jataware/geotime_classify/blob/master/CHANGELOG.md
Project-URL: Issue Tracker, https://github.com/jataware/geotime_classify/issues
Description: # Geotime Classify
        
        This model is a recurrent neural network that uses LSTM to learn text classification. The goal of this project was for a given spreadsheet where we expect some kind of geospatial and temporal columns, can we automatically infer things like:
        
        -   Country
        -   Admin levels (0 through 3)
        -   Timestamp (from arbitrary formats)
        -   Latitude
        -   Longitude
        -   Which column likely contains the "feature value"
        -   Which column likely contains a modifier on the  `feature`
        
         The model and transformation code can be used locally by installing the pip package or downloaded the github repo and following the directions found in /training_model/README.md.
        
        ## Pip install geotime classify
        First you need to install numpy, scipy, pandas, joblib, pip, torch and torchvision.
        
            pip install -r requirements.txt
        
          or 
        
            conda install -c conda-forge numpy
            conda install -c conda-forge scipy
            conda install -c conda-forge pandas
            conda install -c conda-forge joblib
            conda install -c conda-forge pip
            conda install pytorch torchvision cpuonly -c pytorch
            
            
            
        Now you can pip install the geotime_classify repo. To pip install this repo use:
        
            pip install geotime-classify
         
         
        Once it is installed you can instantiate the geotime_classify with the number of random samples (n) you want to take from each column of your csv. To take 100 samples from each column run. In most cases more samples of each column will result is more accurate classifications, however it will increase the time of processing. 
        
            from geotime_classify import geotime_classify as gc
            GeoTimeClass = gc.GeoTimeClassify(1000)
        
        Now we have our GeoTimeClassify class instantiated we can use the functions available. The first one and most basic is the ***predictions*** function.
        ### geotime_classify.predictions(path)
        This returns the geotime_classify model predictions for each of the columns in the csv. 
        
            predictions=GeoTimeClass.predictions('pathtocsv')
            print(predictions)
        
        You should see an array with a dict for each column. The keys in each dict are 
        1. **'column'**: which is the name of the column in the csv you provided,
        2. **'values'**: these are the random sampled values from each column that were used. There will be the same number of these as the number n you instantiated the class with.
        3. **'avg_predictions'**: an array which contains:
           
             -'averaged tensor', This is an averaged tensor created by calculating the mean from (n) prediction tensors that the model created.    
             -'averaged_top_category', Returns the category with the highest match for our averaged tensor.
        4. **'model_predictions'**: Contains the raw model outputs as prediction tensors for each value that was randomly sampled from the column. 
           
         ### geotime_classify.columns_classified(path)
          The next function is ***columns_classified***. This function returns an array that classifies each column in our csv by using a combination of the predictions from the LSTM model along with validation code for each classification. 
          
        
            c_classified=GeoTimeClass.columns_classified('pathtocsv')
            print(c_classified)
        
          Possible information returned for each column are:
          1. **'column'**:Column name in csv
          2. **'classification'**: an array with a few possible values:
        	  A. *'category'*: The final classified name for the column** most important return
        	  B. *'subcategory'*: This will be returned if there is addition sub categories for the classification. E.g. [{'Category': 'Geo', 'type': 'Latitude (number)'}]
        	  C. *'format'*: If the column is classified as a date it will give the best guess at the format for that date column. 
        	  D. *'parser'*: This lets you know what parser was used for determining if it was a valid date or not. The two options are 'Arrow' and 'Util' which represent the arrow and dateutil libraries respectively. 
        	  E. *'dayFirst'*: A boolean value. If the column is classified as a date the validation code will try to test if day or month come first in the format, which is necessary for accurate date standardization. 
              F. *'match_type'*: How the classification was made. LSTM for the model, fuzzy for fuzzywuzzy match on column headers.
        5. **'fuzzyColumn'**: This is returned if the column name is similar enough to any word in a list of interest. Shown below.
            [  
            "Date",  
            "Datetime",  
            "Timestamp",  
            "Epoch",  
            "Time",  
            "Year",  
            "Month",  
            "Lat",  
            "Latitude",  
            "lng",  
            "Longitude",  
            "Geo",  
            "Coordinates",  
            "Location",  
            "location",  
            "West",  
            "South",  
            "East",  
            "North",  
            "Country",  
            "CountryName",  
            "CC",  
            "CountryCode",  
            "State",  
            "City",  
            "Town",  
            "Region",  
            "Province",  
            "Territory",  
            "Address",  
            "ISO2",  
            "ISO3",  
            "ISO_code",  
            "Results",  
        ]
           
        For the classification data there are a set number of possible classifications after the validation code. dayFirst can be 'True' or 'False'.
        The 'format' of a date classification are created using this reference sheet: https://strftime.org/ . 
        Possible classifciation options: 
        1. "category": "None"
        2. "category": "geo", "subcategory":"continent"
        3. "category": "geo", "subcategory":"country_name"
        4. "category": "geo", "subcategory":"state_name"
        5. "category": "geo", "subcategory":"city_name"
        6. "category": "geo", "subcategory":"ISO3"
        7. "category": "geo", "subcategory":"ISO2"
        12. "category": "geo", "subcategory": "longitude"
        13. "category": "geo", "subcategory": "latitude"
        19. "category": "unknown date" , "subcategory": None
        14. "category": "time", "subcategory": "date", "format": format, "Parser": "Util",  "DayFirst": dayFirst
        14. "category": "time", "subcategory": "date", "format": format, "Parser": "arrow",  "DayFirst": dayFirst
        51. "category": "Boolean"
        
        
        ## Under the hood
        The workflow consists of four main sections. 
        1. Geotime Classify Model
        2. Heuristic Functions
        3. Column Header Fuzzy Match
        
        
        Workflow overview
        
        ![Alt text](geotime_classify/training_model/images/GeoTime_ClassifyWorkflow.png?raw=true "Workflows")
        
        
        ## Geotime Classify Model
        This model is a type recurrent neural network that uses LSTM to learn text classification. The model is trained on Fake data provided by [Faker](https://faker.readthedocs.io/en/master/). The goal was for a given spreadsheet where we expect some kind of geospatial and temporal columns, can we automatically infer things like:
        
        -   Country
        -   Admin levels (0 through 3)
        -   Timestamp (from arbitrary formats)
        -   Latitude
        -   Longitude
        -   Which column likely contains the "feature value"
        -   Which column likely contains a modifier on the  `feature`
        
        To do this, we collected example data from Faker along with additional locally generated data. The model was built using pytorch. We used padded embedding, and LSTM cell, a linear layer and finally a LogSoftmax layer. This model was trained with a dropout of .2 to reduce overfitting and improving model performance. 
        
        	    self.embedding = nn.Embedding(vocab_size, embedding_dim)
                self.lstm = nn.LSTM(embedding_dim, hidden_dim, num_layers=1)
                self.hidden2out = nn.Linear(hidden_dim, output_size)
                self.softmax = nn.LogSoftmax(dim=1)
                self.dropout_layer = nn.Dropout(p=0.2)
        After a few iterations the model was performing well enough with accuracy hovering around 91 percent with 57 categories.
        Confusion Matrix:
        
          ![Alt text](geotime_classify/training_model/images/confusionMatrix.png?raw=true "Confusion Matrix")
        
        Now the model was able to ingest a string and categorize it into one the 57 categories. 
        
        ## The Heuristic functions
        The heuristic functions ingest the prediction classifications from the model along with the original data for  validation tests. If the data passes the test associated with the classification the final classification is made and returned. If it failed it will return 'None' or 'Unknown Date' if the model classified the column as a date. If addition information is needed for future transformation of the data these functions try to capture that. For example if a column is classified as a Date the function will try validate the format and return it along with the classification.
        
        ## Column Header Fuzzy Match
        This is the most simple part of the workflow. For each column header we try to match that string to a word of interest. If there is a high match ratio the code returns the word of interest. For more info you can see Fuzzywuzzy docs [here](https://pypi.org/project/fuzzywuzzy/).
        
        
        ## Retraining geotime_classify with github repo
        To get started read the README in the training_model directory. 
        
        
Keywords: LSTM,RNN,Classification,Date,Datetime,Coordinates,Latitude,Longitude
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
