flashstudio 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {flashstudio-0.1.1 → flashstudio-0.1.2}/PKG-INFO +2 -1
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio.egg-info/PKG-INFO +2 -1
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio.egg-info/requires.txt +1 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/pyproject.toml +2 -1
- {flashstudio-0.1.1 → flashstudio-0.1.2}/README.md +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/__init__.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/app.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/cli.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/components/__init__.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/components/sidebar.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/components/styles.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/components/wizard.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/launcher.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/pages/__init__.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/pages/dashboard.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/pages/data.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/pages/export.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/pages/inference.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/pages/model.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/pages/training.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/utils/__init__.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio/utils/device.py +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio.egg-info/SOURCES.txt +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio.egg-info/dependency_links.txt +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio.egg-info/entry_points.txt +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/flashstudio.egg-info/top_level.txt +0 -0
- {flashstudio-0.1.1 → flashstudio-0.1.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flashstudio
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Interactive Training & Inference UI for FlashDet — runs on Google Colab
|
|
5
5
|
Author: Gaurav14cs17
|
|
6
6
|
License: Apache-2.0
|
|
@@ -19,6 +19,7 @@ Requires-Dist: plotly>=5.0
|
|
|
19
19
|
Requires-Dist: pandas>=1.5
|
|
20
20
|
Requires-Dist: pillow>=9.0
|
|
21
21
|
Requires-Dist: numpy>=1.21
|
|
22
|
+
Requires-Dist: pyngrok>=6.0
|
|
22
23
|
Provides-Extra: full
|
|
23
24
|
Requires-Dist: pyngrok>=6.0; extra == "full"
|
|
24
25
|
Requires-Dist: torch>=2.0; extra == "full"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flashstudio
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Interactive Training & Inference UI for FlashDet — runs on Google Colab
|
|
5
5
|
Author: Gaurav14cs17
|
|
6
6
|
License: Apache-2.0
|
|
@@ -19,6 +19,7 @@ Requires-Dist: plotly>=5.0
|
|
|
19
19
|
Requires-Dist: pandas>=1.5
|
|
20
20
|
Requires-Dist: pillow>=9.0
|
|
21
21
|
Requires-Dist: numpy>=1.21
|
|
22
|
+
Requires-Dist: pyngrok>=6.0
|
|
22
23
|
Provides-Extra: full
|
|
23
24
|
Requires-Dist: pyngrok>=6.0; extra == "full"
|
|
24
25
|
Requires-Dist: torch>=2.0; extra == "full"
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "flashstudio"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "Interactive Training & Inference UI for FlashDet — runs on Google Colab"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "Apache-2.0"}
|
|
@@ -25,6 +25,7 @@ dependencies = [
|
|
|
25
25
|
"pandas>=1.5",
|
|
26
26
|
"pillow>=9.0",
|
|
27
27
|
"numpy>=1.21",
|
|
28
|
+
"pyngrok>=6.0",
|
|
28
29
|
]
|
|
29
30
|
|
|
30
31
|
[project.optional-dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|