Spaces:
Runtime error
Runtime error
Upload 3 files
Browse files- class_indices.json +1 -0
- config.toml +58 -0
- credentials.toml +3 -0
class_indices.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"0": "Apple___Apple_scab", "1": "Apple___Black_rot", "2": "Apple___Cedar_apple_rust", "3": "Apple___healthy", "4": "Blueberry___healthy", "5": "Cherry_(including_sour)___Powdery_mildew", "6": "Cherry_(including_sour)___healthy", "7": "Corn_(maize)___Cercospora_leaf_spot Gray_leaf_spot", "8": "Corn_(maize)___Common_rust_", "9": "Corn_(maize)___Northern_Leaf_Blight", "10": "Corn_(maize)___healthy", "11": "Grape___Black_rot", "12": "Grape___Esca_(Black_Measles)", "13": "Grape___Leaf_blight_(Isariopsis_Leaf_Spot)", "14": "Grape___healthy", "15": "Orange___Haunglongbing_(Citrus_greening)", "16": "Peach___Bacterial_spot", "17": "Peach___healthy", "18": "Pepper,_bell___Bacterial_spot", "19": "Pepper,_bell___healthy", "20": "Potato___Early_blight", "21": "Potato___Late_blight", "22": "Potato___healthy", "23": "Raspberry___healthy", "24": "Soybean___healthy", "25": "Squash___Powdery_mildew", "26": "Strawberry___Leaf_scorch", "27": "Strawberry___healthy", "28": "Tomato___Bacterial_spot", "29": "Tomato___Early_blight", "30": "Tomato___Late_blight", "31": "Tomato___Leaf_Mold", "32": "Tomato___Septoria_leaf_spot", "33": "Tomato___Spider_mites Two-spotted_spider_mite", "34": "Tomato___Target_Spot", "35": "Tomato___Tomato_Yellow_Leaf_Curl_Virus", "36": "Tomato___Tomato_mosaic_virus", "37": "Tomato___healthy"}
|
config.toml
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[global]
|
2 |
+
# If True, will show a warning when you run a Streamlit-enabled script via "python my_script.py".
|
3 |
+
# Default: true
|
4 |
+
showWarningOnDirectExecution = true
|
5 |
+
|
6 |
+
[logger]
|
7 |
+
# Level of logging: 'error', 'warning', 'info', or 'debug'.
|
8 |
+
# Default: 'info'
|
9 |
+
level = "debug"
|
10 |
+
|
11 |
+
|
12 |
+
|
13 |
+
[runner]
|
14 |
+
# Allows you to type a variable or string by itself in a single line of Python code to write it to the app.
|
15 |
+
# Default: true
|
16 |
+
magicEnabled = true
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
[server]
|
21 |
+
# List of folders that should not be watched for changes. Relative paths will be taken as relative to the current working directory.
|
22 |
+
# Example: ['/home/user1/env', 'relative/path/to/folder']
|
23 |
+
# Default: []
|
24 |
+
folderWatchBlacklist = ['']
|
25 |
+
|
26 |
+
# If false, will attempt to open a browser window on start.
|
27 |
+
# Default: false unless (1) we are on a Linux box where DISPLAY is unset, or (2) server.liveSave is set.
|
28 |
+
headless = true
|
29 |
+
|
30 |
+
# Immediately share the app in such a way that enables live monitoring, and post-run analysis.
|
31 |
+
# Default: false
|
32 |
+
liveSave = false
|
33 |
+
|
34 |
+
# Automatically rerun script when the file is modified on disk.
|
35 |
+
# Default: false
|
36 |
+
runOnSave = false
|
37 |
+
|
38 |
+
# The port where the server will listen for client and browser connections.
|
39 |
+
# Default: 8501
|
40 |
+
port = 80
|
41 |
+
|
42 |
+
# Enables support for Cross-Origin Request Sharing, for added security.
|
43 |
+
# Default: true
|
44 |
+
enableCORS = false
|
45 |
+
|
46 |
+
[browser]
|
47 |
+
# Internet address of the server server that the browser should connect to. Can be IP address or DNS name.
|
48 |
+
# Default: 'localhost'
|
49 |
+
serverAddress = "0.0.0.0"
|
50 |
+
|
51 |
+
# Whether to send usage statistics to Streamlit.
|
52 |
+
# Default: true
|
53 |
+
gatherUsageStats = true
|
54 |
+
|
55 |
+
# Port that the browser should use to connect to the server when in liveSave mode.
|
56 |
+
# Default: whatever value is set in server.port.
|
57 |
+
serverPort = 80
|
58 |
+
|
credentials.toml
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
[general]
|
2 |
+
email=""
|
3 |
+
|