def create_param_widgets(self):
from ipywidgets import VBox
containers = []
if self.param_container:
self.param_container.close()
for param, value in self.params[self._method].items():
container = self.create_param_widget(param, value)
containers.append(container)
self.param_container = VBox(containers, description="Parameters")
display(self.param_container)
评论列表
文章目录