-
Notifications
You must be signed in to change notification settings - Fork 985
TF 2.16 with Torch 2.4.0 #1415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
TF 2.16 with Torch 2.4.0 #1415
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
7eebdaa
tf216
calderjo cce6d26
attp 2
calderjo 8013036
attp 3
calderjo adc3604
attp 4
calderjo 983626f
attp 5
calderjo e2eed9d
attp 6
calderjo 7f156b3
attp 7
calderjo 5c989e4
attp 8
calderjo 05a9feb
attp 9
calderjo e6bc693
attp 10
calderjo bffd7c2
attp 11
calderjo 3f4fd87
attp 12
calderjo 80fba2e
adfdsafasdfsdaf
calderjo 2b124d7
again
calderjo 0888369
again2
calderjo f775a72
again22
calderjo 43c20e3
Merge branch 'main' into tf216
calderjo 45bb2bb
mlk
calderjo b0828ce
good
calderjo 176f75e
a good one
calderjo 456615b
a good one but better
calderjo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
BASE_IMAGE_REPO=gcr.io/deeplearning-platform-release | ||
BASE_IMAGE_TAG=m114 | ||
CPU_BASE_IMAGE_NAME=tf2-cpu.2-15.py310 | ||
GPU_BASE_IMAGE_NAME=tf2-gpu.2-15.py310 | ||
BASE_IMAGE_TAG=m122 | ||
CPU_BASE_IMAGE_NAME=tf2-cpu.2-16.py310 | ||
GPU_BASE_IMAGE_NAME=tf2-gpu.2-16.py310 | ||
LIGHTGBM_VERSION=4.2.0 | ||
TORCH_VERSION=2.1.2 | ||
TORCHAUDIO_VERSION=2.1.2 | ||
TORCHTEXT_VERSION=0.16.2 | ||
TORCHVISION_VERSION=0.16.2 | ||
TORCH_VERSION=2.4.0 | ||
TORCHAUDIO_VERSION=2.4.0 | ||
TORCHVISION_VERSION=0.19.0 | ||
JAX_VERSION=0.4.26 | ||
CUDA_MAJOR_VERSION=12 | ||
CUDA_MINOR_VERSION=1 | ||
CUDA_MINOR_VERSION=3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
import unittest | ||
|
||
import geopandas | ||
from shapely.geometry import Polygon | ||
|
||
class TestGeopandas(unittest.TestCase): | ||
def test_read(self): | ||
df = geopandas.read_file(geopandas.datasets.get_path('nybb')) | ||
self.assertTrue(df.size > 1) | ||
|
||
def test_spatial_join(self): | ||
cities = geopandas.read_file(geopandas.datasets.get_path('naturalearth_cities')) | ||
world = geopandas.read_file(geopandas.datasets.get_path('naturalearth_lowres')) | ||
countries = world[['geometry', 'name']] | ||
countries = countries.rename(columns={'name':'country'}) | ||
cities_with_country = geopandas.sjoin(cities, countries, how="inner", op='intersects') | ||
self.assertTrue(cities_with_country.size > 1) | ||
def test_GeoSeries(self): | ||
p1 = Polygon([(0, 0), (1, 0), (1, 1)]) | ||
p2 = Polygon([(0, 0), (1, 0), (1, 1), (0, 1)]) | ||
p3 = Polygon([(2, 0), (3, 0), (3, 1), (2, 1)]) | ||
g = geopandas.GeoSeries([p1, p2, p3]) |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.