Skip to content

Commit

Permalink
Version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Pfrommer committed Nov 13, 2023
1 parent d062d8b commit 059fe61
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include torchexplorer/*.py
include torchexplorer/vega/vega_dataless.json
include torchexplorer/standalone/README.md
include torchexplorer/standalone/data/.keep
include torchexplorer/standalone/templates/index.html
2 changes: 1 addition & 1 deletion examples/cifar10resnet/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from pytorch_lightning.loggers import WandbLogger
from sklearn import datasets

from torchexplorer.api import watch, LIGHTNING_EPOCHS
from torchexplorer import watch, LIGHTNING_EPOCHS

from data.cifar10_datamodule import CIFAR10DataModule
from data.metadata import get_normalize_layer
Expand Down
2 changes: 1 addition & 1 deletion examples/irismlp/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import click

from torchexplorer.api import watch, LIGHTNING_EPOCHS
from torchexplorer import watch, LIGHTNING_EPOCHS


wandb_init_params = {
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
from setuptools import setup, find_namespace_packages
from setuptools import setup, find_namespace_packages, find_packages

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name='torchexplorer',
version='0.0.1',
version='0.1.0',
description="Interactively inspect pytorch modules during training.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/spfrommer/torchexplorer",
author="Samuel Pfrommer",
author_email="sam.pfrommer@gmail.com",
packages=find_namespace_packages(include=['torchexplorer.*']),
packages=find_packages(),
include_package_data=True,
install_requires=[
'click',
'colorama',
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import torch
from torch import nn

from torchexplorer.api import StructureWrapper, watch
from torchexplorer import StructureWrapper, watch
from torchexplorer.core import (
ModuleInvocationHistograms, ModuleInvocationStructure
)
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import torch
from torch import nn

from torchexplorer.api import watch
from torchexplorer import watch

import infra

Expand Down
2 changes: 1 addition & 1 deletion torchexplorer/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from torchexplorer.api import watch, LIGHTNING_EPOCHS
from torchexplorer.api import watch, LIGHTNING_EPOCHS, StructureWrapper
Empty file.

0 comments on commit 059fe61

Please sign in to comment.