Metadata-Version: 2.1
Name: ODENet
Version: 0.0.4
Summary: A small example package
Home-page: https://github.com/uqyge/ODENet
Author: Y.Ge
Author-email: y.ge1222@gmail.com
License: UNKNOWN
Description: # ODENet model for combustion 
        
        ODENetMoel example
        ```
        from ODENet import ODENetModel
        dim_input = x_train.shape[1]
        dim_label = y_train.shape[1]
        
        
        model = ODENetModel(
            dim_input=dim_input,
            dim_label=dim_label,
        )
        model.summary()
        
        loss_type = "mse"
        model.compile(loss=loss_type, optimizer="adam", metrics=["accuracy"])
        model.fit(x_train,y_train)
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
