meriemm6 commited on
Commit
68ffa12
Β·
verified Β·
1 Parent(s): 936d09f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +66 -33
app.py CHANGED
@@ -18,44 +18,77 @@ def classify_commit(message):
18
  # Return the predicted labels as a comma-separated string
19
  return ", ".join(predicted_labels[0]) if predicted_labels[0] else "No labels"
20
 
21
- # Custom CSS for Light Blue Background
22
  custom_css = """
23
  body {
24
- background-color: #d0f0fd; /* Light Blue */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  }
26
  """
27
 
28
- # Create a Gradio interface with Dockerfile-specific examples and visuals
29
- demo = gr.Interface(
30
- fn=classify_commit,
31
- inputs=gr.Textbox(
32
- label="Enter Commit Message",
33
- placeholder="Type your Dockerfile-related commit message here...",
34
- lines=3,
35
- max_lines=5,
36
- ),
37
- outputs=gr.Textbox(label="Predicted Labels"),
38
- title="🐳 Dockerfile Commit Message Classifier",
39
- description="πŸ” Classify commit messages related to Dockerfiles into categories like 'bug fix', 'feature addition', and more. Enter a commit message to get the predictions.",
40
- examples=[
41
- ["Fixed an issue with the base image version in Dockerfile"],
42
- ["Added a new multistage build to optimize Docker image size"],
43
- ["Updated the Python version in Dockerfile to 3.10"],
44
- ["Sort Dockerfile"],
45
- ["Added COPY instruction for configuration files"],
46
- ],
47
- article="""
48
- **How to Use**:
49
- - Enter a commit message related to Dockerfiles.
50
- - The tool predicts categories such as 'bug fix', 'code refactoring', 'feature addition', or 'maintenance/other'.
51
-
52
- **Examples**:
53
- - Fixing base image versions.
54
- - Adding new Docker build stages.
55
- - Updating dependencies in Dockerfiles.
56
- """,
57
- css=custom_css,
58
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
 
60
  # Launch the Gradio app
61
  demo.launch(share=True, server_port=7860)
 
18
  # Return the predicted labels as a comma-separated string
19
  return ", ".join(predicted_labels[0]) if predicted_labels[0] else "No labels"
20
 
21
+ # Custom CSS for Improved Aesthetics
22
  custom_css = """
23
  body {
24
+ background-color: #e6f7ff; /* Light Blue Background */
25
+ font-family: 'Arial', sans-serif;
26
+ }
27
+ .gradio-container {
28
+ padding: 20px;
29
+ border-radius: 10px;
30
+ box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
31
+ max-width: 800px;
32
+ margin: auto;
33
+ }
34
+ h1, h2 {
35
+ color: #004d80; /* Darker Blue for headings */
36
+ text-align: center;
37
+ }
38
+ footer {
39
+ text-align: center;
40
+ color: #555;
41
+ font-size: 12px;
42
  }
43
  """
44
 
45
+ # Create the layout with Gradio Blocks
46
+ with gr.Blocks(css=custom_css) as demo:
47
+ gr.Markdown("<h1>🐳 Dockerfile Commit Message Classifier</h1>")
48
+ gr.Markdown(
49
+ """
50
+ <p>πŸ” Use this tool to classify Dockerfile-related commit messages into categories like <b>'bug fix'</b>,
51
+ <b>'feature addition'</b>, and more. Enter a commit message below to see the prediction.</p>
52
+ """
53
+ )
54
+ with gr.Row():
55
+ with gr.Column(scale=1):
56
+ commit_message_input = gr.Textbox(
57
+ label="Enter Commit Message",
58
+ placeholder="Type your Dockerfile-related commit message here...",
59
+ lines=3,
60
+ max_lines=5,
61
+ )
62
+ with gr.Column(scale=1):
63
+ predicted_output = gr.Textbox(
64
+ label="Predicted Labels",
65
+ interactive=False,
66
+ lines=2,
67
+ )
68
+ classify_button = gr.Button("Classify", elem_id="classify-btn")
69
+ classify_button.click(
70
+ classify_commit, inputs=commit_message_input, outputs=predicted_output
71
+ )
72
+
73
+ gr.Markdown("<h2>πŸ“ Examples</h2>")
74
+ gr.Examples(
75
+ examples=[
76
+ ["Fixed an issue with the base image version in Dockerfile"],
77
+ ["Added a new multistage build to optimize Docker image size"],
78
+ ["Updated the Python version in Dockerfile to 3.10"],
79
+ ["Sort Dockerfile"],
80
+ ["Added COPY instruction for configuration files"],
81
+ ],
82
+ inputs=commit_message_input,
83
+ )
84
+
85
+ gr.Markdown(
86
+ """
87
+ <footer>
88
+ <p>βš™οΈ Built with ❀️ using <b>Gradio</b>. Try it now!</p>
89
+ </footer>
90
+ """
91
+ )
92
 
93
  # Launch the Gradio app
94
  demo.launch(share=True, server_port=7860)