Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmor5 committed Jun 29, 2021
0 parents commit 2068e13
Show file tree
Hide file tree
Showing 10 changed files with 1,904 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .formatter.exs
@@ -0,0 +1,4 @@
# Used by "mix format"
[
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
]
26 changes: 26 additions & 0 deletions .gitignore
@@ -0,0 +1,26 @@
# The directory Mix will write compiled artifacts to.
/_build/

# If you run "mix test --cover", coverage assets end up here.
/cover/

# The directory Mix downloads your dependencies sources to.
/deps/

# Where third-party dependencies like ExDoc output generated docs.
/doc/

# Ignore .fetch files in case you like to edit your project deps locally.
/.fetch

# If the VM crashes, it generates a dump, let's ignore it too.
erl_crash.dump

# Also ignore archive artifacts (built via "mix archive.build").
*.ez

# Ignore package tarball (built via "mix hex.build").
axon_onnx-*.tar

# Temporary files, for example, from tests.
/tmp/
21 changes: 21 additions & 0 deletions README.md
@@ -0,0 +1,21 @@
# AxonOnnx

**TODO: Add description**

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `axon_onnx` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:axon_onnx, "~> 0.1.0"}
]
end
```

Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/axon_onnx](https://hexdocs.pm/axon_onnx).

6 changes: 6 additions & 0 deletions lib/axon_onnx.ex
@@ -0,0 +1,6 @@
defmodule AxonOnnx do
use Protox,
files: [
:filename.join([:code.priv_dir(:axon_onnx), "onnx.proto"])
]
end

0 comments on commit 2068e13

Please sign in to comment.