Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
7f85fd4
first commit
LingJiRong Dec 9, 2024
c7710b1
Implement messaging system: added message model, adapter, and UI comp…
LingJiRong Dec 9, 2024
28860c0
first commit
Dec 10, 2024
f99b049
Implement messaging system: added message model, adapter, and UI comp…
Dec 10, 2024
d86a84e
Merge pull request #268 from Gopher-Industries/feature/messaging-system
LingJiRong Dec 10, 2024
6251ba6
Implement messaging system: added message model, adapter, and UI comp…
Dec 11, 2024
ba6db2e
Implement messaging system: added message model, adapter, and UI comp…
Dec 11, 2024
b46ca3c
Implement messaging system: added message model, adapter, and UI comp…
Dec 12, 2024
9ccf5ea
Completed SIT323-2025-Prac2P Node.js and Express task
Mar 13, 2025
236e6ca
Initial Dockerized Node.js app setup for 5.1P
Mar 31, 2025
80346af
Initial Dockerized Node.js app setup for 5.1P
Mar 31, 2025
81d01a8
Add app files and Docker setup for SIT323-5.1P
Mar 31, 2025
1abbb40
Add Dockerfile, index.js, and package.json for SIT323 Task 5.2D
Apr 1, 2025
faa4b1f
EDA for the emotion_dataset_v1
davchuks Sep 21, 2025
8e1d7e2
add synthetic dataset for emotion analysis
davchuks Sep 21, 2025
24924ca
synhetic dataset for emotion generated with llm
davchuks Sep 21, 2025
5a29e4c
Add synthetic emotion_dataset_v1.csv
davchuks Sep 21, 2025
61868c0
Remove old emotion dataset files
davchuks Sep 21, 2025
f842ae5
add-synthetic-emotion-dataset dataset for analysis
davchuks Sep 21, 2025
8fb6fc4
Addemotional polarity pipeline using Bio_ClinicalBERT
davchuks Sep 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file added .vs/Guardian/v17/.wsuo
Binary file not shown.
12 changes: 12 additions & 0 deletions .vs/Guardian/v17/DocumentLayout.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\HP\\OneDrive\\Pictures\\Documents\\GitHub\\Guardian\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": []
}
]
}
Binary file added .vs/Guardian/v17/workspaceFileList.bin
Binary file not shown.
6 changes: 6 additions & 0 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}
Binary file added .vs/slnx.sqlite
Binary file not shown.
1,347 changes: 1,347 additions & 0 deletions AI Guardian/emotion_analysis/Next-Gen_Emotional_Polarity.ipynb

Large diffs are not rendered by default.

919 changes: 919 additions & 0 deletions AI Guardian/emotion_analysis/emotion_EDA.ipynb

Large diffs are not rendered by default.

449 changes: 449 additions & 0 deletions AI Guardian/emotion_analysis/emotion_dataset_V1.csv

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Guardian
Submodule Guardian added at 8cbcd8
18 changes: 18 additions & 0 deletions OneDrive/Desktop/SIT323/sit323-2025-prac5d/DockerFile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Use Node.js LTS image
FROM node:18

# Set working directory
WORKDIR /usr/src/app

# Copy package.json and install dependencies
COPY package*.json ./
RUN npm install

# Copy source code
COPY . .

# Expose port 3000
EXPOSE 3000

# Start the app
CMD [ "npm", "start" ]
12 changes: 12 additions & 0 deletions OneDrive/Desktop/SIT323/sit323-2025-prac5d/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// index.js
const express = require('express');
const app = express();
const port = process.env.PORT || 3000;

app.get('/', (req, res) => {
res.send('SIT323 Task 5.2D is running!');
});

app.listen(port, () => {
console.log(`App listening on port ${port}`);
});
16 changes: 16 additions & 0 deletions OneDrive/Desktop/SIT323/sit323-2025-prac5d/node_modules/.bin/mime

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading