Skip to content

Commit 96385aa

Browse files
authored
Release v1.0.0b1 (#50)
* Update README.md * Update __version__.py
1 parent 7133d30 commit 96385aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ The performance of each model variant using the pre-trained weights converted fr
9797
### Installing from the source
9898

9999
```bash
100-
pip install -U git+https://github.com/qubvel/efficientnet
100+
$ pip install -U git+https://github.com/qubvel/efficientnet
101101
```
102102

103103
### Installing from PyPI
104104

105105
```bash
106-
pip install -U efficientnet
106+
$ pip install -U efficientnet
107107
```
108108

109109
## Frequently Asked Questions
@@ -113,7 +113,7 @@ pip install -U efficientnet
113113
Pick the target directory (like `dist`) and run the [converter script](./scripts) from the repo directory as follows:
114114

115115
```bash
116-
./scripts/convert_efficientnet.sh --target_dir dist
116+
$ ./scripts/convert_efficientnet.sh --target_dir dist
117117
```
118118

119119
You can also optionally create the virtual environment with all the dependencies installed by adding `--make_venv=true` and operate in a self-destructing temporary location instead of the target directory by setting `--tmp_working_dir=true`.

efficientnet/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
# ==============================================================================
15-
VERSION = (0, 0, 4)
15+
VERSION = (1, 0, '0b1')
1616

1717
__version__ = ".".join(map(str, VERSION))
1818

0 commit comments

Comments
 (0)