bdzyubak / tensorflow-sandbox

A repository for studying applications of Deep Learning across fields, and demonstrating samples of my code and project managment
0 stars 0 forks source link

Minimize number of user-exposed functions in data fetcher and model initilizer #14

Open bdzyubak opened 2 years ago

bdzyubak commented 2 years ago

Currently, the user can access any function in the data fetcher and model initialize modules. This could lead to unintended effects when functions that are too deep are used, or functions are called out of order. Look over all functions in these modules, and ensure only safe to use ones are exposed.