File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## Unreleased
7
+ ## [ Version 0.1.0 ] - 2021-04-10
8
8
9
9
### Modified
10
+ - Updated License from MIT to GNU AGPL V3
10
11
- Re-shuffling:
11
12
- ` utils/data_loader.py ` -> ` core/data_loader.py `
12
13
- ` utils/model.py ` -> ` core/model.py `
@@ -91,3 +92,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
91
92
92
93
93
94
[ Version 0.1.0 Beta ] : https://github.com/animikhaich/Zero-Code-TF-Classifier/releases/tag/v0.1-beta
95
+ [ Version 0.1.0 ] : https://github.com/animikhaich/Zero-Code-TF-Classifier/releases/tag/v0.1
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ Contributions are what make the open source community such an amazing place to b
176
176
177
177
## License
178
178
179
- Distributed under the MIT License. See [ LICENSE] ( LICENSE.md ) for more information.
179
+ Distributed under the [ GNU AGPL V3 License] ( https://choosealicense.com/licenses/agpl-3.0/ ) . See [ LICENSE] ( LICENSE ) for more information.
180
180
181
181
182
182
## Contact
@@ -197,7 +197,7 @@ Distributed under the MIT License. See [LICENSE](LICENSE.md) for more informatio
197
197
[ stars-url ] : https://github.com/animikhaich/Zero-Code-TF-Classifier/stargazers
198
198
[ issues-shield ] : https://img.shields.io/github/issues/animikhaich/Zero-Code-TF-Classifier.svg?style=flat-square
199
199
[ issues-url ] : https://github.com/animikhaich/Zero-Code-TF-Classifier/issues
200
- [ license-shield ] : https://img.shields.io/github/license/animikhaich/Semantic-Segmentation-using-AutoEncoders .svg?style=flat-square
200
+ [ license-shield ] : https://img.shields.io/github/license/animikhaich/Zero-Code-TF-Classifier .svg?style=flat-square
201
201
[ license-url ] : https://github.com/animikhaich/Zero-Code-TF-Classifier/blob/main/LICENSE
202
202
[ linkedin-shield ] : https://img.shields.io/badge/-LinkedIn-black.svg?style=flat-square&logo=linkedin&colorB=555
203
203
[ linkedin-url ] : https://linkedin.com/in/animikh-aich/
Original file line number Diff line number Diff line change 13
13
os .environ ["TF_CPP_MIN_LOG_LEVEL" ] = "1"
14
14
import tensorflow as tf
15
15
import streamlit as st
16
- import numpy as np
17
- import pandas as pd
18
16
import plotly .graph_objs as go
19
17
20
18
@@ -116,7 +114,7 @@ def on_train_begin(self, logs=None):
116
114
logs (dict, optional): Training Metrics. Defaults to None.
117
115
"""
118
116
self .status_text .info (
119
- "Training Started! Live Graphs will be shown on the completion of the First Epoch."
117
+ "Training Started! Live Graphs will be shown on the completion of Each Epoch."
120
118
)
121
119
122
120
def on_train_end (self , logs = None ):
You can’t perform that action at this time.
0 commit comments