Metadata-Version: 2.1
Name: seadiver
Version: 0.1.9
Summary: A DeepLearning Framework
Home-page: https://github.com/kjchung495/seadiver
Author: KJ Chung
Author-email: kjchung495@yonsei.ac.kr
License: Apache Software License 2.0
Description: "seadiver" is a Python based DeepLearning Framework which maximized its accessibility for DL beginners.
        
        You can start by creating a model in any desired structure with only 3 required arguments.
        Easily train, predict and visualize your model. 
        
        "seadiver" supports 'export' and 'import' function in 'json' format.
        pip install is available >> "pip install seadiver"
        
        Simple example for usage is like below.
        =======================================================================
        import seadiver
        
        #build a model
        model = seadiver.model.ANN(input_shape=(1, 784), structure = (100, 100, 100, 10), output="softmax")
        model.describe()  #prints how the model looks
        
        #train
        model.train(y= TRAIN_BATCH, t= ANSWER_BATCH, learning_rate=0.001, iteration=1000)
        
        #predict
        model.predict(x = INPUT)
        
        #export model as a 'json' file to a local directory
        model.export(directory = "C:\Users....\", file_name="myModel.json")
        
        #import model from a local directory
        imported_model = seadiver.factory.make(file = "C:\Users.....\myModel.json")
        
        =======================================================================
        
        Updates on more types of model such as 'CNN', 'LSTM' is underway.
        Thanks, and please contact the author via e-mail for any comment.
        
Keywords: ANN,Artifictial Neural Network,DeepLearning
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
