You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a simple question related to the offline tent experiment.
What should I change if I want to get results of the offline tent (ex, Table 2)?
Should I change _C.MODEL.EPISODIC = True
# By default tent is online, with updates persisting across batches.
# To make adaptation episodic, and reset the model for each batch, choose True.
_C.MODEL.EPISODIC=False
Termination For online adaptation, no termination is necessary, and iteration continues as long as
there is test data. For offline adaptation, the model is first updated and then inference is repeated.
Adaptation may of course continue by updating for multiple epochs.
The text was updated successfully, but these errors were encountered:
I have a simple question related to the offline tent experiment. What should I change if I want to get results of the offline tent (ex, Table 2)? Should I change _C.MODEL.EPISODIC = True
# By default tent is online, with updates persisting across batches.
# To make adaptation episodic, and reset the model for each batch, choose True.
_C.MODEL.EPISODIC=False
Termination For online adaptation, no termination is necessary, and iteration continues as long as
there is test data. For offline adaptation, the model is first updated and then inference is repeated.
Adaptation may of course continue by updating for multiple epochs.
I think we need to set _C.MODEL.EPISODIC = False and update evaluation function.
I have a simple question related to the offline tent experiment.
What should I change if I want to get results of the offline tent (ex, Table 2)?
Should I change
_C.MODEL.EPISODIC = True
tent/conf.py
Lines 37 to 39 in e9e926a
The text was updated successfully, but these errors were encountered: