max tokens

~50882 tokens

├── .gitattributes
├── .gitignore
├── CODE-OF-CONDUCT.md
├── LICENSE
├── Makefile
├── README.md
├── azure-pipelines.yml
├── data
    ├── .gitignore
    ├── adult_sample.tgz
    ├── imdb_sample.tgz
    ├── mnist_sample.tgz
    └── movie_lens_sample.tgz
├── dev
    ├── .gitignore
    ├── .root
    ├── 00_test.ipynb
    ├── 01_core_foundation.ipynb
    ├── 01a_core_utils.ipynb
    ├── 01b_core_dispatch.ipynb
    ├── 01c_core_transform.ipynb
    ├── 02_core_script.ipynb
    ├── 03_torchcore.ipynb
    ├── 03a_layers.ipynb
    ├── 04_data_load.ipynb
    ├── 05_data_core.ipynb
    ├── 06_data_transforms.ipynb
    ├── 07_data_block.ipynb
    ├── 08_vision_core.ipynb
    ├── 09_vision_augment.ipynb
    ├── 09a_vision_data.ipynb
    ├── 09b_vision_utils.ipynb
    ├── 10_pets_tutorial.ipynb
    ├── 11_vision_models_xresnet.ipynb
    ├── 12_optimizer.ipynb
    ├── 13_learner.ipynb
    ├── 13a_metrics.ipynb
    ├── 14_callback_schedule.ipynb
    ├── 14a_callback_data.ipynb
    ├── 15_callback_hook.ipynb
    ├── 15a_vision_models_unet.ipynb
    ├── 16_callback_progress.ipynb
    ├── 17_callback_tracker.ipynb
    ├── 18_callback_fp16.ipynb
    ├── 19_callback_mixup.ipynb
    ├── 20_interpret.ipynb
    ├── 20a_distributed.ipynb
    ├── 21_vision_learner.ipynb
    ├── 22_tutorial_imagenette.ipynb
    ├── 23_tutorial_transfer_learning.ipynb
    ├── 30_text_core.ipynb
    ├── 31_text_data.ipynb
    ├── 32_text_models_awdlstm.ipynb
    ├── 33_text_models_core.ipynb
    ├── 34_callback_rnn.ipynb
    ├── 35_tutorial_wikitext.ipynb
    ├── 36_text_models_qrnn.ipynb
    ├── 37_text_learner.ipynb
    ├── 38_tutorial_ulmfit.ipynb
    ├── 40_tabular_core.ipynb
    ├── 41_tabular_model.ipynb
    ├── 50_data_block_examples.ipynb
    ├── 60_medical_imaging.ipynb
    ├── 65_medical_text.ipynb
    ├── 70_callback_wandb.ipynb
    ├── 71_callback_tensorboard.ipynb
    ├── 90_xse_resnext.ipynb
    ├── 95_index.ipynb
    ├── 96_data_external.ipynb
    ├── 97_utils_test.ipynb
    ├── _09a_rect_augment.ipynb
    ├── _40_tabular_core_old.ipynb
    ├── _42_tabular_rapids.ipynb
    ├── _minimal_show.ipynb
    ├── _notebook2jekyll.ipynb
    ├── _whl2conda.ipynb
    ├── config.yml
    ├── course
    │   ├── lesson1-pets.ipynb
    │   ├── lesson2-download.ipynb
    │   ├── lesson2-sgd.ipynb
    │   ├── lesson3-camvid.ipynb
    │   ├── lesson3-head-pose.ipynb
    │   ├── lesson3-imdb.ipynb
    │   └── lesson3-planet.ipynb
    ├── examples
    │   ├── camvid.ipynb
    │   ├── train_imagenette.py
    │   └── ulmfit.ipynb
    ├── fastai2
    │   ├── __init__.py
    │   ├── _nbdev.py
    │   ├── basics.py
    │   ├── callback
    │   │   ├── __init__.py
    │   │   ├── all.py
    │   │   ├── data.py
    │   │   ├── fp16.py
    │   │   ├── hook.py
    │   │   ├── mixup.py
    │   │   ├── progress.py
    │   │   ├── rnn.py
    │   │   ├── schedule.py
    │   │   ├── tensorboard.py
    │   │   ├── tracker.py
    │   │   └── wandb.py
    │   ├── core
    │   │   ├── __init__.py
    │   │   ├── all.py
    │   │   ├── dispatch.py
    │   │   ├── foundation.py
    │   │   ├── imports.py
    │   │   ├── script.py
    │   │   ├── transform.py
    │   │   └── utils.py
    │   ├── distributed.py
    │   ├── fp16_utils.py
    │   ├── interpret.py
    │   ├── launch.py
    │   ├── layers.py
    │   ├── learner.py
    │   ├── medical
    │   │   ├── __init__.py
    │   │   ├── imaging.py
    │   │   └── text.py
    │   ├── metrics.py
    │   ├── notebook
    │   │   ├── __init__.py
    │   │   ├── autogen.tpl
    │   │   ├── core.py
    │   │   ├── export.py
    │   │   ├── export2html.py
    │   │   ├── hide.tpl
    │   │   ├── index.txt
    │   │   ├── index_pytorch.txt
    │   │   ├── jekyll-md.tpl
    │   │   ├── jekyll.tpl
    │   │   ├── showdoc.py
    │   │   └── test.py
    │   ├── optimizer.py
    │   ├── tabular
    │   │   ├── __init__.py
    │   │   ├── core.py
    │   │   ├── model.py
    │   │   └── rapids.py
    │   ├── test.py
    │   ├── test_utils.py
    │   ├── text
    │   │   ├── __init__.py
    │   │   ├── all.py
    │   │   ├── core.py
    │   │   ├── data.py
    │   │   ├── learner.py
    │   │   └── models
    │   │   │   ├── __init__.py
    │   │   │   ├── awdlstm.py
    │   │   │   ├── bwd_forget_mult_cuda.cpp
    │   │   │   ├── bwd_forget_mult_cuda_kernel.cu
    │   │   │   ├── core.py
    │   │   │   ├── forget_mult_cuda.cpp
    │   │   │   ├── forget_mult_cuda_kernel.cu
    │   │   │   └── qrnn.py
    │   ├── torch_basics.py
    │   ├── torch_core.py
    │   ├── torch_imports.py
    │   ├── version.py
    │   └── vision
    │   │   ├── __init__.py
    │   │   ├── all.py
    │   │   ├── augment.py
    │   │   ├── core.py
    │   │   ├── data.py
    │   │   ├── learner.py
    │   │   ├── models
    │   │       ├── __init__.py
    │   │       ├── all.py
    │   │       ├── unet.py
    │   │       ├── xresnet.py
    │   │       └── xsenet.py
    │   │   └── utils.py
    ├── files
    │   ├── .gitignore
    │   └── test.txt.bz2
    ├── images
    │   ├── Mixed_precision.jpeg
    │   ├── half.png
    │   ├── half_representation.png
    │   ├── mnist3.png
    │   ├── pixelshuffle.png
    │   ├── puppy.jpg
    │   └── sample.dcm
    ├── posts
    │   ├── .gitignore
    │   └── 2019-08-06-delegation.ipynb
    ├── tools
    │   ├── build_docs
    │   ├── diff_nb_script
    │   ├── fastai2
    │   ├── notebook2script
    │   ├── script2notebook
    │   ├── sidebar_data.py
    │   └── test_nbs
    └── train_wt2.py
├── dev_nb
    ├── .gitattributes
    ├── .gitignore
    ├── 001a_nn_basics.ipynb
    ├── 001b_fit.ipynb
    ├── 002_images.ipynb
    ├── 002b_augment_training.ipynb
    ├── 002c_warp.ipynb
    ├── 003_rect_square_crop.ipynb
    ├── 004_callbacks.ipynb
    ├── 004a_discriminative_lr.ipynb
    ├── 004b_mixed_precision.ipynb
    ├── 005_dogs_cats.ipynb
    ├── 005a_interpretation.ipynb
    ├── 005b_planet.ipynb
    ├── 006_carvana.ipynb
    ├── 006a_unet.ipynb
    ├── 006b_pascal.ipynb
    ├── 006c_camvid.ipynb
    ├── 007_wikitext_2.ipynb
    ├── 007a_imdb_preparation.ipynb
    ├── 007b_imdb_classifier.ipynb
    ├── 008_movie_lens.ipynb
    ├── 009_rossmann.ipynb
    ├── 099_tfm_coords.ipynb
    ├── 100_add_metrics.ipynb
    ├── 101_devise.ipynb
    ├── 102a_coco.ipynb
    ├── 103_wgan.ipynb
    ├── 103_wganF.ipynb
    ├── 104_data_block_API.ipynb
    ├── 104a_camvid.ipynb
    ├── 104b_pets_planets.ipynb
    ├── 104c_single_image_pred.ipynb
    ├── 104d_show_batch.ipynb
    ├── 105_refactor_text_data.ipynb
    ├── 106_cyclegan.ipynb
    ├── 110_transformer_pretrained.ipynb
    ├── 200_datablock_config.ipynb
    ├── 200_datablock_config_jh.ipynb
    ├── 201_batch_transform.ipynb
    ├── 202_tokenizing.ipynb
    ├── 202a_tokenize_benchmark.ipynb
    ├── BugAD.ipynb
    ├── Loss_func2Activ.ipynb
    ├── autoreload
    │   ├── any-module-fail.ipynb
    │   └── fastai-fail.ipynb
    ├── discriminator-digit.ipynb
    ├── discriminator-exp.ipynb
    ├── discriminator.ipynb
    ├── discriminator1.ipynb
    ├── dogscats.py
    ├── enhance-wsdr.ipynb
    ├── enhance.ipynb
    ├── exp
    ├── experiments
    │   ├── .gitattributes
    │   ├── Caltech101bug.ipynb
    │   ├── README.md
    │   ├── build_imgnet_local_small.ipynb
    │   ├── caltech101.ipynb
    │   ├── check_classifier.ipynb
    │   ├── cifar10_comparison_pipelines.ipynb
    │   ├── cifar_check.ipynb
    │   ├── comp_gs_numpy_torch.ipynb
    │   ├── dogs_cats.ipynb
    │   ├── imdb_classification.ipynb
    │   ├── keras_lesson1.ipynb
    │   ├── lm_checks.ipynb
    │   ├── pipelines_speed_comp.ipynb
    │   ├── random_resize_crop.ipynb
    │   ├── rossmann.ipynb
    │   ├── tfm_refactor.ipynb
    │   └── wikitext103-qrnn.ipynb
    ├── forget_mult.py
    ├── get_all.ipynb
    ├── imagenette.ipynb
    ├── imgs
    │   ├── clusters.png
    │   └── devise_arch.png
    ├── lesson7-wgan.ipynb
    ├── mem_leaks
    │   ├── .gitattributes
    │   ├── OOM_on_fit_recover.ipynb
    │   ├── locals_leak_on_exc.ipynb
    │   ├── vision_basic_train.ipynb
    │   └── vision_basic_train_peak.ipynb
    ├── mnist_sample.ipynb
    ├── mnist_sample.py
    ├── models.py
    ├── nb_001a.py
    ├── nb_001b.py
    ├── nb_002.py
    ├── nb_002b.py
    ├── nb_002c.py
    ├── nb_003.py
    ├── nb_004.py
    ├── nb_004a.py
    ├── nb_004b.py
    ├── nb_005.py
    ├── nb_005a.py
    ├── nb_005b.py
    ├── nb_006.py
    ├── nb_006a.py
    ├── nb_006b.py
    ├── nb_007.py
    ├── nb_007a.py
    ├── nb_007b.py
    ├── nb_008.py
    ├── nb_009.py
    ├── nb_102a.py
    ├── nb_104.py
    ├── nb_104a.py
    ├── nb_104b.py
    ├── nb_200.py
    ├── new_callbacks.ipynb
    ├── notebook2script.py
    ├── qrnn.py
    ├── snapshot
    │   ├── .gitattributes
    │   ├── 001a_nn_basics.ipynb
    │   ├── 002_images.ipynb
    │   ├── 005_dogs_cats.ipynb
    │   ├── 006_carvana.ipynb
    │   ├── 006c_camvid.ipynb
    │   ├── 007b_imdb_classifier.ipynb
    │   ├── README.md
    │   ├── cifar_check.ipynb
    │   ├── mnist_sample.ipynb
    │   └── stl-10.ipynb
    ├── stl-10.ipynb
    ├── translation_pretrained.ipynb
    ├── wikitext_103.ipynb
    ├── x_003a_rect_images.ipynb
    ├── x_003b_rect_training.ipynb
    ├── x_003c_random_resized_crop.ipynb
    ├── x_004b_implement_fast_progress.ipynb
    ├── x_006d_imgnet.ipynb
    └── x_alternative_progress_bar.ipynb
