mike dupont
commited on
Commit
•
c6105bd
1
Parent(s):
29d0528
compose
Browse files- README.md +19 -2
- docker-compose.yml +7 -0
README.md
CHANGED
@@ -10,9 +10,26 @@ models:
|
|
10 |
short_description: Introspector react app
|
11 |
---
|
12 |
|
13 |
-
#
|
14 |
|
15 |
-
This project
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
## Available Scripts
|
18 |
|
|
|
10 |
short_description: Introspector react app
|
11 |
---
|
12 |
|
13 |
+
# Introspector browser
|
14 |
|
15 |
+
This project displays and allows a user to browse and interact with a set of data that is available
|
16 |
+
via recursive git submodules, so all data that is allowed is built into the base code.
|
17 |
+
The code that is executed can decide if it allows for more data to be loaded from outside.
|
18 |
+
So basically we want to point this at some other repos and then call it via urls to load more code.
|
19 |
+
|
20 |
+
### Functions
|
21 |
+
|
22 |
+
#### Load Datasets
|
23 |
+
|
24 |
+
Browse performance result datasets from hugging face and other sources.
|
25 |
+
|
26 |
+
#### Run notebooks
|
27 |
+
|
28 |
+
Run reports via notebooks
|
29 |
+
|
30 |
+
#### Run apps
|
31 |
+
|
32 |
+
Load different apps and other servlets like streamlit and gradio via safe containers
|
33 |
|
34 |
## Available Scripts
|
35 |
|
docker-compose.yml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
services:
|
2 |
+
backend:
|
3 |
+
ports:
|
4 |
+
- "7860:7860"
|
5 |
+
build: .
|
6 |
+
image: introspector-react-browser:latest
|
7 |
+
# frontend:
|