-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVBAF.psd1
More file actions
52 lines (28 loc) · 1.65 KB
/
VBAF.psd1
File metadata and controls
52 lines (28 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@{
RootModule = 'VBAF.psm1'
ModuleVersion = '3.1.0'
GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'
Author = 'Henning'
CompanyName = 'VBAF Project'
Copyright = '(c) 2025-2026 Henning. All rights reserved.'
PowerShellVersion = '5.1'
CompatiblePSEditions = @('Desktop')
DotNetFrameworkVersion = '4.5'
RequiredAssemblies = @(
'System.Windows.Forms',
'System.Drawing'
)
Description = 'VBAF (Visual Business Automation Framework) - A complete machine learning framework built entirely in PowerShell 5.1. No Python. No dependencies. 8 phases: Neural Networks, Q-Learning, DQN, PPO, A3C, Supervised Learning, Data Pipeline, Deep Learning (CNN/RNN/LSTM), MLOps, AutoML, Explainability. GitHub: https://github.com/JupyterPS/VBAF'
FunctionsToExport = @('*')
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = @('AI','MachineLearning','ReinforcementLearning','NeuralNetwork','QLearning','DQN','PPO','A3C','MultiAgent','Automation','Visualization','PowerShell','Education','MLOps','DeepLearning','CNN','RNN','LSTM','AutoML','DataPipeline')
LicenseUri = 'https://github.com/JupyterPS/VBAF/blob/master/LICENSE'
ProjectUri = 'https://github.com/JupyterPS/VBAF'
ReleaseNotes = 'v3.0.0 (March 2026) - Full 8-phase ML framework complete. Phases 1-2: Neural Networks, Q-Learning, Dashboards. Phase 3: DQN, PPO, A3C. Phase 4: Supervised Learning. Phase 5: Data Pipeline. Phase 6: CNN, RNN, LSTM, Autoencoders, Transfer Learning. Phase 7: MLOps, Model Server, AutoML, Explainability. Phase 8: Tutorials, Examples, Templates.'
}
}
}