Metadata-Version: 2.1
Name: flowsy
Version: 0.0.3
Summary: A simple way to get recommendations
Home-page: https://github.com/daniel-riffi/flowsy/tree/master/
Author: Daniel Riffert
Author-email: riffert.daniel@gmail.com
License: Apache Software License 2.0
Description: # Welcome to flowsy
        > A simple way to get recommendations.
        
        
        This file will become your README and also the index of your documentation.
        
        ## Install
        
        `pip install flowsy`
        
        ## How to use
        
        If you want to say hello to someone you can use this method
        
        ```python
        say_hello("Daniel")
        ```
        
        
        
        
            'Hello Daniel!'
        
        
        
        ```python
        path_models = Path("D:/schule/diplomarbeit/models")
        
        save = pathlib.PosixPath
        pathlib.PosixPath = pathlib.WindowsPath   
        playlist_learner = load_learner(path_models/'playlists_tracks_br_model_v1.pkl')
        pathlib.PosixPath = save
        ```
        
        ```python
        rec = Recommender(playlist_learner)
        ```
        
        ```python
        rec.test()
        ```
        
        
        
        
            Parameter containing:
            tensor([[-2.8815e-04, -4.7748e-03,  8.4791e-04,  ...,  9.2985e-04,
                      3.9106e-03,  1.7048e-03],
                    [-2.9935e-01, -2.4075e-01,  1.0022e-01,  ...,  1.9980e-01,
                      1.3271e-01,  2.5945e-01],
                    [-3.5620e-01, -1.9528e-01,  1.6224e-01,  ...,  2.1280e-01,
                      1.5875e-01,  3.3841e-01],
                    ...,
                    [-3.0123e-01, -1.9942e-01,  2.9455e-01,  ...,  2.9243e-01,
                      2.8433e-01,  1.4368e-01],
                    [-1.1953e-01,  1.1806e-01,  1.8228e-01,  ..., -1.1979e-01,
                     -1.9541e-01, -9.3565e-02],
                    [-1.0212e-01,  2.3557e-01,  2.4115e-01,  ..., -2.0023e-01,
                     -2.5552e-01, -1.9018e-01]], requires_grad=True)
        
        
        
Keywords: fast.ai nbdev
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