├── docs
    ├── .gitignore
    ├── Gemfile
    ├── Gemfile.lock
    ├── _config.yml
    ├── _data
    │   ├── alerts.yml
    │   ├── definitions.yml
    │   ├── glossary.yml
    │   ├── sidebars
    │   │   └── home_sidebar.yml
    │   ├── tags.yml
    │   ├── terms.yml
    │   └── topnav.yml
    ├── _includes
    │   ├── archive.html
    │   ├── callout.html
    │   ├── footer.html
    │   ├── google_analytics.html
    │   ├── head.html
    │   ├── head_print.html
    │   ├── image.html
    │   ├── important.html
    │   ├── initialize_shuffle.html
    │   ├── inline_image.html
    │   ├── links.html
    │   ├── note.html
    │   ├── search_google_custom.html
    │   ├── search_simple_jekyll.html
    │   ├── sidebar.html
    │   ├── tip.html
    │   ├── toc.html
    │   ├── topnav.html
    │   └── warning.html
    ├── _layouts
    │   ├── default.html
    │   ├── default_print.html
    │   ├── none.html
    │   ├── page.html
    │   └── page_print.html
    ├── augmentation.html
    ├── callback.data.html
    ├── callback.fp16.html
    ├── callback.hook.html
    ├── callback.mixup.html
    ├── callback.progress.html
    ├── callback.rnn.html
    ├── callback.schedule.html
    ├── callback.tensorboard.html
    ├── callback.tracker.html
    ├── callback.wandb.html
    ├── core.dispatch.html
    ├── core.foundation.html
    ├── core.script.html
    ├── core.transform.html
    ├── core.utils.html
    ├── css
    │   ├── bootstrap.min.css
    │   ├── boxshadowproperties.css
    │   ├── customstyles.css
    │   ├── font-awesome.min.css
    │   ├── fonts
    │   │   ├── FontAwesome.otf
    │   │   ├── fontawesome-webfont.eot
    │   │   ├── fontawesome-webfont.svg
    │   │   ├── fontawesome-webfont.ttf
    │   │   ├── fontawesome-webfont.woff
    │   │   └── fontawesome-webfont.woff2
    │   ├── modern-business.css
    │   ├── printstyles.css
    │   ├── syntax.css
    │   ├── theme-blue.css
    │   └── theme-green.css
    ├── data.block.examples.html
    ├── data.block.html
    ├── data.core.html
    ├── data.external.html
    ├── data.load.html
    ├── data.transforms.html
    ├── distributed.html
    ├── feed.xml
    ├── fonts
    │   ├── FontAwesome.otf
    │   ├── fontawesome-webfont.eot
    │   ├── fontawesome-webfont.svg
    │   ├── fontawesome-webfont.ttf
    │   ├── fontawesome-webfont.woff
    │   ├── glyphicons-halflings-regular.eot
    │   ├── glyphicons-halflings-regular.svg
    │   ├── glyphicons-halflings-regular.ttf
    │   ├── glyphicons-halflings-regular.woff
    │   └── glyphicons-halflings-regular.woff2
    ├── images
    │   ├── company_logo.png
    │   ├── company_logo_big.png
    │   ├── favicon.ico
    │   ├── half.png
    │   ├── pixelshuffle.png
    │   └── workflowarrow.png
    ├── index.html
    ├── interpret.html
    ├── js
    │   ├── customscripts.js
    │   ├── jekyll-search.js
    │   ├── jquery.ba-throttle-debounce.min.js
    │   ├── jquery.navgoco.min.js
    │   ├── jquery.shuffle.min.js
    │   └── toc.js
    ├── layers.html
    ├── learner.html
    ├── licenses
    │   ├── LICENSE
    │   └── LICENSE-BSD-NAVGOCO.txt
    ├── medical.imaging.html
    ├── medical.text.html
    ├── metrics.html
    ├── notebook.core.html
    ├── notebook.export.html
    ├── notebook.export2html.html
    ├── notebook.showdoc.html
    ├── notebook.test.html
    ├── optimizer.html
    ├── pets.tutorial.html
    ├── rect.augment.html
    ├── search.json
    ├── sitemap.xml
    ├── synth.learner.html
    ├── tabular.core.html
    ├── tabular.model.html
    ├── tabular.rapids.html
    ├── test.html
    ├── text.core.html
    ├── text.data.html
    ├── text.learner.html
    ├── text.models.awdlstm.html
    ├── text.models.core.html
    ├── text.models.qrnn.html
    ├── tooltips.json
    ├── torchcore.html
    ├── tutorial.imagenette.html
    ├── tutorial.transfer.learning.html
    ├── tutorial.ulmfit.html
    ├── tutorial.wikitext.html
    ├── utils.test.html
    ├── vision.augment.html
    ├── vision.core.html
    ├── vision.data.html
    ├── vision.learner.html
    ├── vision.models.unet.html
    ├── vision.models.xresnet.html
    ├── vision.utils.html
    └── xse.resnext.html
├── environment.yml
├── fastai2
├── setup.py
├── swift
    ├── .gitignore
    ├── 00_load_data.ipynb
    ├── 00a_intro_and_float.ipynb
    ├── 01_matmul.ipynb
    ├── 01a_fastai_layers.ipynb
    ├── 02_fully_connected.ipynb
    ├── 02a_why_sqrt5.ipynb
    ├── 02b_initializing.ipynb
    ├── 02c_autodiff.ipynb
    ├── 03_minibatch_training.ipynb
    ├── 04_callbacks.ipynb
    ├── 05_anneal.ipynb
    ├── 05b_early_stopping.ipynb
    ├── 06_cuda.ipynb
    ├── 07_batchnorm.ipynb
    ├── 07b_batchnorm_lesson.ipynb
    ├── 08_data_block.ipynb
    ├── 08a_heterogeneous_dictionary.ipynb
    ├── 08b_data_block_opencv.ipynb
    ├── 08c_data_block-lightlyfunctional.ipynb
    ├── 08c_data_block_generic.ipynb
    ├── 09_optimizer.ipynb
    ├── 10_mixup_ls.ipynb
    ├── 11_imagenette.ipynb
    ├── FastaiNotebook_00_load_data
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_00_load_data
    │   │       └── 00_load_data.swift
    ├── FastaiNotebook_01_matmul
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_01_matmul
    │   │       ├── 00_load_data.swift
    │   │       └── 01_matmul.swift
    ├── FastaiNotebook_01a_fastai_layers
    │   ├── Package.resolved
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_01a_fastai_layers
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       └── 01a_fastai_layers.swift
    ├── FastaiNotebook_02_fully_connected
    │   ├── Package.resolved
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_02_fully_connected
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       └── 02_fully_connected.swift
    ├── FastaiNotebook_02a_why_sqrt5
    │   ├── Package.resolved
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_02a_why_sqrt5
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       └── 02a_why_sqrt5.swift
    ├── FastaiNotebook_03_minibatch_training
    │   ├── Package.resolved
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_03_minibatch_training
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       └── 03_minibatch_training.swift
    ├── FastaiNotebook_04_callbacks
    │   ├── Package.resolved
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_04_callbacks
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       ├── 03_minibatch_training.swift
    │   │       └── 04_callbacks.swift
    ├── FastaiNotebook_05_anneal
    │   ├── Package.resolved
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_05_anneal
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       ├── 03_minibatch_training.swift
    │   │       ├── 04_callbacks.swift
    │   │       └── 05_anneal.swift
    ├── FastaiNotebook_05b_early_stopping
    │   ├── Package.resolved
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_05b_early_stopping
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       ├── 03_minibatch_training.swift
    │   │       ├── 04_callbacks.swift
    │   │       ├── 05_anneal.swift
    │   │       └── 05b_early_stopping.swift
    ├── FastaiNotebook_06_cuda
    │   ├── Package.resolved
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_06_cuda
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       ├── 03_minibatch_training.swift
    │   │       ├── 04_callbacks.swift
    │   │       ├── 05_anneal.swift
    │   │       ├── 05b_early_stopping.swift
    │   │       └── 06_cuda.swift
    ├── FastaiNotebook_07_batchnorm
    │   ├── Package.resolved
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_07_batchnorm
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       ├── 03_minibatch_training.swift
    │   │       ├── 04_callbacks.swift
    │   │       ├── 05_anneal.swift
    │   │       ├── 05b_early_stopping.swift
    │   │       ├── 06_cuda.swift
    │   │       └── 07_batchnorm.swift
    ├── FastaiNotebook_08_data_block
    │   ├── Package.resolved
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_08_data_block
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       ├── 03_minibatch_training.swift
    │   │       ├── 04_callbacks.swift
    │   │       ├── 05_anneal.swift
    │   │       ├── 05b_early_stopping.swift
    │   │       ├── 06_cuda.swift
    │   │       ├── 07_batchnorm.swift
    │   │       └── 08_data_block.swift
    ├── FastaiNotebook_08a_heterogeneous_dictionary
    │   ├── Package.resolved
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_08a_heterogeneous_dictionary
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       ├── 03_minibatch_training.swift
    │   │       ├── 04_callbacks.swift
    │   │       ├── 05_anneal.swift
    │   │       ├── 05b_early_stopping.swift
    │   │       ├── 06_cuda.swift
    │   │       ├── 07_batchnorm.swift
    │   │       ├── 08_data_block.swift
    │   │       └── 08a_heterogeneous_dictionary.swift
    ├── FastaiNotebook_08c_data_block_generic
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_08c_data_block_generic
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       ├── 03_minibatch_training.swift
    │   │       ├── 04_callbacks.swift
    │   │       ├── 05_anneal.swift
    │   │       ├── 05b_early_stopping.swift
    │   │       ├── 06_cuda.swift
    │   │       ├── 07_batchnorm.swift
    │   │       └── 08c_data_block_generic.swift
    ├── FastaiNotebook_09_optimizer
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_09_optimizer
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       ├── 03_minibatch_training.swift
    │   │       ├── 04_callbacks.swift
    │   │       ├── 05_anneal.swift
    │   │       ├── 05b_early_stopping.swift
    │   │       ├── 06_cuda.swift
    │   │       ├── 07_batchnorm.swift
    │   │       ├── 08_data_block.swift
    │   │       ├── 08a_heterogeneous_dictionary.swift
    │   │       └── 09_optimizer.swift
    ├── FastaiNotebook_10_mixup_ls
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_10_mixup_ls
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       ├── 03_minibatch_training.swift
    │   │       ├── 04_callbacks.swift
    │   │       ├── 05_anneal.swift
    │   │       ├── 05b_early_stopping.swift
    │   │       ├── 06_cuda.swift
    │   │       ├── 07_batchnorm.swift
    │   │       ├── 08_data_block.swift
    │   │       ├── 08a_heterogeneous_dictionary.swift
    │   │       ├── 09_optimizer.swift
    │   │       └── 10_mixup_ls.swift
    ├── FastaiNotebook_11_imagenette
    │   ├── Package.swift
    │   └── Sources
    │   │   └── FastaiNotebook_11_imagenette
    │   │       ├── 00_load_data.swift
    │   │       ├── 01_matmul.swift
    │   │       ├── 01a_fastai_layers.swift
    │   │       ├── 02_fully_connected.swift
    │   │       ├── 02a_why_sqrt5.swift
    │   │       ├── 03_minibatch_training.swift
    │   │       ├── 04_callbacks.swift
    │   │       ├── 05_anneal.swift
    │   │       ├── 05b_early_stopping.swift
    │   │       ├── 06_cuda.swift
    │   │       ├── 07_batchnorm.swift
    │   │       ├── 08_data_block.swift
    │   │       ├── 08a_heterogeneous_dictionary.swift
    │   │       ├── 09_optimizer.swift
    │   │       ├── 10_mixup_ls.swift
    │   │       └── 11_imagenette.swift
    ├── Imagenette
    │   ├── .gitignore
    │   ├── Package.resolved
    │   ├── Package.swift
    │   ├── README.md
    │   └── Sources
    │   │   └── imagenette
    │   │       └── main.swift
    ├── MemoryUsage.ipynb
    ├── MinimalDsBug.ipynb
    ├── SwiftCV
    │   ├── .gitignore
    │   ├── Extra
    │   │   └── Tests.ipynb
    │   ├── Package.resolved
    │   ├── Package.swift
    │   ├── README.md
    │   ├── Sources
    │   │   ├── COpenCV
    │   │   │   ├── core.cpp
    │   │   │   ├── imgcodecs.cpp
    │   │   │   ├── imgproc.cpp
    │   │   │   ├── include
    │   │   │   │   ├── core.h
    │   │   │   │   ├── imgcodecs.h
    │   │   │   │   ├── imgproc.h
    │   │   │   │   └── version.h
    │   │   │   └── version.cpp
    │   │   ├── SwiftCV
    │   │   │   ├── ConcurrentMap.swift
    │   │   │   ├── Enums.swift
    │   │   │   ├── SwiftCV.swift
    │   │   │   └── TensorFlowConversion.swift
    │   │   ├── dataload
    │   │   │   └── main.swift
    │   │   └── opencv4
    │   │   │   └── module.modulemap
    │   ├── Tests
    │   │   ├── LinuxMain.swift
    │   │   └── SwiftCVTests
    │   │   │   ├── SwiftCVTests.swift
    │   │   │   ├── TensorFlowConversionTests.swift
    │   │   │   ├── XCTestManifests.swift
    │   │   │   └── fixtures
    │   │   │       ├── blur.jpg
    │   │   │       ├── border.jpg
    │   │   │       ├── grey.jpg
    │   │   │       ├── resize.jpg
    │   │   │       ├── test.png
    │   │   │       └── zoom.jpg
    │   └── install
    │   │   ├── OpenCVFindOpenBLAS.cmake
    │   │   └── install_cv4.sh
    ├── SwiftSox
    │   ├── .gitignore
    │   ├── Package.swift
    │   ├── README.md
    │   ├── Sources
    │   │   ├── SwiftSox
    │   │   │   └── SwiftSox.swift
    │   │   └── sox
    │   │   │   ├── module.modulemap
    │   │   │   └── soxu.h
    │   ├── Tests
    │   │   ├── LinuxMain.swift
    │   │   └── SwiftSoxTests
    │   │   │   ├── SwiftSoxTests.swift
    │   │   │   └── XCTestManifests.swift
    │   ├── install.sh
    │   └── sounds
    │   │   ├── beep-01a.mp3
    │   │   └── chris.mp3
    ├── SwiftVips
    │   ├── .gitignore
    │   ├── Package.resolved
    │   ├── Package.swift
    │   ├── README.md
    │   ├── Sources
    │   │   ├── CSwiftVips
    │   │   │   ├── core.c
    │   │   │   └── include
    │   │   │   │   └── core.h
    │   │   ├── SwiftVips
    │   │   │   ├── ConcurrentMap.swift
    │   │   │   └── SwiftVips.swift
    │   │   ├── dataload
    │   │   │   └── main.swift
    │   │   └── vips
    │   │   │   ├── module.modulemap
    │   │   │   └── shim.h
    │   └── install.sh
    ├── audio.ipynb
    ├── c_interop_examples.ipynb
    ├── datablock
    │   ├── .gitignore
    │   ├── Package.resolved
    │   ├── Package.swift
    │   ├── README.md
    │   └── Sources
    │   │   └── datablock
    │   │       └── main.swift
    ├── grid_sample.ipynb
    ├── minimal
    ├── minimal.swift
    └── opencv_integration_example.ipynb
