https://github.com/rozeappletree/swift4tensorflow
Swift and Swift for TensorFlow
https://github.com/rozeappletree/swift4tensorflow
data-structures deep-learning jupyter-notebooks machine-learning swift-package-manager swift5 tensorflow
Last synced: 6 months ago
JSON representation
Swift and Swift for TensorFlow
- Host: GitHub
- URL: https://github.com/rozeappletree/swift4tensorflow
- Owner: rozeappletree
- Created: 2019-11-15T16:15:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-02T09:14:40.000Z (about 6 years ago)
- Last Synced: 2025-07-19T16:34:30.596Z (8 months ago)
- Topics: data-structures, deep-learning, jupyter-notebooks, machine-learning, swift-package-manager, swift5, tensorflow
- Language: Jupyter Notebook
- Homepage:
- Size: 319 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# swift4tensorflow
### Try your code in google collaboratory
[Open blank Swift Colaboratory](https://colab.research.google.com/github/tensorflow/swift/blob/master/notebooks/blank_swift.ipynb)
## Swift Basics
### 01-01 Part 1
- Shell commands
- Variables and constants
- Types of data
- Operators
- String interpolation
- Arrays, Dictionaries
- Conditional statements
- Loops
- Switch case
### 01-02 Part 2
- Functions
- Optionals and optional chaining
- Enumerations
- Structs
- Classes
- Properties and Static properties and methods
- Access control
- Polymorphism
- Type casting
### 01-03 Part 3
- Closures
- Protocols
- Extensions
- Protoccol extensions
---------------------------------------------------
## Build a Package/Library using SPM
**Outline**
1. Create library package - `hellolib`
2. Create executable package - `helloexec`
3. Import and access `hellolib` using `helloexec`
4. Import in [swift-jupyter notebooks](https://colab.research.google.com/github/tensorflow/swift/blob/master/notebooks/blank_swift.ipynb)
[Know more here](/03-creating-packages/Basic)
---------------------------------------------------
## Data Structures
- Array
- 2-Dimensional
- Stack
- Queue
- Simple
- Optimal
- Deque
- Simple
- Optimal