我正在学习ML。可以跨越这些命令
%config IPCompleter.greedy = True
%config InlineBackend.figure_format = 'retina'我可以在网上搜索到与这些相关的结果,但无法找到它的目的。如果任何人可以分享一些信息或任何关于这些的文档将是有帮助的…提前谢谢你
发布于 2020-11-05 22:37:19
从ipython内部运行%config IPCompleter可获得可用选项的列表和描述。请注意,greedy已弃用,但我在下面附加了它的描述以供参考:
IPCompleter.greedy=<Bool>
Activate greedy completion PENDING DEPRECTION. this is now mostly taken care
of with Jedi.
This will enable completion on elements of lists, results of function calls,
etc., but can be unsafe because the code is actually evaluated on TAB. https://stackoverflow.com/questions/64263620
复制相似问题