└── tools
    ├── fastai-nbstripout
    ├── read-nbs
    ├── run-after-git-clone
    ├── take-snapshot
    ├── trust-doc-nbs
    ├── trust-doc-nbs-install-hook
    └── trust-origin-git-config


/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/.gitattributes


--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/.gitignore


--------------------------------------------------------------------------------
/CODE-OF-CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/CODE-OF-CONDUCT.md


--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/LICENSE


--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/Makefile


--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/README.md


--------------------------------------------------------------------------------
/azure-pipelines.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/azure-pipelines.yml


--------------------------------------------------------------------------------
/data/.gitignore:
--------------------------------------------------------------------------------
1 | */
2 | faces.zip
3 | 


--------------------------------------------------------------------------------
/data/adult_sample.tgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/data/adult_sample.tgz


--------------------------------------------------------------------------------
/data/imdb_sample.tgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/data/imdb_sample.tgz


--------------------------------------------------------------------------------
/data/mnist_sample.tgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/data/mnist_sample.tgz


--------------------------------------------------------------------------------
/data/movie_lens_sample.tgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/data/movie_lens_sample.tgz


--------------------------------------------------------------------------------
/dev/.gitignore:
--------------------------------------------------------------------------------
1 | data/
2 | docs/
3 | 


--------------------------------------------------------------------------------
/dev/.root:
--------------------------------------------------------------------------------
1 | 


--------------------------------------------------------------------------------
/dev/00_test.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/00_test.ipynb


--------------------------------------------------------------------------------
/dev/01_core_foundation.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/01_core_foundation.ipynb


--------------------------------------------------------------------------------
/dev/01a_core_utils.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/01a_core_utils.ipynb


--------------------------------------------------------------------------------
/dev/01b_core_dispatch.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/01b_core_dispatch.ipynb


--------------------------------------------------------------------------------
/dev/01c_core_transform.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/01c_core_transform.ipynb


--------------------------------------------------------------------------------
/dev/02_core_script.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/02_core_script.ipynb


--------------------------------------------------------------------------------
/dev/03_torchcore.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/03_torchcore.ipynb


--------------------------------------------------------------------------------
/dev/03a_layers.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/03a_layers.ipynb


--------------------------------------------------------------------------------
/dev/04_data_load.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/04_data_load.ipynb


--------------------------------------------------------------------------------
/dev/05_data_core.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/05_data_core.ipynb


--------------------------------------------------------------------------------
/dev/06_data_transforms.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/06_data_transforms.ipynb


--------------------------------------------------------------------------------
/dev/07_data_block.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/07_data_block.ipynb


--------------------------------------------------------------------------------
/dev/08_vision_core.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/08_vision_core.ipynb


--------------------------------------------------------------------------------
/dev/09_vision_augment.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/09_vision_augment.ipynb


--------------------------------------------------------------------------------
/dev/09a_vision_data.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/09a_vision_data.ipynb


--------------------------------------------------------------------------------
/dev/09b_vision_utils.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/09b_vision_utils.ipynb


--------------------------------------------------------------------------------
/dev/10_pets_tutorial.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/10_pets_tutorial.ipynb


--------------------------------------------------------------------------------
/dev/11_vision_models_xresnet.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/11_vision_models_xresnet.ipynb


--------------------------------------------------------------------------------
/dev/12_optimizer.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/12_optimizer.ipynb


--------------------------------------------------------------------------------
/dev/13_learner.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/13_learner.ipynb


--------------------------------------------------------------------------------
/dev/13a_metrics.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/13a_metrics.ipynb


--------------------------------------------------------------------------------
/dev/14_callback_schedule.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/14_callback_schedule.ipynb


--------------------------------------------------------------------------------
/dev/14a_callback_data.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/14a_callback_data.ipynb


--------------------------------------------------------------------------------
/dev/15_callback_hook.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/15_callback_hook.ipynb


--------------------------------------------------------------------------------
/dev/15a_vision_models_unet.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/15a_vision_models_unet.ipynb


--------------------------------------------------------------------------------
/dev/16_callback_progress.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/16_callback_progress.ipynb


--------------------------------------------------------------------------------
/dev/17_callback_tracker.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/17_callback_tracker.ipynb


--------------------------------------------------------------------------------
/dev/18_callback_fp16.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/18_callback_fp16.ipynb


--------------------------------------------------------------------------------
/dev/19_callback_mixup.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/19_callback_mixup.ipynb


--------------------------------------------------------------------------------
/dev/20_interpret.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/20_interpret.ipynb


--------------------------------------------------------------------------------
/dev/20a_distributed.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/20a_distributed.ipynb


--------------------------------------------------------------------------------
/dev/21_vision_learner.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/21_vision_learner.ipynb


--------------------------------------------------------------------------------
/dev/22_tutorial_imagenette.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/22_tutorial_imagenette.ipynb


--------------------------------------------------------------------------------
/dev/23_tutorial_transfer_learning.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/23_tutorial_transfer_learning.ipynb


--------------------------------------------------------------------------------
/dev/30_text_core.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/30_text_core.ipynb


--------------------------------------------------------------------------------
/dev/31_text_data.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/31_text_data.ipynb


--------------------------------------------------------------------------------
/dev/32_text_models_awdlstm.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/32_text_models_awdlstm.ipynb


--------------------------------------------------------------------------------
/dev/33_text_models_core.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/33_text_models_core.ipynb


--------------------------------------------------------------------------------
/dev/34_callback_rnn.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/34_callback_rnn.ipynb


--------------------------------------------------------------------------------
/dev/35_tutorial_wikitext.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/35_tutorial_wikitext.ipynb


--------------------------------------------------------------------------------
/dev/36_text_models_qrnn.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/36_text_models_qrnn.ipynb


--------------------------------------------------------------------------------
/dev/37_text_learner.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/37_text_learner.ipynb


--------------------------------------------------------------------------------
/dev/38_tutorial_ulmfit.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/38_tutorial_ulmfit.ipynb


--------------------------------------------------------------------------------
/dev/40_tabular_core.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/40_tabular_core.ipynb


--------------------------------------------------------------------------------
/dev/41_tabular_model.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/41_tabular_model.ipynb


--------------------------------------------------------------------------------
/dev/50_data_block_examples.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/50_data_block_examples.ipynb


--------------------------------------------------------------------------------
/dev/60_medical_imaging.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/60_medical_imaging.ipynb


--------------------------------------------------------------------------------
/dev/65_medical_text.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/65_medical_text.ipynb


--------------------------------------------------------------------------------
/dev/70_callback_wandb.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/70_callback_wandb.ipynb


--------------------------------------------------------------------------------
/dev/71_callback_tensorboard.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/71_callback_tensorboard.ipynb


--------------------------------------------------------------------------------
/dev/90_xse_resnext.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/90_xse_resnext.ipynb


--------------------------------------------------------------------------------
/dev/95_index.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/95_index.ipynb


--------------------------------------------------------------------------------
/dev/96_data_external.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/96_data_external.ipynb


--------------------------------------------------------------------------------
/dev/97_utils_test.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/97_utils_test.ipynb


--------------------------------------------------------------------------------
/dev/_09a_rect_augment.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/_09a_rect_augment.ipynb


--------------------------------------------------------------------------------
/dev/_40_tabular_core_old.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/_40_tabular_core_old.ipynb


