fastcore icon indicating copy to clipboard operation
fastcore copied to clipboard

Python supercharged for the fastai library

Results 55 fastcore issues
Sort by recently updated
recently updated
newest added

The PR details is discussed in this forum [thread](https://forums.fast.ai/t/nbdev-v2-launched/97821/59?u=daniel)

It would be very helpful if you could tag releases again. This would enable distributions who want to fetch the package from GitHub instead of PyPI. Tags were present in...

Using fastcore 1.5.10 I have been noticing some of my Github workflows failing with "Process completed with exit code 1" and no other error messages. After playing around it seems...

I think we need to update `Contributing` section of index page according to changes in `nbdev` update.

Adds `mkdir` function as described in discord [here](https://discord.com/channels/689892369998676007/689892370002870284/993544265093357749). I feel like my tests might be a bit convoluted? Please feel free to suggest changes :) **NOTE:** The only file I...

Scenario: You have function a, e.g: `def cnn(c_in, c_mid, c_out, act, bn=.., ..., blocks=CNNBlock): ...` and you want to add a specification for it: `def resnet(c_in, c_mid, c_out, act=relu, bn=...,...

waiting for response

My solution here is to modify `delegates` to output kwargs with `Param` type hints, thus propagating the docments through to call_parse. This solution is a tad ugly since `cast_to_call_parse=True` needs...

To support the 'val_'+kwargs here: https://github.com/fastai/fastai/issues/3133 Idea is to allow a little bit of hack-ability to `use_kwargs_dict` instead of writing special `delegates` function for my one off use case. Maybe...

Passing kwargs to each Transform in a Pipeline. This change was useful for me in a case similar to the following: ``` @Resize def decodes(self, x:Center, **kwargs)->Center: orig_size = kwargs["orig_size"]...