I updated my package autolike today using the following steps:
- Changed the version number in
setup.pyand modify package as necessary.
Assuming you’re in the root of your project directory, then run:
pip install -e .
I updated my package autolike today using the following steps:
setup.py and modify package as necessary.Assuming you’re in the root of your project directory, then run:
pip install -e .
| import argparse | |
| import psutil | |
| import tensorflow as tf | |
| from typing import Dict, Any, Callable, Tuple | |
| ## Data Input Function | |
| def data_input_fn(data_param, | |
| batch_size:int=None, | |
| shuffle=False) -> Callable[[], Tuple]: | |
| """Return the input function to get the test data. |