--------------------------------------------------------------------------------
/dev/_42_tabular_rapids.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/_42_tabular_rapids.ipynb


--------------------------------------------------------------------------------
/dev/_minimal_show.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/_minimal_show.ipynb


--------------------------------------------------------------------------------
/dev/_notebook2jekyll.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/_notebook2jekyll.ipynb


--------------------------------------------------------------------------------
/dev/_whl2conda.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/_whl2conda.ipynb


--------------------------------------------------------------------------------
/dev/config.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/config.yml


--------------------------------------------------------------------------------
/dev/course/lesson1-pets.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/course/lesson1-pets.ipynb


--------------------------------------------------------------------------------
/dev/course/lesson2-download.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/course/lesson2-download.ipynb


--------------------------------------------------------------------------------
/dev/course/lesson2-sgd.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/course/lesson2-sgd.ipynb


--------------------------------------------------------------------------------
/dev/course/lesson3-camvid.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/course/lesson3-camvid.ipynb


--------------------------------------------------------------------------------
/dev/course/lesson3-head-pose.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/course/lesson3-head-pose.ipynb


--------------------------------------------------------------------------------
/dev/course/lesson3-imdb.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/course/lesson3-imdb.ipynb


--------------------------------------------------------------------------------
/dev/course/lesson3-planet.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/course/lesson3-planet.ipynb


--------------------------------------------------------------------------------
/dev/examples/camvid.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/examples/camvid.ipynb


--------------------------------------------------------------------------------
/dev/examples/train_imagenette.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/examples/train_imagenette.py


--------------------------------------------------------------------------------
/dev/examples/ulmfit.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/examples/ulmfit.ipynb


--------------------------------------------------------------------------------
/dev/fastai2/__init__.py:
--------------------------------------------------------------------------------
1 | 


--------------------------------------------------------------------------------
/dev/fastai2/_nbdev.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/_nbdev.py


--------------------------------------------------------------------------------
/dev/fastai2/basics.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/basics.py


--------------------------------------------------------------------------------
/dev/fastai2/callback/__init__.py:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/dev/fastai2/callback/all.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/callback/all.py


--------------------------------------------------------------------------------
/dev/fastai2/callback/data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/callback/data.py


--------------------------------------------------------------------------------
/dev/fastai2/callback/fp16.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/callback/fp16.py


--------------------------------------------------------------------------------
/dev/fastai2/callback/hook.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/callback/hook.py


--------------------------------------------------------------------------------
/dev/fastai2/callback/mixup.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/callback/mixup.py


--------------------------------------------------------------------------------
/dev/fastai2/callback/progress.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/callback/progress.py


--------------------------------------------------------------------------------
/dev/fastai2/callback/rnn.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/callback/rnn.py


--------------------------------------------------------------------------------
/dev/fastai2/callback/schedule.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/callback/schedule.py


--------------------------------------------------------------------------------
/dev/fastai2/callback/tensorboard.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/callback/tensorboard.py


--------------------------------------------------------------------------------
/dev/fastai2/callback/tracker.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/callback/tracker.py


--------------------------------------------------------------------------------
/dev/fastai2/callback/wandb.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/callback/wandb.py


--------------------------------------------------------------------------------
/dev/fastai2/core/__init__.py:
--------------------------------------------------------------------------------
1 | 


--------------------------------------------------------------------------------
/dev/fastai2/core/all.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/core/all.py


--------------------------------------------------------------------------------
/dev/fastai2/core/dispatch.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/core/dispatch.py


--------------------------------------------------------------------------------
/dev/fastai2/core/foundation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/core/foundation.py


--------------------------------------------------------------------------------
/dev/fastai2/core/imports.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/core/imports.py


--------------------------------------------------------------------------------
/dev/fastai2/core/script.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/core/script.py


--------------------------------------------------------------------------------
/dev/fastai2/core/transform.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/core/transform.py


--------------------------------------------------------------------------------
/dev/fastai2/core/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/core/utils.py


--------------------------------------------------------------------------------
/dev/fastai2/distributed.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/distributed.py


--------------------------------------------------------------------------------
/dev/fastai2/fp16_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/fp16_utils.py


--------------------------------------------------------------------------------
/dev/fastai2/interpret.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/interpret.py


--------------------------------------------------------------------------------
/dev/fastai2/launch.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/launch.py


--------------------------------------------------------------------------------
/dev/fastai2/layers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/layers.py


--------------------------------------------------------------------------------
/dev/fastai2/learner.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/learner.py


--------------------------------------------------------------------------------
/dev/fastai2/medical/__init__.py:
--------------------------------------------------------------------------------
1 | 


--------------------------------------------------------------------------------
/dev/fastai2/medical/imaging.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/medical/imaging.py


--------------------------------------------------------------------------------
/dev/fastai2/medical/text.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/medical/text.py


--------------------------------------------------------------------------------
/dev/fastai2/metrics.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/metrics.py


--------------------------------------------------------------------------------
/dev/fastai2/notebook/__init__.py:
--------------------------------------------------------------------------------
1 | 


--------------------------------------------------------------------------------
/dev/fastai2/notebook/autogen.tpl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/notebook/autogen.tpl


--------------------------------------------------------------------------------
/dev/fastai2/notebook/core.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/notebook/core.py


--------------------------------------------------------------------------------
/dev/fastai2/notebook/export.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/notebook/export.py


--------------------------------------------------------------------------------
/dev/fastai2/notebook/export2html.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/notebook/export2html.py


--------------------------------------------------------------------------------
/dev/fastai2/notebook/hide.tpl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/notebook/hide.tpl


--------------------------------------------------------------------------------
/dev/fastai2/notebook/index.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/notebook/index.txt


--------------------------------------------------------------------------------
/dev/fastai2/notebook/index_pytorch.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/notebook/index_pytorch.txt


--------------------------------------------------------------------------------
/dev/fastai2/notebook/jekyll-md.tpl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/notebook/jekyll-md.tpl


--------------------------------------------------------------------------------
/dev/fastai2/notebook/jekyll.tpl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/notebook/jekyll.tpl


--------------------------------------------------------------------------------
/dev/fastai2/notebook/showdoc.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/notebook/showdoc.py


--------------------------------------------------------------------------------
/dev/fastai2/notebook/test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/notebook/test.py


--------------------------------------------------------------------------------
/dev/fastai2/optimizer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/optimizer.py


--------------------------------------------------------------------------------
/dev/fastai2/tabular/__init__.py:
--------------------------------------------------------------------------------
1 | 


--------------------------------------------------------------------------------
/dev/fastai2/tabular/core.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/tabular/core.py


--------------------------------------------------------------------------------
/dev/fastai2/tabular/model.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/tabular/model.py


--------------------------------------------------------------------------------
/dev/fastai2/tabular/rapids.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/tabular/rapids.py


--------------------------------------------------------------------------------
/dev/fastai2/test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/test.py


--------------------------------------------------------------------------------
/dev/fastai2/test_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/test_utils.py


--------------------------------------------------------------------------------
/dev/fastai2/text/__init__.py:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/dev/fastai2/text/all.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/all.py


--------------------------------------------------------------------------------
/dev/fastai2/text/core.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/core.py


--------------------------------------------------------------------------------
/dev/fastai2/text/data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/data.py


--------------------------------------------------------------------------------
/dev/fastai2/text/learner.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/learner.py


--------------------------------------------------------------------------------
/dev/fastai2/text/models/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/models/__init__.py


--------------------------------------------------------------------------------
/dev/fastai2/text/models/awdlstm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/models/awdlstm.py


--------------------------------------------------------------------------------
/dev/fastai2/text/models/bwd_forget_mult_cuda.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/models/bwd_forget_mult_cuda.cpp


--------------------------------------------------------------------------------
/dev/fastai2/text/models/bwd_forget_mult_cuda_kernel.cu:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/models/bwd_forget_mult_cuda_kernel.cu


--------------------------------------------------------------------------------
/dev/fastai2/text/models/core.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/models/core.py


--------------------------------------------------------------------------------
/dev/fastai2/text/models/forget_mult_cuda.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/models/forget_mult_cuda.cpp


--------------------------------------------------------------------------------
/dev/fastai2/text/models/forget_mult_cuda_kernel.cu:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/models/forget_mult_cuda_kernel.cu


--------------------------------------------------------------------------------
/dev/fastai2/text/models/qrnn.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/text/models/qrnn.py


--------------------------------------------------------------------------------
/dev/fastai2/torch_basics.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/torch_basics.py


--------------------------------------------------------------------------------
/dev/fastai2/torch_core.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/torch_core.py


--------------------------------------------------------------------------------
/dev/fastai2/torch_imports.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/torch_imports.py


--------------------------------------------------------------------------------
/dev/fastai2/version.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/version.py


--------------------------------------------------------------------------------
/dev/fastai2/vision/__init__.py:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/dev/fastai2/vision/all.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/vision/all.py


--------------------------------------------------------------------------------
/dev/fastai2/vision/augment.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/vision/augment.py


--------------------------------------------------------------------------------
/dev/fastai2/vision/core.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/vision/core.py


--------------------------------------------------------------------------------
/dev/fastai2/vision/data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/vision/data.py


--------------------------------------------------------------------------------
/dev/fastai2/vision/learner.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/vision/learner.py


--------------------------------------------------------------------------------
/dev/fastai2/vision/models/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/vision/models/__init__.py


--------------------------------------------------------------------------------
/dev/fastai2/vision/models/all.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/vision/models/all.py


--------------------------------------------------------------------------------
/dev/fastai2/vision/models/unet.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/vision/models/unet.py


--------------------------------------------------------------------------------
/dev/fastai2/vision/models/xresnet.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/vision/models/xresnet.py


--------------------------------------------------------------------------------
/dev/fastai2/vision/models/xsenet.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/vision/models/xsenet.py


--------------------------------------------------------------------------------
/dev/fastai2/vision/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/fastai2/vision/utils.py


--------------------------------------------------------------------------------
/dev/files/.gitignore:
--------------------------------------------------------------------------------
1 | test.txt
2 | 


--------------------------------------------------------------------------------
/dev/files/test.txt.bz2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/files/test.txt.bz2


--------------------------------------------------------------------------------
/dev/images/Mixed_precision.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/images/Mixed_precision.jpeg


--------------------------------------------------------------------------------
/dev/images/half.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/images/half.png


--------------------------------------------------------------------------------
/dev/images/half_representation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/images/half_representation.png


--------------------------------------------------------------------------------
/dev/images/mnist3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/images/mnist3.png


--------------------------------------------------------------------------------
/dev/images/pixelshuffle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/images/pixelshuffle.png


--------------------------------------------------------------------------------
/dev/images/puppy.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/images/puppy.jpg


--------------------------------------------------------------------------------
/dev/images/sample.dcm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/images/sample.dcm


--------------------------------------------------------------------------------
/dev/posts/.gitignore:
--------------------------------------------------------------------------------
1 | *.md
2 | 


--------------------------------------------------------------------------------
/dev/posts/2019-08-06-delegation.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/posts/2019-08-06-delegation.ipynb


--------------------------------------------------------------------------------
/dev/tools/build_docs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/tools/build_docs


--------------------------------------------------------------------------------
/dev/tools/diff_nb_script:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/tools/diff_nb_script


--------------------------------------------------------------------------------
/dev/tools/fastai2:
--------------------------------------------------------------------------------
1 | ../fastai2/


--------------------------------------------------------------------------------
/dev/tools/notebook2script:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/tools/notebook2script


--------------------------------------------------------------------------------
/dev/tools/script2notebook:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/tools/script2notebook


--------------------------------------------------------------------------------
/dev/tools/sidebar_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/tools/sidebar_data.py


--------------------------------------------------------------------------------
/dev/tools/test_nbs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/tools/test_nbs


--------------------------------------------------------------------------------
/dev/train_wt2.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev/train_wt2.py


