Skip to content

Commit

Permalink
Fix README (tracel-ai#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard authored Sep 5, 2022
1 parent 5f29242 commit 823f28c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<div align="center">
<img src="./assets/logo-burn-full.png" width="200px"/>
<img src="https://github.com/burn-rs/burn/blob/main/assets/logo-burn-full.png" width="200px"/>

[![Current Crates.io Version](https://img.shields.io/crates/v/burn.svg)](https://crates.io/crates/burn)
[![Test Status](https://github.com/burn-rs/burn/actions/workflows/test-burn.yml/badge.svg)](https://github.com/burn-rs/burn/actions/workflows/test-burn.yml)
[![Documentation](https://docs.rs/burn/badge.svg)](https://docs.rs/burn-tensor)
[![Documentation](https://docs.rs/burn/badge.svg)](https://docs.rs/burn)
[![license](https://shields.io/badge/license-MIT%2FApache--2.0-blue)](https://github.com/burn-rs/burn/blob/master/LICENSE)

<div align="left">
Expand All @@ -21,4 +21,4 @@ Also, asynchronous sparsely activated networks without copying weights is kind o
## Burn-Tensor

Burn has its own tensor library supporting multiple backends, it can also be used for other scientific computing applications.
Click [here](../burn-tensor/) for more details.
Click [here](https://github.com/burn-rs/burn/burn-tensor) for more details.
13 changes: 7 additions & 6 deletions burn-tensor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "burn-tensor"
version = "0.2.0"
version = "0.2.1"
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]

description = """
Expand All @@ -14,16 +14,17 @@ categories = ["science"]
license = "MIT/Apache-2.0"
edition = "2021"

[package.metadata.docs.rs]
features = ["ndarray"]
all-features = false
no-default-features = true

[features]
default = ["full"]
default = ["ndarray"]
full = ["tch", "ndarray"]
tch = ["dep:tch"]
ndarray = ["dep:ndarray"]

[package.metadata.docs.rs]
features = ["ndarray"]
all-features = false

[dependencies]
num-traits = "0.2"
derive-new = "0.5"
Expand Down
5 changes: 3 additions & 2 deletions burn/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "burn"
version = "0.2.0"
version = "0.2.1"
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
description = "BURN: Burn Unstoppable Rusty Neurons"
repository = "https://github.com/nathanielsimard/burn"
Expand All @@ -18,9 +18,10 @@ ndarray = ["burn-tensor/ndarray"]
[package.metadata.docs.rs]
features = ["ndarray"]
all-features = false
no-default-features = true

[dependencies]
burn-tensor = { path = "../burn-tensor", version = "0.2.0", default-features = false }
burn-tensor = { path = "../burn-tensor", version = "0.2.1", default-features = false }
burn-dataset = { path = "../burn-dataset", version = "0.1.0", default-features = false }
burn-derive = { path = "../burn-derive", version = "0.1.0" }

Expand Down

0 comments on commit 823f28c

Please sign in to comment.