Skip to content

Commit 25afb1a

Browse files
authored
Merge pull request #2 from Devanik21/jules-13368987183974811300-e14979ea
Add formal repository structure and 30+ new files
2 parents 2bbc2f0 + ee284fe commit 25afb1a

41 files changed

Lines changed: 141 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: CI
2+
on: [push]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
- run: python -m unittest discover tests

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM python:3.9-slim
2+
WORKDIR /app
3+
COPY . .
4+
RUN pip install -r requirements.txt
5+
CMD ["python", "src/main.py"]

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
test:
2+
python -m unittest discover tests

config/default.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Default hyperparameters for Aether-SPARC v3
2+
seed: 42
3+
model:
4+
type: "mamba"
5+
d_model: 256

config/experiment_01.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Experiment 1: High temporal sparsity speech
2+
dataset: "speech"

config/loihi2.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Intel Loihi 2 hardware specifications
2+
energy_per_synaptic_op: 10e-12

data/processed/.gitkeep

Whitespace-only changes.

data/raw/.gitkeep

Whitespace-only changes.

docs/api_reference.md

Lines changed: 2 additions & 0 deletions

docs/architecture.md

Lines changed: 2 additions & 0 deletions

0 commit comments

Comments
 (0)