--------------------------------------------------------------------------------
/dev_nb/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/.gitattributes


--------------------------------------------------------------------------------
/dev_nb/.gitignore:
--------------------------------------------------------------------------------
1 | *.prof
2 | models
3 | data
4 | fastai
5 | 


--------------------------------------------------------------------------------
/dev_nb/001a_nn_basics.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/001a_nn_basics.ipynb


--------------------------------------------------------------------------------
/dev_nb/001b_fit.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/001b_fit.ipynb


--------------------------------------------------------------------------------
/dev_nb/002_images.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/002_images.ipynb


--------------------------------------------------------------------------------
/dev_nb/002b_augment_training.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/002b_augment_training.ipynb


--------------------------------------------------------------------------------
/dev_nb/002c_warp.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/002c_warp.ipynb


--------------------------------------------------------------------------------
/dev_nb/003_rect_square_crop.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/003_rect_square_crop.ipynb


--------------------------------------------------------------------------------
/dev_nb/004_callbacks.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/004_callbacks.ipynb


--------------------------------------------------------------------------------
/dev_nb/004a_discriminative_lr.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/004a_discriminative_lr.ipynb


--------------------------------------------------------------------------------
/dev_nb/004b_mixed_precision.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/004b_mixed_precision.ipynb


--------------------------------------------------------------------------------
/dev_nb/005_dogs_cats.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/005_dogs_cats.ipynb


--------------------------------------------------------------------------------
/dev_nb/005a_interpretation.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/005a_interpretation.ipynb


--------------------------------------------------------------------------------
/dev_nb/005b_planet.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/005b_planet.ipynb


--------------------------------------------------------------------------------
/dev_nb/006_carvana.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/006_carvana.ipynb


--------------------------------------------------------------------------------
/dev_nb/006a_unet.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/006a_unet.ipynb


--------------------------------------------------------------------------------
/dev_nb/006b_pascal.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/006b_pascal.ipynb


--------------------------------------------------------------------------------
/dev_nb/006c_camvid.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/006c_camvid.ipynb


--------------------------------------------------------------------------------
/dev_nb/007_wikitext_2.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/007_wikitext_2.ipynb


--------------------------------------------------------------------------------
/dev_nb/007a_imdb_preparation.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/007a_imdb_preparation.ipynb


--------------------------------------------------------------------------------
/dev_nb/007b_imdb_classifier.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/007b_imdb_classifier.ipynb


--------------------------------------------------------------------------------
/dev_nb/008_movie_lens.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/008_movie_lens.ipynb


--------------------------------------------------------------------------------
/dev_nb/009_rossmann.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/009_rossmann.ipynb


--------------------------------------------------------------------------------
/dev_nb/099_tfm_coords.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/099_tfm_coords.ipynb


--------------------------------------------------------------------------------
/dev_nb/100_add_metrics.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/100_add_metrics.ipynb


--------------------------------------------------------------------------------
/dev_nb/101_devise.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/101_devise.ipynb


--------------------------------------------------------------------------------
/dev_nb/102a_coco.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/102a_coco.ipynb


--------------------------------------------------------------------------------
/dev_nb/103_wgan.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/103_wgan.ipynb


--------------------------------------------------------------------------------
/dev_nb/103_wganF.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/103_wganF.ipynb


--------------------------------------------------------------------------------
/dev_nb/104_data_block_API.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/104_data_block_API.ipynb


--------------------------------------------------------------------------------
/dev_nb/104a_camvid.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/104a_camvid.ipynb


--------------------------------------------------------------------------------
/dev_nb/104b_pets_planets.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/104b_pets_planets.ipynb


--------------------------------------------------------------------------------
/dev_nb/104c_single_image_pred.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/104c_single_image_pred.ipynb


--------------------------------------------------------------------------------
/dev_nb/104d_show_batch.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/104d_show_batch.ipynb


--------------------------------------------------------------------------------
/dev_nb/105_refactor_text_data.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/105_refactor_text_data.ipynb


--------------------------------------------------------------------------------
/dev_nb/106_cyclegan.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/106_cyclegan.ipynb


--------------------------------------------------------------------------------
/dev_nb/110_transformer_pretrained.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/110_transformer_pretrained.ipynb


--------------------------------------------------------------------------------
/dev_nb/200_datablock_config.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/200_datablock_config.ipynb


--------------------------------------------------------------------------------
/dev_nb/200_datablock_config_jh.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/200_datablock_config_jh.ipynb


--------------------------------------------------------------------------------
/dev_nb/201_batch_transform.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/201_batch_transform.ipynb


--------------------------------------------------------------------------------
/dev_nb/202_tokenizing.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/202_tokenizing.ipynb


--------------------------------------------------------------------------------
/dev_nb/202a_tokenize_benchmark.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/202a_tokenize_benchmark.ipynb


--------------------------------------------------------------------------------
/dev_nb/BugAD.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/BugAD.ipynb


--------------------------------------------------------------------------------
/dev_nb/Loss_func2Activ.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/Loss_func2Activ.ipynb


--------------------------------------------------------------------------------
/dev_nb/autoreload/any-module-fail.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/autoreload/any-module-fail.ipynb


--------------------------------------------------------------------------------
/dev_nb/autoreload/fastai-fail.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/autoreload/fastai-fail.ipynb


--------------------------------------------------------------------------------
/dev_nb/discriminator-digit.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/discriminator-digit.ipynb


--------------------------------------------------------------------------------
/dev_nb/discriminator-exp.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/discriminator-exp.ipynb


--------------------------------------------------------------------------------
/dev_nb/discriminator.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/discriminator.ipynb


--------------------------------------------------------------------------------
/dev_nb/discriminator1.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/discriminator1.ipynb


--------------------------------------------------------------------------------
/dev_nb/dogscats.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/dogscats.py


--------------------------------------------------------------------------------
/dev_nb/enhance-wsdr.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/enhance-wsdr.ipynb


--------------------------------------------------------------------------------
/dev_nb/enhance.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/enhance.ipynb


--------------------------------------------------------------------------------
/dev_nb/exp:
--------------------------------------------------------------------------------
1 | ../dev_course/dl2/exp


--------------------------------------------------------------------------------
/dev_nb/experiments/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/.gitattributes


--------------------------------------------------------------------------------
/dev_nb/experiments/Caltech101bug.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/Caltech101bug.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/README.md:
--------------------------------------------------------------------------------
1 | Experiments
2 | 


--------------------------------------------------------------------------------
/dev_nb/experiments/build_imgnet_local_small.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/build_imgnet_local_small.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/caltech101.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/caltech101.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/check_classifier.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/check_classifier.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/cifar10_comparison_pipelines.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/cifar10_comparison_pipelines.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/cifar_check.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/cifar_check.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/comp_gs_numpy_torch.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/comp_gs_numpy_torch.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/dogs_cats.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/dogs_cats.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/imdb_classification.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/imdb_classification.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/keras_lesson1.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/keras_lesson1.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/lm_checks.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/lm_checks.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/pipelines_speed_comp.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/pipelines_speed_comp.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/random_resize_crop.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/random_resize_crop.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/rossmann.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/rossmann.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/tfm_refactor.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/tfm_refactor.ipynb


--------------------------------------------------------------------------------
/dev_nb/experiments/wikitext103-qrnn.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/experiments/wikitext103-qrnn.ipynb


--------------------------------------------------------------------------------
/dev_nb/forget_mult.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/forget_mult.py


--------------------------------------------------------------------------------
/dev_nb/get_all.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/get_all.ipynb


--------------------------------------------------------------------------------
/dev_nb/imagenette.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/imagenette.ipynb


--------------------------------------------------------------------------------
/dev_nb/imgs/clusters.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/imgs/clusters.png


--------------------------------------------------------------------------------
/dev_nb/imgs/devise_arch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/imgs/devise_arch.png


--------------------------------------------------------------------------------
/dev_nb/lesson7-wgan.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/lesson7-wgan.ipynb


--------------------------------------------------------------------------------
/dev_nb/mem_leaks/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/mem_leaks/.gitattributes


--------------------------------------------------------------------------------
/dev_nb/mem_leaks/OOM_on_fit_recover.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/mem_leaks/OOM_on_fit_recover.ipynb


--------------------------------------------------------------------------------
/dev_nb/mem_leaks/locals_leak_on_exc.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/mem_leaks/locals_leak_on_exc.ipynb


--------------------------------------------------------------------------------
/dev_nb/mem_leaks/vision_basic_train.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/mem_leaks/vision_basic_train.ipynb


--------------------------------------------------------------------------------
/dev_nb/mem_leaks/vision_basic_train_peak.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/mem_leaks/vision_basic_train_peak.ipynb


--------------------------------------------------------------------------------
/dev_nb/mnist_sample.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/mnist_sample.ipynb


--------------------------------------------------------------------------------
/dev_nb/mnist_sample.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/mnist_sample.py


--------------------------------------------------------------------------------
/dev_nb/models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/models.py


--------------------------------------------------------------------------------
/dev_nb/nb_001a.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_001a.py


--------------------------------------------------------------------------------
/dev_nb/nb_001b.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_001b.py


--------------------------------------------------------------------------------
/dev_nb/nb_002.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_002.py


--------------------------------------------------------------------------------
/dev_nb/nb_002b.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_002b.py


--------------------------------------------------------------------------------
/dev_nb/nb_002c.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_002c.py


--------------------------------------------------------------------------------
/dev_nb/nb_003.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_003.py


--------------------------------------------------------------------------------
/dev_nb/nb_004.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_004.py


--------------------------------------------------------------------------------
/dev_nb/nb_004a.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_004a.py


--------------------------------------------------------------------------------
/dev_nb/nb_004b.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_004b.py


--------------------------------------------------------------------------------
/dev_nb/nb_005.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_005.py


--------------------------------------------------------------------------------
/dev_nb/nb_005a.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_005a.py


--------------------------------------------------------------------------------
/dev_nb/nb_005b.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_005b.py


--------------------------------------------------------------------------------
/dev_nb/nb_006.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_006.py


--------------------------------------------------------------------------------
/dev_nb/nb_006a.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_006a.py


--------------------------------------------------------------------------------
/dev_nb/nb_006b.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_006b.py


--------------------------------------------------------------------------------
/dev_nb/nb_007.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_007.py


--------------------------------------------------------------------------------
/dev_nb/nb_007a.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_007a.py


--------------------------------------------------------------------------------
/dev_nb/nb_007b.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_007b.py


--------------------------------------------------------------------------------
/dev_nb/nb_008.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_008.py


--------------------------------------------------------------------------------
/dev_nb/nb_009.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_009.py


--------------------------------------------------------------------------------
/dev_nb/nb_102a.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_102a.py


--------------------------------------------------------------------------------
/dev_nb/nb_104.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_104.py


--------------------------------------------------------------------------------
/dev_nb/nb_104a.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_104a.py


--------------------------------------------------------------------------------
/dev_nb/nb_104b.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_104b.py


--------------------------------------------------------------------------------
/dev_nb/nb_200.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/nb_200.py


--------------------------------------------------------------------------------
/dev_nb/new_callbacks.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/new_callbacks.ipynb


--------------------------------------------------------------------------------
/dev_nb/notebook2script.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/notebook2script.py


--------------------------------------------------------------------------------
/dev_nb/qrnn.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/qrnn.py


--------------------------------------------------------------------------------
/dev_nb/snapshot/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/snapshot/.gitattributes


--------------------------------------------------------------------------------
/dev_nb/snapshot/001a_nn_basics.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/snapshot/001a_nn_basics.ipynb


--------------------------------------------------------------------------------
/dev_nb/snapshot/002_images.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/snapshot/002_images.ipynb


--------------------------------------------------------------------------------
/dev_nb/snapshot/005_dogs_cats.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/snapshot/005_dogs_cats.ipynb


