diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4bc31ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,56 @@ +CLion Tings +cmake-build-debug +.idea + +Prerequisites +*.d + +Object files +*.o +*.ko +*.obj +*.elf + +Linker output +*.ilk +*.map +*.exp + +Precompiled Headers +*.gch +*.pch + +Libraries +*.lib +*.a +*.la +*.lo + +Shared objects (inc. Windows DLLs) +*.dll +*.so +.so. +*.dylib + +Executables +*.exe +*.out +*.app +.i86 +*.x86_64 +*.hex + +Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +Kernel Module Compile Results +.mod +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..641ec1d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.25) +project(c_net C) + +set(CMAKE_C_STANDARD 11) + +add_executable(c_net + main.c) diff --git a/data/train-images.idx3-ubyte b/data/train-images.idx3-ubyte new file mode 100644 index 0000000..bbce276 Binary files /dev/null and b/data/train-images.idx3-ubyte differ diff --git a/data/train-labels.idx1-ubyte b/data/train-labels.idx1-ubyte new file mode 100644 index 0000000..d6b4c5d Binary files /dev/null and b/data/train-labels.idx1-ubyte differ diff --git a/main.c b/main.c new file mode 100644 index 0000000..379d14a --- /dev/null +++ b/main.c @@ -0,0 +1,4 @@ + +int main() { + return 0; +} \ No newline at end of file