-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.sh
executable file
·105 lines (86 loc) · 1.87 KB
/
init.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# https://stackoverflow.com/a/52269934/2839786
# to update on restart
rm -rf pytorch-tutorial scikit-learn algorithms keras __pycache__ requests transformers lightning aima-python annotated_deep_learning_paper_implementations/
# clone "algorithms" code
git clone \
--depth 1 \
--filter=blob:none \
--sparse \
https://github.com/keon/algorithms \
;
cd algorithms
git sparse-checkout set algorithms
cd ..
# clone "keras" code
git clone \
--depth 1 \
--filter=blob:none \
--sparse \
https://github.com/keras-team/keras \
;
cd keras
git sparse-checkout set keras
cd ..
# clone "PyTorch Tutorial" code
git clone \
--depth 1 \
--filter=blob:none \
--sparse \
https://github.com/yunjey/pytorch-tutorial \
;
cd pytorch-tutorial
git sparse-checkout set tutorials
cd ..
# clone "Requests" code
git clone \
--depth 1 \
--filter=blob:none \
--sparse \
https://github.com/psf/requests \
;
cd requests
git sparse-checkout set requests
cd ..
# clone "Scikit-Learn" code
git clone \
--depth 1 \
--filter=blob:none \
--sparse \
https://github.com/scikit-learn/scikit-learn \
;
cd scikit-learn
git sparse-checkout set sklearn
cd ..
# clone "Transformers" code
git clone \
--depth 1 \
--filter=blob:none \
--sparse \
https://github.com/huggingface/transformers \
;
cd transformers
git sparse-checkout set src/transformers examples
cd ..
# clone "Lightning" code
git clone \
--depth 1 \
--filter=blob:none \
--sparse \
https://github.com/Lightning-AI/lightning \
;
cd lightning
git sparse-checkout set src/ examples
cd ..
# clone "AIMA-Python" code
git clone https://github.com/aimacode/aima-python
#cd ..
# clone "" code
git clone \
--depth 1 \
--filter=blob:none \
--sparse \
https://github.com/labmlai/annotated_deep_learning_paper_implementations \
;
cd annotated_deep_learning_paper_implementations
git sparse-checkout set labml_nn
cd ..