--------------------------------------------------------------------------------
/dev_nb/snapshot/006_carvana.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/snapshot/006_carvana.ipynb


--------------------------------------------------------------------------------
/dev_nb/snapshot/006c_camvid.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/snapshot/006c_camvid.ipynb


--------------------------------------------------------------------------------
/dev_nb/snapshot/007b_imdb_classifier.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/snapshot/007b_imdb_classifier.ipynb


--------------------------------------------------------------------------------
/dev_nb/snapshot/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/snapshot/README.md


--------------------------------------------------------------------------------
/dev_nb/snapshot/cifar_check.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/snapshot/cifar_check.ipynb


--------------------------------------------------------------------------------
/dev_nb/snapshot/mnist_sample.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/snapshot/mnist_sample.ipynb


--------------------------------------------------------------------------------
/dev_nb/snapshot/stl-10.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/snapshot/stl-10.ipynb


--------------------------------------------------------------------------------
/dev_nb/stl-10.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/stl-10.ipynb


--------------------------------------------------------------------------------
/dev_nb/translation_pretrained.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/translation_pretrained.ipynb


--------------------------------------------------------------------------------
/dev_nb/wikitext_103.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/wikitext_103.ipynb


--------------------------------------------------------------------------------
/dev_nb/x_003a_rect_images.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/x_003a_rect_images.ipynb


--------------------------------------------------------------------------------
/dev_nb/x_003b_rect_training.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/x_003b_rect_training.ipynb


--------------------------------------------------------------------------------
/dev_nb/x_003c_random_resized_crop.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/x_003c_random_resized_crop.ipynb


--------------------------------------------------------------------------------
/dev_nb/x_004b_implement_fast_progress.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/x_004b_implement_fast_progress.ipynb


--------------------------------------------------------------------------------
/dev_nb/x_006d_imgnet.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/x_006d_imgnet.ipynb


--------------------------------------------------------------------------------
/dev_nb/x_alternative_progress_bar.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/dev_nb/x_alternative_progress_bar.ipynb


--------------------------------------------------------------------------------
/docs/.gitignore:
--------------------------------------------------------------------------------
1 | .*/
2 | _site/
3 | vendor/
4 | 


--------------------------------------------------------------------------------
/docs/Gemfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/Gemfile


--------------------------------------------------------------------------------
/docs/Gemfile.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/Gemfile.lock


--------------------------------------------------------------------------------
/docs/_config.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_config.yml


--------------------------------------------------------------------------------
/docs/_data/alerts.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_data/alerts.yml


--------------------------------------------------------------------------------
/docs/_data/definitions.yml:
--------------------------------------------------------------------------------
1 | elephant: "This is a sample definition."
2 | 
3 | 


--------------------------------------------------------------------------------
/docs/_data/glossary.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_data/glossary.yml


--------------------------------------------------------------------------------
/docs/_data/sidebars/home_sidebar.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_data/sidebars/home_sidebar.yml


--------------------------------------------------------------------------------
/docs/_data/tags.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_data/tags.yml


--------------------------------------------------------------------------------
/docs/_data/terms.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_data/terms.yml


--------------------------------------------------------------------------------
/docs/_data/topnav.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_data/topnav.yml


--------------------------------------------------------------------------------
/docs/_includes/archive.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/archive.html


--------------------------------------------------------------------------------
/docs/_includes/callout.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/callout.html


--------------------------------------------------------------------------------
/docs/_includes/footer.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/footer.html


--------------------------------------------------------------------------------
/docs/_includes/google_analytics.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/google_analytics.html


--------------------------------------------------------------------------------
/docs/_includes/head.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/head.html


--------------------------------------------------------------------------------
/docs/_includes/head_print.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/head_print.html


--------------------------------------------------------------------------------
/docs/_includes/image.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/image.html


--------------------------------------------------------------------------------
/docs/_includes/important.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/important.html


--------------------------------------------------------------------------------
/docs/_includes/initialize_shuffle.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/initialize_shuffle.html


--------------------------------------------------------------------------------
/docs/_includes/inline_image.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/inline_image.html


--------------------------------------------------------------------------------
/docs/_includes/links.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/links.html


--------------------------------------------------------------------------------
/docs/_includes/note.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/note.html


--------------------------------------------------------------------------------
/docs/_includes/search_google_custom.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/search_google_custom.html


--------------------------------------------------------------------------------
/docs/_includes/search_simple_jekyll.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/search_simple_jekyll.html


--------------------------------------------------------------------------------
/docs/_includes/sidebar.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/sidebar.html


--------------------------------------------------------------------------------
/docs/_includes/tip.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/tip.html


--------------------------------------------------------------------------------
/docs/_includes/toc.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/toc.html


--------------------------------------------------------------------------------
/docs/_includes/topnav.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/topnav.html


--------------------------------------------------------------------------------
/docs/_includes/warning.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_includes/warning.html


--------------------------------------------------------------------------------
/docs/_layouts/default.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_layouts/default.html


--------------------------------------------------------------------------------
/docs/_layouts/default_print.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_layouts/default_print.html


--------------------------------------------------------------------------------
/docs/_layouts/none.html:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 | {{content}}


--------------------------------------------------------------------------------
/docs/_layouts/page.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_layouts/page.html


--------------------------------------------------------------------------------
/docs/_layouts/page_print.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/_layouts/page_print.html


--------------------------------------------------------------------------------
/docs/augmentation.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/augmentation.html


--------------------------------------------------------------------------------
/docs/callback.data.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/callback.data.html


--------------------------------------------------------------------------------
/docs/callback.fp16.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/callback.fp16.html


--------------------------------------------------------------------------------
/docs/callback.hook.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/callback.hook.html


--------------------------------------------------------------------------------
/docs/callback.mixup.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/callback.mixup.html


--------------------------------------------------------------------------------
/docs/callback.progress.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/callback.progress.html


--------------------------------------------------------------------------------
/docs/callback.rnn.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/callback.rnn.html


--------------------------------------------------------------------------------
/docs/callback.schedule.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/callback.schedule.html


--------------------------------------------------------------------------------
/docs/callback.tensorboard.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/callback.tensorboard.html


--------------------------------------------------------------------------------
/docs/callback.tracker.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/callback.tracker.html


--------------------------------------------------------------------------------
/docs/callback.wandb.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/callback.wandb.html


--------------------------------------------------------------------------------
/docs/core.dispatch.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/core.dispatch.html


--------------------------------------------------------------------------------
/docs/core.foundation.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/core.foundation.html


--------------------------------------------------------------------------------
/docs/core.script.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/core.script.html


--------------------------------------------------------------------------------
/docs/core.transform.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/core.transform.html


--------------------------------------------------------------------------------
/docs/core.utils.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/core.utils.html


--------------------------------------------------------------------------------
/docs/css/bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/bootstrap.min.css


--------------------------------------------------------------------------------
/docs/css/boxshadowproperties.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/boxshadowproperties.css


--------------------------------------------------------------------------------
/docs/css/customstyles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/customstyles.css


--------------------------------------------------------------------------------
/docs/css/font-awesome.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/font-awesome.min.css


--------------------------------------------------------------------------------
/docs/css/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/fonts/FontAwesome.otf


--------------------------------------------------------------------------------
/docs/css/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/fonts/fontawesome-webfont.eot


--------------------------------------------------------------------------------
/docs/css/fonts/fontawesome-webfont.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/fonts/fontawesome-webfont.svg


--------------------------------------------------------------------------------
/docs/css/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/fonts/fontawesome-webfont.ttf


--------------------------------------------------------------------------------
/docs/css/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/fonts/fontawesome-webfont.woff


--------------------------------------------------------------------------------
/docs/css/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/fonts/fontawesome-webfont.woff2


--------------------------------------------------------------------------------
/docs/css/modern-business.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/modern-business.css


--------------------------------------------------------------------------------
/docs/css/printstyles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/printstyles.css


--------------------------------------------------------------------------------
/docs/css/syntax.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/syntax.css


--------------------------------------------------------------------------------
/docs/css/theme-blue.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/theme-blue.css


--------------------------------------------------------------------------------
/docs/css/theme-green.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/css/theme-green.css


--------------------------------------------------------------------------------
/docs/data.block.examples.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/data.block.examples.html


--------------------------------------------------------------------------------
/docs/data.block.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/data.block.html


--------------------------------------------------------------------------------
/docs/data.core.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/data.core.html


--------------------------------------------------------------------------------
/docs/data.external.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/data.external.html


--------------------------------------------------------------------------------
/docs/data.load.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/data.load.html


--------------------------------------------------------------------------------
/docs/data.transforms.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/data.transforms.html


--------------------------------------------------------------------------------
/docs/distributed.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/distributed.html


--------------------------------------------------------------------------------
/docs/feed.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/feed.xml


--------------------------------------------------------------------------------
/docs/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/fonts/FontAwesome.otf


--------------------------------------------------------------------------------
/docs/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/fonts/fontawesome-webfont.eot


--------------------------------------------------------------------------------
/docs/fonts/fontawesome-webfont.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/fonts/fontawesome-webfont.svg


--------------------------------------------------------------------------------
/docs/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/fonts/fontawesome-webfont.ttf


--------------------------------------------------------------------------------
/docs/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/fonts/fontawesome-webfont.woff


--------------------------------------------------------------------------------
/docs/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/fonts/glyphicons-halflings-regular.eot


--------------------------------------------------------------------------------
/docs/fonts/glyphicons-halflings-regular.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/fonts/glyphicons-halflings-regular.svg


--------------------------------------------------------------------------------
/docs/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/fonts/glyphicons-halflings-regular.ttf


--------------------------------------------------------------------------------
/docs/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/fonts/glyphicons-halflings-regular.woff


--------------------------------------------------------------------------------
/docs/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/fonts/glyphicons-halflings-regular.woff2


--------------------------------------------------------------------------------
/docs/images/company_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/images/company_logo.png


--------------------------------------------------------------------------------
/docs/images/company_logo_big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/images/company_logo_big.png


--------------------------------------------------------------------------------
/docs/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/images/favicon.ico


--------------------------------------------------------------------------------
/docs/images/half.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/images/half.png


--------------------------------------------------------------------------------
/docs/images/pixelshuffle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/images/pixelshuffle.png


--------------------------------------------------------------------------------
/docs/images/workflowarrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/images/workflowarrow.png


--------------------------------------------------------------------------------
/docs/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/index.html


--------------------------------------------------------------------------------
/docs/interpret.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/interpret.html


--------------------------------------------------------------------------------
/docs/js/customscripts.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/js/customscripts.js


--------------------------------------------------------------------------------
/docs/js/jekyll-search.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/js/jekyll-search.js


--------------------------------------------------------------------------------
/docs/js/jquery.ba-throttle-debounce.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/js/jquery.ba-throttle-debounce.min.js


--------------------------------------------------------------------------------
/docs/js/jquery.navgoco.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/js/jquery.navgoco.min.js


--------------------------------------------------------------------------------
/docs/js/jquery.shuffle.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/js/jquery.shuffle.min.js


--------------------------------------------------------------------------------
/docs/js/toc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/js/toc.js


--------------------------------------------------------------------------------
/docs/layers.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/layers.html


--------------------------------------------------------------------------------
/docs/learner.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/learner.html


--------------------------------------------------------------------------------
/docs/licenses/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/licenses/LICENSE


--------------------------------------------------------------------------------
/docs/licenses/LICENSE-BSD-NAVGOCO.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/licenses/LICENSE-BSD-NAVGOCO.txt


--------------------------------------------------------------------------------
/docs/medical.imaging.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/medical.imaging.html


--------------------------------------------------------------------------------
/docs/medical.text.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/medical.text.html


--------------------------------------------------------------------------------
/docs/metrics.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/metrics.html


--------------------------------------------------------------------------------
/docs/notebook.core.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/notebook.core.html


--------------------------------------------------------------------------------
/docs/notebook.export.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/notebook.export.html


