Skip to content

Commit

Permalink
Improved package structure
Browse files Browse the repository at this point in the history
  • Loading branch information
wzwietering committed Feb 27, 2020
1 parent 42bd69f commit 58accbe
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Currently the code supports the following parameters:
Creating machine learning models in Keras is quite easy, but I think it can be easier. Editing layers, adding layers, removing layers, it all requires coding. Coding takes time, and code has to be debugged. That is why I created this tool, were the structure of a machine learning model is merely configuration, a set of variables in a file. It also makes it easier to create machine learning models from other code, and to use libraries different than Keras if wanted.

## But Keras has a model format already
Yes, and you can do more with it than with this tool. The API of this tool is more important than the json format, which is still a reason to create this tool.
Yes, and you can do more with it than with this tool. The API of this tool is more important than the json format, which is still a reason to create this tool. The ModelBuilder also tries to help you, making the creation of models easier. Input, Activation and Reshape layers are automatically created where necessary.

## Requirements
* Python >= 3.6
Expand Down
5 changes: 5 additions & 0 deletions model_builder/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from model_builder.model_builder import ModelBuilder
from model_builder import model_analyzer
from model_builder import model_parser
from model_builder.model_serializer import ModelSerializer
from model_builder.model import Model
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='model_builder',
version='0.1.0',
version='0.1.1',
author="Wilmer Zwietering",
author_email="[email protected]",
description="Easily build Keras models from code or from a configuration file",
Expand Down

0 comments on commit 58accbe

Please sign in to comment.