Skip to content
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

remove unpaired lab/solution notebooks #410

Merged
merged 2 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,859 changes: 0 additions & 2,859 deletions notebooks/introduction_to_tensorflow/labs/adv_logistic_reg_TF2.0.ipynb

This file was deleted.

595 changes: 0 additions & 595 deletions notebooks/introduction_to_tensorflow/labs/adv_tfdv_facets.ipynb

This file was deleted.

1,104 changes: 0 additions & 1,104 deletions notebooks/introduction_to_tensorflow/labs/basic_intro_logistic_regression.ipynb

This file was deleted.

1,083 changes: 0 additions & 1,083 deletions notebooks/introduction_to_tensorflow/labs/feat.cols_tf.data.ipynb

This file was deleted.

1,460 changes: 0 additions & 1,460 deletions notebooks/introduction_to_tensorflow/labs/int_logistic_regression.ipynb

This file was deleted.

This file was deleted.

1,327 changes: 0 additions & 1,327 deletions notebooks/introduction_to_tensorflow/labs/load_diff_filedata.ipynb

This file was deleted.

744 changes: 0 additions & 744 deletions notebooks/introduction_to_tensorflow/labs/load_images_tf.data.ipynb

This file was deleted.

1,670 changes: 0 additions & 1,670 deletions notebooks/introduction_to_tensorflow/labs/tfrecord-tf.example.ipynb

This file was deleted.

766 changes: 0 additions & 766 deletions notebooks/introduction_to_tensorflow/labs/what_if_mortgage.ipynb

This file was deleted.

760 changes: 0 additions & 760 deletions notebooks/introduction_to_tensorflow/labs/write_low_level_code.ipynb

This file was deleted.

This file was deleted.

608 changes: 0 additions & 608 deletions notebooks/introduction_to_tensorflow/solutions/2c_loading_images.ipynb

This file was deleted.

1,259 changes: 0 additions & 1,259 deletions notebooks/introduction_to_tensorflow/solutions/2d_loading_tfrecords.ipynb

This file was deleted.

2 changes: 1 addition & 1 deletion notebooks/text_models/labs/load_text.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@
"source": [
"tokenized_ds = configure_dataset(tokenized_ds)\n",
"\n",
"vocab_dict = collections.defaultdict(lambda: 0)\n",
"vocab_dict = collections.defaultdict(int)\n",
"for toks in tokenized_ds.as_numpy_iterator():\n",
" for tok in toks:\n",
" vocab_dict[tok] += 1\n",
Expand Down
2 changes: 1 addition & 1 deletion notebooks/text_models/solutions/load_text.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@
"source": [
"tokenized_ds = configure_dataset(tokenized_ds)\n",
"\n",
"vocab_dict = collections.defaultdict(lambda: 0)\n",
"vocab_dict = collections.defaultdict(int)\n",
"for toks in tokenized_ds.as_numpy_iterator():\n",
" for tok in toks:\n",
" vocab_dict[tok] += 1\n",
Expand Down
Loading