--------------------------------------------------------------------------------
/docs/notebook.export2html.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/notebook.export2html.html


--------------------------------------------------------------------------------
/docs/notebook.showdoc.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/notebook.showdoc.html


--------------------------------------------------------------------------------
/docs/notebook.test.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/notebook.test.html


--------------------------------------------------------------------------------
/docs/optimizer.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/optimizer.html


--------------------------------------------------------------------------------
/docs/pets.tutorial.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/pets.tutorial.html


--------------------------------------------------------------------------------
/docs/rect.augment.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/rect.augment.html


--------------------------------------------------------------------------------
/docs/search.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/search.json


--------------------------------------------------------------------------------
/docs/sitemap.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/sitemap.xml


--------------------------------------------------------------------------------
/docs/synth.learner.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/synth.learner.html


--------------------------------------------------------------------------------
/docs/tabular.core.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/tabular.core.html


--------------------------------------------------------------------------------
/docs/tabular.model.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/tabular.model.html


--------------------------------------------------------------------------------
/docs/tabular.rapids.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/tabular.rapids.html


--------------------------------------------------------------------------------
/docs/test.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/test.html


--------------------------------------------------------------------------------
/docs/text.core.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/text.core.html


--------------------------------------------------------------------------------
/docs/text.data.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/text.data.html


--------------------------------------------------------------------------------
/docs/text.learner.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/text.learner.html


--------------------------------------------------------------------------------
/docs/text.models.awdlstm.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/text.models.awdlstm.html


--------------------------------------------------------------------------------
/docs/text.models.core.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/text.models.core.html


--------------------------------------------------------------------------------
/docs/text.models.qrnn.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/text.models.qrnn.html


--------------------------------------------------------------------------------
/docs/tooltips.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/tooltips.json


--------------------------------------------------------------------------------
/docs/torchcore.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/torchcore.html


--------------------------------------------------------------------------------
/docs/tutorial.imagenette.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/tutorial.imagenette.html


--------------------------------------------------------------------------------
/docs/tutorial.transfer.learning.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/tutorial.transfer.learning.html


--------------------------------------------------------------------------------
/docs/tutorial.ulmfit.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/tutorial.ulmfit.html


--------------------------------------------------------------------------------
/docs/tutorial.wikitext.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/tutorial.wikitext.html


--------------------------------------------------------------------------------
/docs/utils.test.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/utils.test.html


--------------------------------------------------------------------------------
/docs/vision.augment.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/vision.augment.html


--------------------------------------------------------------------------------
/docs/vision.core.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/vision.core.html


--------------------------------------------------------------------------------
/docs/vision.data.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/vision.data.html


--------------------------------------------------------------------------------
/docs/vision.learner.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/vision.learner.html


--------------------------------------------------------------------------------
/docs/vision.models.unet.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/vision.models.unet.html


--------------------------------------------------------------------------------
/docs/vision.models.xresnet.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/vision.models.xresnet.html


--------------------------------------------------------------------------------
/docs/vision.utils.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/vision.utils.html


--------------------------------------------------------------------------------
/docs/xse.resnext.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/docs/xse.resnext.html


--------------------------------------------------------------------------------
/environment.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/environment.yml


--------------------------------------------------------------------------------
/fastai2:
--------------------------------------------------------------------------------
1 | dev/fastai2/


--------------------------------------------------------------------------------
/setup.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/setup.py


--------------------------------------------------------------------------------
/swift/.gitignore:
--------------------------------------------------------------------------------
1 | *gz
2 | swift-install/
3 | 
4 | .build/
5 | 


--------------------------------------------------------------------------------
/swift/00_load_data.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/00_load_data.ipynb


--------------------------------------------------------------------------------
/swift/00a_intro_and_float.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/00a_intro_and_float.ipynb


--------------------------------------------------------------------------------
/swift/01_matmul.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/01_matmul.ipynb


--------------------------------------------------------------------------------
/swift/01a_fastai_layers.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/01a_fastai_layers.ipynb


--------------------------------------------------------------------------------
/swift/02_fully_connected.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/02_fully_connected.ipynb


--------------------------------------------------------------------------------
/swift/02a_why_sqrt5.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/02a_why_sqrt5.ipynb


--------------------------------------------------------------------------------
/swift/02b_initializing.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/02b_initializing.ipynb


--------------------------------------------------------------------------------
/swift/02c_autodiff.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/02c_autodiff.ipynb


--------------------------------------------------------------------------------
/swift/03_minibatch_training.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/03_minibatch_training.ipynb


--------------------------------------------------------------------------------
/swift/04_callbacks.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/04_callbacks.ipynb


--------------------------------------------------------------------------------
/swift/05_anneal.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/05_anneal.ipynb


--------------------------------------------------------------------------------
/swift/05b_early_stopping.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/05b_early_stopping.ipynb


--------------------------------------------------------------------------------
/swift/06_cuda.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/06_cuda.ipynb


--------------------------------------------------------------------------------
/swift/07_batchnorm.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/07_batchnorm.ipynb


--------------------------------------------------------------------------------
/swift/07b_batchnorm_lesson.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/07b_batchnorm_lesson.ipynb


--------------------------------------------------------------------------------
/swift/08_data_block.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/08_data_block.ipynb


--------------------------------------------------------------------------------
/swift/08a_heterogeneous_dictionary.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/08a_heterogeneous_dictionary.ipynb


--------------------------------------------------------------------------------
/swift/08b_data_block_opencv.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/08b_data_block_opencv.ipynb


--------------------------------------------------------------------------------
/swift/08c_data_block-lightlyfunctional.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/08c_data_block-lightlyfunctional.ipynb


--------------------------------------------------------------------------------
/swift/08c_data_block_generic.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/08c_data_block_generic.ipynb


--------------------------------------------------------------------------------
/swift/09_optimizer.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/09_optimizer.ipynb


--------------------------------------------------------------------------------
/swift/10_mixup_ls.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/10_mixup_ls.ipynb


--------------------------------------------------------------------------------
/swift/11_imagenette.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/11_imagenette.ipynb


--------------------------------------------------------------------------------
/swift/FastaiNotebook_00_load_data/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_00_load_data/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_00_load_data/Sources/FastaiNotebook_00_load_data/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_00_load_data/Sources/FastaiNotebook_00_load_data/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_01_matmul/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_01_matmul/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_01_matmul/Sources/FastaiNotebook_01_matmul/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_01_matmul/Sources/FastaiNotebook_01_matmul/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_01_matmul/Sources/FastaiNotebook_01_matmul/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_01_matmul/Sources/FastaiNotebook_01_matmul/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_01a_fastai_layers/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_01a_fastai_layers/Package.resolved


--------------------------------------------------------------------------------
/swift/FastaiNotebook_01a_fastai_layers/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_01a_fastai_layers/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_01a_fastai_layers/Sources/FastaiNotebook_01a_fastai_layers/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_01a_fastai_layers/Sources/FastaiNotebook_01a_fastai_layers/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_01a_fastai_layers/Sources/FastaiNotebook_01a_fastai_layers/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_01a_fastai_layers/Sources/FastaiNotebook_01a_fastai_layers/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_01a_fastai_layers/Sources/FastaiNotebook_01a_fastai_layers/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_01a_fastai_layers/Sources/FastaiNotebook_01a_fastai_layers/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02_fully_connected/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02_fully_connected/Package.resolved


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02_fully_connected/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02_fully_connected/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02_fully_connected/Sources/FastaiNotebook_02_fully_connected/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02_fully_connected/Sources/FastaiNotebook_02_fully_connected/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02_fully_connected/Sources/FastaiNotebook_02_fully_connected/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02_fully_connected/Sources/FastaiNotebook_02_fully_connected/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02_fully_connected/Sources/FastaiNotebook_02_fully_connected/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02_fully_connected/Sources/FastaiNotebook_02_fully_connected/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02_fully_connected/Sources/FastaiNotebook_02_fully_connected/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02_fully_connected/Sources/FastaiNotebook_02_fully_connected/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02a_why_sqrt5/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02a_why_sqrt5/Package.resolved


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02a_why_sqrt5/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02a_why_sqrt5/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02a_why_sqrt5/Sources/FastaiNotebook_02a_why_sqrt5/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02a_why_sqrt5/Sources/FastaiNotebook_02a_why_sqrt5/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02a_why_sqrt5/Sources/FastaiNotebook_02a_why_sqrt5/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02a_why_sqrt5/Sources/FastaiNotebook_02a_why_sqrt5/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02a_why_sqrt5/Sources/FastaiNotebook_02a_why_sqrt5/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02a_why_sqrt5/Sources/FastaiNotebook_02a_why_sqrt5/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02a_why_sqrt5/Sources/FastaiNotebook_02a_why_sqrt5/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02a_why_sqrt5/Sources/FastaiNotebook_02a_why_sqrt5/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_02a_why_sqrt5/Sources/FastaiNotebook_02a_why_sqrt5/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_02a_why_sqrt5/Sources/FastaiNotebook_02a_why_sqrt5/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_03_minibatch_training/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_03_minibatch_training/Package.resolved


--------------------------------------------------------------------------------
/swift/FastaiNotebook_03_minibatch_training/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_03_minibatch_training/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_03_minibatch_training/Sources/FastaiNotebook_03_minibatch_training/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_04_callbacks/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_04_callbacks/Package.resolved


--------------------------------------------------------------------------------
/swift/FastaiNotebook_04_callbacks/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_04_callbacks/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/04_callbacks.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_04_callbacks/Sources/FastaiNotebook_04_callbacks/04_callbacks.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05_anneal/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05_anneal/Package.resolved


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05_anneal/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05_anneal/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/04_callbacks.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/04_callbacks.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/05_anneal.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05_anneal/Sources/FastaiNotebook_05_anneal/05_anneal.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05b_early_stopping/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05b_early_stopping/Package.resolved


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05b_early_stopping/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05b_early_stopping/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/04_callbacks.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/04_callbacks.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/05_anneal.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/05_anneal.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/05b_early_stopping.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_05b_early_stopping/Sources/FastaiNotebook_05b_early_stopping/05b_early_stopping.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Package.resolved


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/04_callbacks.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/04_callbacks.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/05_anneal.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/05_anneal.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/05b_early_stopping.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/05b_early_stopping.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/06_cuda.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_06_cuda/Sources/FastaiNotebook_06_cuda/06_cuda.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Package.resolved


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/04_callbacks.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/04_callbacks.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/05_anneal.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/05_anneal.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/05b_early_stopping.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/05b_early_stopping.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/06_cuda.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/06_cuda.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/07_batchnorm.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_07_batchnorm/Sources/FastaiNotebook_07_batchnorm/07_batchnorm.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Package.resolved


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/04_callbacks.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/04_callbacks.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/05_anneal.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/05_anneal.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/05b_early_stopping.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/05b_early_stopping.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/06_cuda.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/06_cuda.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/07_batchnorm.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/07_batchnorm.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/08_data_block.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08_data_block/Sources/FastaiNotebook_08_data_block/08_data_block.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Package.resolved


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/04_callbacks.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/04_callbacks.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/05_anneal.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/05_anneal.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/05b_early_stopping.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/05b_early_stopping.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/06_cuda.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/06_cuda.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/07_batchnorm.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/07_batchnorm.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/08_data_block.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/08_data_block.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/08a_heterogeneous_dictionary.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08a_heterogeneous_dictionary/Sources/FastaiNotebook_08a_heterogeneous_dictionary/08a_heterogeneous_dictionary.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/04_callbacks.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/04_callbacks.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/05_anneal.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/05_anneal.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/05b_early_stopping.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/05b_early_stopping.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/06_cuda.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/06_cuda.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/07_batchnorm.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/07_batchnorm.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/08c_data_block_generic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_08c_data_block_generic/Sources/FastaiNotebook_08c_data_block_generic/08c_data_block_generic.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/04_callbacks.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/04_callbacks.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/05_anneal.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/05_anneal.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/05b_early_stopping.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/05b_early_stopping.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/06_cuda.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/06_cuda.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/07_batchnorm.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/07_batchnorm.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/08_data_block.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/08_data_block.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/08a_heterogeneous_dictionary.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/08a_heterogeneous_dictionary.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/09_optimizer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_09_optimizer/Sources/FastaiNotebook_09_optimizer/09_optimizer.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/04_callbacks.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/04_callbacks.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/05_anneal.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/05_anneal.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/05b_early_stopping.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/05b_early_stopping.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/06_cuda.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/06_cuda.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/07_batchnorm.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/07_batchnorm.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/08_data_block.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/08_data_block.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/08a_heterogeneous_dictionary.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/08a_heterogeneous_dictionary.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/09_optimizer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/09_optimizer.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/10_mixup_ls.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_10_mixup_ls/Sources/FastaiNotebook_10_mixup_ls/10_mixup_ls.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Package.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/00_load_data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/00_load_data.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/01_matmul.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/01_matmul.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/01a_fastai_layers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/01a_fastai_layers.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/02_fully_connected.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/02_fully_connected.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/02a_why_sqrt5.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/02a_why_sqrt5.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/03_minibatch_training.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/03_minibatch_training.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/04_callbacks.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/04_callbacks.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/05_anneal.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/05_anneal.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/05b_early_stopping.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/05b_early_stopping.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/06_cuda.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/06_cuda.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/07_batchnorm.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/07_batchnorm.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/08_data_block.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/08_data_block.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/08a_heterogeneous_dictionary.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/08a_heterogeneous_dictionary.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/09_optimizer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/09_optimizer.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/10_mixup_ls.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/10_mixup_ls.swift


