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
Is your feature request related to a problem? Please describe.
Fastbook is a bit overkill for very few features and installation is sometimes buggy on some platforms (e.g. Kaggle AFAIK)
Describe the solution you'd like
Moving similar features to unpackai package
Setting contexts (see below) => could be in unpackai/__init__.py
fromfastai.vision.allimport*# from fastai.torch_core import set_seed# import torchmpl.rcParams['savefig.dpi']=200mpl.rcParams['font.size']=12set_seed(42)
torch.backends.cudnn.deterministic=Truetorch.backends.cudnn.benchmark=Falsepd.set_option('display.max_columns',999)
np.set_printoptions(linewidth=200)
torch.set_printoptions(linewidth=200)
Is your feature request related to a problem? Please describe.
Fastbook is a bit overkill for very few features and installation is sometimes buggy on some platforms (e.g. Kaggle AFAIK)
Describe the solution you'd like
Moving similar features to
unpackai
packageunpackai/__init__.py
setup_colab
(it just mounts Google Drive in Colab) (related to issue Simplify usage of Google Drive #36)setup_book
(useless => it just setup colab if we are using Colab)gv
get_image_files_sorted
search_images_bing
(search images with Bing => we recommend DDG so don't need it)search_images_ddg
(we use another utility => don't need it)plot_function
draw_tree
cluster_columns
(dendogram)image_cat
(returnsBytesIO
object from an image of cat) => probably don't need itimage_bear
(same but for a bear) => probably don't need itHere is the part of the code copied from
__init__.py
offastbook
:The text was updated successfully, but these errors were encountered: