* Add project code * Logger improvements * Improvements to web demo code * added create_wlasl_landmarks_dataset.py and xtract_mediapipe_landmarks.py * Fix rotation augmentation * fixed error in docstring, and removed unnecessary replace -1 -> 0 * Readme updates * Share base notebooks * Add notebooks and unify for different datasets * requirements update * fixes * Make evaluate more deterministic * Allow training with clearml * refactor preprocessing and apply linter * Minor fixes * Minor notebook tweaks * Readme updates * Fix PR comments * Remove unneeded code * Add banner to Readme --------- Co-authored-by: Gabriel Lema <gabriel.lema@xmartlabs.com>
29 lines
622 B
Python
29 lines
622 B
Python
|
|
class Tracker:
|
|
|
|
def __init__(self, project_name, experiment_name):
|
|
super().__init__()
|
|
|
|
def execute_remotely(self, queue_name):
|
|
pass
|
|
|
|
def track_config(self, configs):
|
|
# Used to track configuration parameters of an experiment run
|
|
pass
|
|
|
|
def track_artifacts(self, filepath):
|
|
# Used to track artifacts like model weights
|
|
pass
|
|
|
|
def log_scalar_metric(self, metric, series, iteration, value):
|
|
pass
|
|
|
|
def log_chart(self, title, series, iteration, figure):
|
|
pass
|
|
|
|
def finish_run(self):
|
|
pass
|
|
|
|
def get_callback(self):
|
|
pass
|