--------------------------------------------------------------------------------
/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/11_imagenette.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/FastaiNotebook_11_imagenette/Sources/FastaiNotebook_11_imagenette/11_imagenette.swift


--------------------------------------------------------------------------------
/swift/Imagenette/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | /.build
3 | /Packages
4 | /*.xcodeproj
5 | .idea
6 | .ipynb_checkpoints


--------------------------------------------------------------------------------
/swift/Imagenette/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/Imagenette/Package.resolved


--------------------------------------------------------------------------------
/swift/Imagenette/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/Imagenette/Package.swift


--------------------------------------------------------------------------------
/swift/Imagenette/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/Imagenette/README.md


--------------------------------------------------------------------------------
/swift/Imagenette/Sources/imagenette/main.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/Imagenette/Sources/imagenette/main.swift


--------------------------------------------------------------------------------
/swift/MemoryUsage.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/MemoryUsage.ipynb


--------------------------------------------------------------------------------
/swift/MinimalDsBug.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/MinimalDsBug.ipynb


--------------------------------------------------------------------------------
/swift/SwiftCV/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | /.build
3 | /Packages
4 | /*.xcodeproj
5 | .idea
6 | .ipynb_checkpoints


--------------------------------------------------------------------------------
/swift/SwiftCV/Extra/Tests.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Extra/Tests.ipynb


--------------------------------------------------------------------------------
/swift/SwiftCV/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Package.resolved


--------------------------------------------------------------------------------
/swift/SwiftCV/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Package.swift


--------------------------------------------------------------------------------
/swift/SwiftCV/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/README.md


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/COpenCV/core.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/COpenCV/core.cpp


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/COpenCV/imgcodecs.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/COpenCV/imgcodecs.cpp


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/COpenCV/imgproc.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/COpenCV/imgproc.cpp


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/COpenCV/include/core.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/COpenCV/include/core.h


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/COpenCV/include/imgcodecs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/COpenCV/include/imgcodecs.h


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/COpenCV/include/imgproc.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/COpenCV/include/imgproc.h


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/COpenCV/include/version.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/COpenCV/include/version.h


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/COpenCV/version.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/COpenCV/version.cpp


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/SwiftCV/ConcurrentMap.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/SwiftCV/ConcurrentMap.swift


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/SwiftCV/Enums.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/SwiftCV/Enums.swift


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/SwiftCV/SwiftCV.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/SwiftCV/SwiftCV.swift


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/SwiftCV/TensorFlowConversion.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/SwiftCV/TensorFlowConversion.swift


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/dataload/main.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/dataload/main.swift


--------------------------------------------------------------------------------
/swift/SwiftCV/Sources/opencv4/module.modulemap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Sources/opencv4/module.modulemap


--------------------------------------------------------------------------------
/swift/SwiftCV/Tests/LinuxMain.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Tests/LinuxMain.swift


--------------------------------------------------------------------------------
/swift/SwiftCV/Tests/SwiftCVTests/SwiftCVTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Tests/SwiftCVTests/SwiftCVTests.swift


--------------------------------------------------------------------------------
/swift/SwiftCV/Tests/SwiftCVTests/TensorFlowConversionTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Tests/SwiftCVTests/TensorFlowConversionTests.swift


--------------------------------------------------------------------------------
/swift/SwiftCV/Tests/SwiftCVTests/XCTestManifests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Tests/SwiftCVTests/XCTestManifests.swift


--------------------------------------------------------------------------------
/swift/SwiftCV/Tests/SwiftCVTests/fixtures/blur.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Tests/SwiftCVTests/fixtures/blur.jpg


--------------------------------------------------------------------------------
/swift/SwiftCV/Tests/SwiftCVTests/fixtures/border.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Tests/SwiftCVTests/fixtures/border.jpg


--------------------------------------------------------------------------------
/swift/SwiftCV/Tests/SwiftCVTests/fixtures/grey.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Tests/SwiftCVTests/fixtures/grey.jpg


--------------------------------------------------------------------------------
/swift/SwiftCV/Tests/SwiftCVTests/fixtures/resize.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Tests/SwiftCVTests/fixtures/resize.jpg


--------------------------------------------------------------------------------
/swift/SwiftCV/Tests/SwiftCVTests/fixtures/test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Tests/SwiftCVTests/fixtures/test.png


--------------------------------------------------------------------------------
/swift/SwiftCV/Tests/SwiftCVTests/fixtures/zoom.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/Tests/SwiftCVTests/fixtures/zoom.jpg


--------------------------------------------------------------------------------
/swift/SwiftCV/install/OpenCVFindOpenBLAS.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/install/OpenCVFindOpenBLAS.cmake


--------------------------------------------------------------------------------
/swift/SwiftCV/install/install_cv4.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftCV/install/install_cv4.sh


--------------------------------------------------------------------------------
/swift/SwiftSox/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | /.build
3 | /Packages
4 | /*.xcodeproj
5 | 


--------------------------------------------------------------------------------
/swift/SwiftSox/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftSox/Package.swift


--------------------------------------------------------------------------------
/swift/SwiftSox/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftSox/README.md


--------------------------------------------------------------------------------
/swift/SwiftSox/Sources/SwiftSox/SwiftSox.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftSox/Sources/SwiftSox/SwiftSox.swift


--------------------------------------------------------------------------------
/swift/SwiftSox/Sources/sox/module.modulemap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftSox/Sources/sox/module.modulemap


--------------------------------------------------------------------------------
/swift/SwiftSox/Sources/sox/soxu.h:
--------------------------------------------------------------------------------
1 | #include <sox.h>
2 | 
3 | 


--------------------------------------------------------------------------------
/swift/SwiftSox/Tests/LinuxMain.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftSox/Tests/LinuxMain.swift


--------------------------------------------------------------------------------
/swift/SwiftSox/Tests/SwiftSoxTests/SwiftSoxTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftSox/Tests/SwiftSoxTests/SwiftSoxTests.swift


--------------------------------------------------------------------------------
/swift/SwiftSox/Tests/SwiftSoxTests/XCTestManifests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftSox/Tests/SwiftSoxTests/XCTestManifests.swift


--------------------------------------------------------------------------------
/swift/SwiftSox/install.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftSox/install.sh


--------------------------------------------------------------------------------
/swift/SwiftSox/sounds/beep-01a.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftSox/sounds/beep-01a.mp3


--------------------------------------------------------------------------------
/swift/SwiftSox/sounds/chris.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftSox/sounds/chris.mp3


--------------------------------------------------------------------------------
/swift/SwiftVips/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | /.build
3 | /Packages
4 | /*.xcodeproj
5 | 


--------------------------------------------------------------------------------
/swift/SwiftVips/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftVips/Package.resolved


--------------------------------------------------------------------------------
/swift/SwiftVips/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftVips/Package.swift


--------------------------------------------------------------------------------
/swift/SwiftVips/README.md:
--------------------------------------------------------------------------------
1 | # dataload
2 | 
3 | A description of this package.
4 | 


--------------------------------------------------------------------------------
/swift/SwiftVips/Sources/CSwiftVips/core.c:
--------------------------------------------------------------------------------
1 | 


--------------------------------------------------------------------------------
/swift/SwiftVips/Sources/CSwiftVips/include/core.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftVips/Sources/CSwiftVips/include/core.h


--------------------------------------------------------------------------------
/swift/SwiftVips/Sources/SwiftVips/ConcurrentMap.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftVips/Sources/SwiftVips/ConcurrentMap.swift


--------------------------------------------------------------------------------
/swift/SwiftVips/Sources/SwiftVips/SwiftVips.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftVips/Sources/SwiftVips/SwiftVips.swift


--------------------------------------------------------------------------------
/swift/SwiftVips/Sources/dataload/main.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftVips/Sources/dataload/main.swift


--------------------------------------------------------------------------------
/swift/SwiftVips/Sources/vips/module.modulemap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftVips/Sources/vips/module.modulemap


--------------------------------------------------------------------------------
/swift/SwiftVips/Sources/vips/shim.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftVips/Sources/vips/shim.h


--------------------------------------------------------------------------------
/swift/SwiftVips/install.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/SwiftVips/install.sh


--------------------------------------------------------------------------------
/swift/audio.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/audio.ipynb


--------------------------------------------------------------------------------
/swift/c_interop_examples.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/c_interop_examples.ipynb


--------------------------------------------------------------------------------
/swift/datablock/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | /.build
3 | /Packages
4 | /*.xcodeproj
5 | 


--------------------------------------------------------------------------------
/swift/datablock/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/datablock/Package.resolved


--------------------------------------------------------------------------------
/swift/datablock/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/datablock/Package.swift


--------------------------------------------------------------------------------
/swift/datablock/README.md:
--------------------------------------------------------------------------------
1 | # datablock
2 | 
3 | A description of this package.
4 | 


--------------------------------------------------------------------------------
/swift/datablock/Sources/datablock/main.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/datablock/Sources/datablock/main.swift


--------------------------------------------------------------------------------
/swift/grid_sample.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/grid_sample.ipynb


--------------------------------------------------------------------------------
/swift/minimal:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/minimal


--------------------------------------------------------------------------------
/swift/minimal.swift:
--------------------------------------------------------------------------------
1 | 


--------------------------------------------------------------------------------
/swift/opencv_integration_example.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/swift/opencv_integration_example.ipynb


--------------------------------------------------------------------------------
/tools/fastai-nbstripout:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/tools/fastai-nbstripout


--------------------------------------------------------------------------------
/tools/read-nbs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/tools/read-nbs


--------------------------------------------------------------------------------
/tools/run-after-git-clone:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/tools/run-after-git-clone


--------------------------------------------------------------------------------
/tools/take-snapshot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/tools/take-snapshot


--------------------------------------------------------------------------------
/tools/trust-doc-nbs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/tools/trust-doc-nbs


--------------------------------------------------------------------------------
/tools/trust-doc-nbs-install-hook:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/tools/trust-doc-nbs-install-hook


--------------------------------------------------------------------------------
/tools/trust-origin-git-config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fastai/fastai_dev/HEAD/tools/trust-origin-git-config


--------------------------------------------------------------------------------