Metadata-Version: 2.1
Name: servefastai
Version: 0.1.2
Summary: Serve FastAI and get a Web UI with one line of code
Home-page: https://github.com/aakashns/servefastai
Author: Aakash N S
Author-email: opensource@swiftace.ai
License: UNKNOWN
Description: # servefastai
        
        Serve FastAI models and get a web-based UI to test them out with a single line of code.
        
        ![screenshot](https://i.imgur.com/TzZQZUs.jpg)
        
        ## Installation
        
        Install with `pip`. Make sure you have `fastai` already installed.
        
        ```
        pip install servefastai --upgrade
        ```
        
        ## Usage
        
        ```
        from servefastai import serve
        serve(learn)
        ```
        
        `learn` should be a FastAI learner object. Navigate to http://PUBLIC_IP:9999 , where `PUBLIC_IP` is the public IP address of the machine running the Jupyter notebook. You will see a form where you can upload one or more images. Upload the images and click submit to view the predictions.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
