Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

colab 322 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
  1. #!/bin/bash
  2. if [ ! -e /content/models ]; then
  3. mkdir -p /root/.torch/models
  4. mkdir -p /root/.fastai/data
  5. ln -s /root/.torch/models /content
  6. ln -s /root/.fastai/data /content
  7. rm -rf /content/sample_data/
  8. fi
  9. echo Updating fastai...
  10. pip install fastai --upgrade > /dev/null
  11. echo Done.
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...