IliaLarchenko
commited on
Commit
•
bfcdf29
1
Parent(s):
bd7b626
minor fixes and readme
Browse files- README.md +14 -5
- src/main.py +1 -1
README.md
CHANGED
@@ -1,11 +1,14 @@
|
|
1 |
# albumentations-demo
|
2 |
|
3 |
-
This service is created to
|
4 |
|
5 |
|
6 |
-
## It is currently ALPHA VERSION
|
|
|
|
|
7 |
|
8 |
-
|
|
|
9 |
```
|
10 |
git clone https://github.com/IliaLarchenko/albumentations-demo
|
11 |
cd albumentations-demo
|
@@ -13,6 +16,12 @@ pip install -r requirements.txt
|
|
13 |
streamlit run src/main.py
|
14 |
```
|
15 |
|
16 |
-
And then just follow the address you see in console.
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
|
|
|
1 |
# albumentations-demo
|
2 |
|
3 |
+
This service is created to demonstrate abilities of the Albumentations - a library for efficent image augmentations.
|
4 |
|
5 |
|
6 |
+
## It is currently ALPHA VERSION!
|
7 |
+
The service still has some known bugs and requires a lot of refactoring, don't be surprised if you see any error)
|
8 |
+
But it already works!
|
9 |
|
10 |
+
|
11 |
+
## How to use:
|
12 |
```
|
13 |
git clone https://github.com/IliaLarchenko/albumentations-demo
|
14 |
cd albumentations-demo
|
|
|
16 |
streamlit run src/main.py
|
17 |
```
|
18 |
|
19 |
+
And then just follow the address you see in console. You shoud see something similar to this:
|
20 |
+
|
21 |
+
![screenshot](docs/readme.jpg?raw=true)
|
22 |
+
|
23 |
+
|
24 |
+
You can also play with the current deployed version:
|
25 |
+
[https://albumentations-demo.herokuapp.com/](https://albumentations-demo.herokuapp.com/)
|
26 |
|
27 |
+
But it can work
|
src/main.py
CHANGED
@@ -60,5 +60,5 @@ st.text('')
|
|
60 |
st.text('')
|
61 |
st.subheader('Credentials:')
|
62 |
st.text('Source: https://github.com/IliaLarchenko/albumentations-demo')
|
63 |
-
st.text('
|
64 |
st.text('Image Source: https://www.pexels.com/royalty-free-images/')
|
|
|
60 |
st.text('')
|
61 |
st.subheader('Credentials:')
|
62 |
st.text('Source: https://github.com/IliaLarchenko/albumentations-demo')
|
63 |
+
st.text('Albumentations library: https://github.com/albumentations-team/albumentations')
|
64 |
st.text('Image Source: https://www.pexels.com/royalty-free-images/')
|