Skip to content

Commit 8db6eab

Browse files
authored
Update
now it looks good
1 parent 060d402 commit 8db6eab

File tree

1 file changed

+46
-1
lines changed

1 file changed

+46
-1
lines changed

README.md

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,49 @@
11
[![DOI](https://zenodo.org/badge/478611734.svg)](https://zenodo.org/badge/latestdoi/478611734)
22

33
# apple_classification
4-
The works aims at classifying brusied `B` from sound `S` apples using mache learning and feature reduction tools.
4+
5+
A tutorial-based hackathon aims to classify bruised `B` from sound `S` apples using mache learning and feature reduction tools. In total, there are four tutorials, which can be listed as follows:
6+
1. [Data cleaning & visualization](https://github.com/Hack4Dev/apple_classification/blob/main/notebooks/tutorial1.ipynb)
7+
2. [Baseline Calculation](https://github.com/Hack4Dev/apple_classification/blob/main/notebooks/tutorial2.ipynb)
8+
3. [Feature Engineering and Selection](https://github.com/Hack4Dev/apple_classification/blob/main/notebooks/tutorial3.ipynb)
9+
4. [Machine learning classification](https://github.com/Hack4Dev/apple_classification/blob/main/notebooks/tutorial4.ipynb)
10+
11+
12+
-----
13+
14+
### Not at the hackathon, but want to test your code-building skills? Feel free!
15+
16+
```bash
17+
> git clone https://github.com/Hack4Dev/apple_classification.git
18+
```
19+
20+
Then make sure you have the right Python libraries for the tutorials. They can all be installed using pip and the [requirements.txt](https://github.com/Hack4Dev/apple_classification/blob/main/requirements.txt) file in the repo:
21+
22+
```bash
23+
> pip install -r requirements.txt
24+
```
25+
26+
-----
27+
28+
### New to Github?
29+
30+
The easiest way to get all of the lecture and tutorial material is to clone this repository. To do this you need git installed on your laptop. If you're working on Linux you can install git using apt-get (you might need to use sudo):
31+
32+
```
33+
apt install git
34+
```
35+
36+
You can then clone the repository by typing:
37+
38+
```
39+
git clone https://github.com/Hack4Dev/apple_classification.git
40+
```
41+
42+
To update your clone if changes are made, use:
43+
44+
```
45+
cd apple_classification/
46+
git pull
47+
```
48+
49+
-----

0 commit comments

Comments
 (0)