Skip to content

Commit 62a5910

Browse files
authored
Merge pull request #87 from chetannihith/copilot/fix-851c02d6-c357-4b69-ae02-53d892643cbd
Remove low-quality code to meet Hacktoberfest quality standards
2 parents 2aa15f7 + 80fbb79 commit 62a5910

26 files changed

Lines changed: 3935 additions & 6034 deletions

File tree

.DS_Store

-8 KB
Binary file not shown.

.gitignore

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.nox/
42+
.coverage
43+
.coverage.*
44+
.cache
45+
nosetests.xml
46+
coverage.xml
47+
*.cover
48+
*.py,cover
49+
.hypothesis/
50+
.pytest_cache/
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
local_settings.py
59+
db.sqlite3
60+
db.sqlite3-journal
61+
62+
# Flask stuff:
63+
instance/
64+
.webassets-cache
65+
66+
# Scrapy stuff:
67+
.scrapy
68+
69+
# Sphinx documentation
70+
docs/_build/
71+
72+
# PyBuilder
73+
target/
74+
75+
# Jupyter Notebook
76+
.ipynb_checkpoints
77+
78+
# IPython
79+
profile_default/
80+
ipython_config.py
81+
82+
# pyenv
83+
.python-version
84+
85+
# pipenv
86+
Pipfile.lock
87+
88+
# PEP 582
89+
__pypackages__/
90+
91+
# Celery stuff
92+
celerybeat-schedule
93+
celerybeat.pid
94+
95+
# SageMath parsed files
96+
*.sage.py
97+
98+
# Environments
99+
.env
100+
.venv
101+
env/
102+
venv/
103+
ENV/
104+
env.bak/
105+
venv.bak/
106+
107+
# Spyder project settings
108+
.spyderproject
109+
.spyproject
110+
111+
# Rope project settings
112+
.ropeproject
113+
114+
# mkdocs documentation
115+
/site
116+
117+
# mypy
118+
.mypy_cache/
119+
.dmypy.json
120+
dmypy.json
121+
122+
# Pyre type checker
123+
.pyre/
124+
125+
# macOS
126+
.DS_Store
127+
.AppleDouble
128+
.LSOverride
129+
130+
# Windows
131+
Thumbs.db
132+
ehthumbs.db
133+
Desktop.ini
134+
135+
# VS Code
136+
.vscode/
137+
*.code-workspace
138+
139+
# PyCharm
140+
.idea/
141+
*.iml
142+
143+
# Temporary files
144+
*.tmp
145+
*.bak
146+
*.swp
147+
*~

AgenticAI_ArticleWriting_System/AgenticAI_System_Articlewriter.ipynb

Lines changed: 803 additions & 2635 deletions
Large diffs are not rendered by default.

Coin Toss Simulator/cointoss.py

Lines changed: 0 additions & 14 deletions
This file was deleted.

MLP_Using_FFNN_vs_CNN/MLP_Using_FFNN_vs_CNN.ipynb

Lines changed: 1715 additions & 2435 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)